├── .eslintignore ├── .gitignore ├── .prettier ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── icon-female-1024.png ├── icon-female-128.png ├── icon-female-16.png ├── icon-female-512.png ├── icon-female.png ├── icon-male.png └── icon.png ├── background.js ├── contentscript.js ├── main.css ├── manifest.json ├── package-lock.json ├── package.json ├── popup.html ├── popup.js └── store_assets ├── edge-screenshot-cachestorage.png ├── edge-screenshot-manifest.png ├── edge-screenshot-serviceworker.png ├── firefox-screenshot-cachestorage.png ├── firefox-screenshot-manifest.png ├── firefox-screenshot-sericeworker.png ├── screenshot-cachestorage.png ├── screenshot-manifest.png └── screenshot-serviceworker.png /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | third_party/ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | third_party/ 3 | .DS_Store 4 | *.log 5 | -------------------------------------------------------------------------------- /.prettier: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "bracketSpacing": true, 4 | "htmlWhitespaceSensitivity": "css", 5 | "insertPragma": false, 6 | "jsxBracketSameLine": false, 7 | "jsxSingleQuote": false, 8 | "printWidth": 80, 9 | "proseWrap": "preserve", 10 | "quoteProps": "as-needed", 11 | "requirePragma": false, 12 | "semi": true, 13 | "singleQuote": true, 14 | "tabWidth": 2, 15 | "trailingComma": "es5", 16 | "useTabs": false, 17 | "vueIndentScriptAndStyle": false 18 | } 19 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | third_party/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution, 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 👷‍♀️ 👷 Service Worker Detector 2 | 3 | ## 💻 💬 Description 4 | 5 | This extension detects if a website registers a 6 | [Service Worker](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorker) 7 | by reading the `navigator.serviceWorker.controller` 8 | [property](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/controller). 9 | This read-only property of the `ServiceWorkerContainer` interface only returns a `ServiceWorker` 10 | object if its state is `activated`. It returns `null` if the request is a force refresh 11 | (shift + refresh) or if there is no active worker. 12 | 13 | ⚠️ If the extension does not seem to work, perform a soft reload, so the Service Worker 14 | has a chance to become active. 15 | 16 | This is not an officially supported Google product. 17 | 18 | ## 🖥 🔫 Screenshots 19 | 20 | ![Screenshot Service Worker](https://github.com/google/service-worker-detector/blob/master/store_assets/screenshot-serviceworker.png) 21 | 22 | ![Screenshot Manifest](https://github.com/google/service-worker-detector/blob/master/store_assets/screenshot-manifest.png) 23 | 24 | ![Screenshot Cache Storage](https://github.com/google/service-worker-detector/blob/master/store_assets/screenshot-cachestorage.png) 25 | 26 | ## 🔧 🛍 Installation 27 | 28 | Install the Service Worker Detector extension for your favorite browser: 29 | 30 | - [Google Chrome](https://chrome.google.com/webstore/detail/service-worker-detector/ofdigdofloanabjcaijfidkogmejlmjc) 31 | - [Opera](https://addons.opera.com/extensions/details/service-worker-detector/) 32 | - [Mozilla Firefox](https://addons.mozilla.org/firefox/addon/service-worker-detector/) 33 | - [Microsoft Edge (Chromium-based)](https://microsoftedge.microsoft.com/addons/detail/jcdnchdgholdalglebcklkbhlnhnlhon) 34 | - [Apple Safari](https://apps.apple.com/app/service-worker-detector/id1530808337) 35 | 36 | ## ⚤ 👍 Diversity in Tech 37 | 38 | The extension represents Service Workers with 39 | [construction worker emoji](http://emojipedia.org/search/?q=construction+worker). 40 | The extension icon randomly features the female or the male construction worker. 41 | 42 | ## 📄 💼 License 43 | 44 | Copyright 2017 Google Inc. All rights reserved. 45 | 46 | Licensed under the Apache License, Version 2.0 (the "License"); 47 | you may not use this file except in compliance with the License. 48 | You may obtain a copy of the License at 49 | 50 | [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) 51 | 52 | Unless required by applicable law or agreed to in writing, software 53 | distributed under the License is distributed on an "AS IS" BASIS, 54 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 55 | See the License for the specific language governing permissions and 56 | limitations under the License. 57 | -------------------------------------------------------------------------------- /assets/icon-female-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-female-1024.png -------------------------------------------------------------------------------- /assets/icon-female-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-female-128.png -------------------------------------------------------------------------------- /assets/icon-female-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-female-16.png -------------------------------------------------------------------------------- /assets/icon-female-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-female-512.png -------------------------------------------------------------------------------- /assets/icon-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-female.png -------------------------------------------------------------------------------- /assets/icon-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon-male.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/assets/icon.png -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2017 Google Inc. All rights reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | window.browser = window.browser || window.chrome; 18 | 19 | browser.runtime.onMessage.addListener((request, sender) => { 20 | if (request) { 21 | browser.pageAction.setIcon({ 22 | tabId: sender.tab.id, 23 | path: `assets/icon-${["male", "female"][Math.round(Math.random())]}.png`, 24 | }); 25 | browser.pageAction.setTitle({ 26 | tabId: sender.tab.id, 27 | title: `✅👷‍♀️ Active Service Worker found at ${request.scriptUrl}.`, 28 | }); 29 | browser.pageAction.show(sender.tab.id); 30 | } else { 31 | browser.pageAction.setIcon({ 32 | tabId: sender.tab.id, 33 | path: `assets/icon.png`, 34 | }); 35 | browser.pageAction.setTitle({ 36 | tabId: sender.tab.id, 37 | title: "❌👷‍♀️ No active Service Worker found.", 38 | }); 39 | browser.pageAction.hide(sender.tab.id); 40 | } 41 | }); 42 | -------------------------------------------------------------------------------- /contentscript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2017 Google Inc. All rights reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | window.browser = window.browser || window.chrome; 18 | 19 | (() => { 20 | if (!("serviceWorker" in navigator)) { 21 | return; 22 | } 23 | 24 | // Can't call ```navigator.serviceWorker.ready``` from a contentscript, 25 | // injecting it directly instead 26 | const getServiceWorkerRegistration = () => { 27 | return new Promise((resolve) => { 28 | const script = document.createElement("script"); 29 | const id = "bYLvrpRKtXHyEQJLCLNNDwg1v7StbX7HHfkgK+jb8Wo="; 30 | script.id = id; 31 | let observer = new MutationObserver((mutations) => { 32 | mutations.forEach((mutation) => { 33 | if ( 34 | mutation.type === "attributes" && 35 | mutation.attributeName === "data-scope" 36 | ) { 37 | const scope = script.dataset.scope; 38 | script.remove(); 39 | observer.disconnect(); 40 | observer = null; 41 | return resolve(scope); 42 | } 43 | }); 44 | }); 45 | observer.observe(script, { attributes: true }); 46 | script.textContent = ` 47 | navigator.serviceWorker.ready 48 | .then(serviceWorkerRegistration => { 49 | document.getElementById('${id}').dataset.scope = 50 | serviceWorkerRegistration.scope; 51 | });`; 52 | document.head.appendChild(script); 53 | }); 54 | }; 55 | 56 | const serviceWorkerController = navigator.serviceWorker.controller; 57 | if (!serviceWorkerController || !serviceWorkerController.scriptURL) { 58 | return; 59 | } 60 | const result = { 61 | state: serviceWorkerController.state, 62 | scriptUrl: serviceWorkerController.scriptURL, 63 | source: "", 64 | manifest: "", 65 | manifestUrl: "", 66 | cacheContents: {}, 67 | }; 68 | getServiceWorkerRegistration().then((scope) => { 69 | result.scope = scope; 70 | const fetchOptions = { 71 | credentials: "include", 72 | headers: { 73 | // Required according to the spec: 74 | // https://w3c.github.io/ServiceWorker/#service-worker-script-request 75 | "service-worker": "script", 76 | }, 77 | }; 78 | fetch(result.scriptUrl, fetchOptions) 79 | .then((response) => { 80 | if (!response.ok) { 81 | throw Error("Network response was not OK."); 82 | } 83 | return response.text(); 84 | }) 85 | .then((script) => { 86 | result.source = script; 87 | return document.querySelector('link[rel="manifest"]'); 88 | }) 89 | .then((link) => { 90 | if (link && link.href) { 91 | return fetch(link.href, { credentials: "include" }); 92 | } 93 | return false; 94 | }) 95 | .then((response) => { 96 | if (!response) { 97 | return false; 98 | } 99 | if (!response.ok) { 100 | throw Error("Network response was not OK."); 101 | } 102 | result.manifestUrl = response.url; 103 | return response.json(); 104 | }) 105 | .then((manifest) => { 106 | if (manifest) { 107 | result.manifest = manifest; 108 | } 109 | if ("caches" in window) { 110 | return caches.keys(); 111 | } 112 | return []; 113 | }) 114 | .then((cacheNames) => { 115 | const cachePromises = []; 116 | const cacheContents = {}; 117 | cacheNames.forEach((cacheName) => { 118 | cacheContents[cacheName] = []; 119 | cachePromises.push( 120 | caches.open(cacheName).then((cache) => cache.keys()), 121 | ); 122 | }); 123 | return Promise.all(cachePromises).then((cacheResults) => { 124 | const requestProperties = ["method", "url"]; 125 | const responsePromises = []; 126 | cacheResults.forEach((cacheResult, i) => { 127 | cacheResult.forEach((request) => { 128 | responsePromises.push( 129 | caches.match(request).then((cacheResponse) => { 130 | const serializedRequest = {}; 131 | requestProperties.forEach((requestProperty) => { 132 | serializedRequest[requestProperty] = 133 | request[requestProperty]; 134 | }); 135 | const contentType = cacheResponse.headers.get("content-type"); 136 | serializedRequest.type = cacheResponse.type; 137 | serializedRequest.mime = contentType 138 | ? contentType.split(";")[0] 139 | : "unknown"; 140 | return cacheContents[cacheNames[i]].push(serializedRequest); 141 | }), 142 | ); 143 | }); 144 | }); 145 | return Promise.all(responsePromises).then(() => cacheContents); 146 | }); 147 | }) 148 | .then((cacheContents) => { 149 | result.cacheContents = cacheContents; 150 | return browser.runtime.sendMessage(null, result); 151 | }) 152 | .catch((fetchError) => { 153 | console.log(fetchError); 154 | }); 155 | 156 | browser.runtime.onMessage.addListener((message, sender, sendResponse) => { 157 | if (message.type === "getServiceWorker") { 158 | sendResponse(result); 159 | } 160 | }); 161 | }); 162 | })(); 163 | -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | body { 6 | font-size: 16px; 7 | font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 8 | Helvetica, Arial, "Lucida Grande", sans-serif; 9 | margin: 0; 10 | padding: 0; 11 | width: 700px; 12 | } 13 | 14 | .table-wrapper { 15 | width: 100%; 16 | overflow-x: auto; 17 | } 18 | 19 | table { 20 | border: solid 2px #eee; 21 | margin-bottom: 0.25rem; 22 | width: 100%; 23 | } 24 | 25 | th { 26 | background-color: #eee; 27 | } 28 | 29 | td, 30 | th { 31 | padding: 0.25rem; 32 | overflow: hidden; 33 | position: relative; 34 | text-overflow: ellipsis; 35 | text-align: left; 36 | vertical-align: top; 37 | white-space: nowrap; 38 | } 39 | 40 | ul { 41 | list-style: none; 42 | padding-left: 0; 43 | } 44 | 45 | li { 46 | font-family: monospace; 47 | white-space: nowrap; 48 | } 49 | 50 | pre { 51 | font-size: 0.75rem; 52 | } 53 | 54 | code { 55 | white-space: pre-wrap !important; 56 | } 57 | 58 | details { 59 | cursor: default; 60 | margin-bottom: 1rem; 61 | } 62 | 63 | summary { 64 | background-color: #87cefa; 65 | outline: none; 66 | padding: 0.25rem; 67 | } 68 | 69 | .highlight { 70 | background-color: yellow !important; 71 | } 72 | 73 | .imported-script { 74 | background-color: #f5f5f5; 75 | display: inline-block; 76 | margin: 0; 77 | outline: none; 78 | padding: 0; 79 | vertical-align: top; 80 | } 81 | 82 | .cache-storage { 83 | background-color: transparent; 84 | } 85 | 86 | .preview { 87 | width: 1.5rem; 88 | max-width: 1.5rem; 89 | height: auto; 90 | } 91 | 92 | .font-size { 93 | font-size: 0.75rem; 94 | position: absolute; 95 | right: 0.5rem; 96 | } 97 | 98 | .smaller { 99 | font-size: 0.75rem; 100 | } 101 | 102 | .bigger { 103 | font-size: 1rem; 104 | margin-right: 0.25rem; 105 | } 106 | 107 | #font-size { 108 | width: 4rem; 109 | } 110 | 111 | #container { 112 | height: 600px; 113 | padding: 0.25rem; 114 | overflow-y: scroll; 115 | overflow-x: hidden; 116 | } 117 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Service Worker Detector", 4 | "short_name": "SW Detector", 5 | "description": "This extension detects if a website registers a Service Worker.", 6 | "author": "Thomas Steiner (tomac@google.com, @tomayac)", 7 | "version": "2.4.1", 8 | "icons": { 9 | "16": "assets/icon-female-16.png", 10 | "48": "assets/icon-female.png", 11 | "128": "assets/icon-female-128.png", 12 | "160": "assets/icon-female.png", 13 | "512": "assets/icon-female-512.png", 14 | "1024": "assets/icon-female-1024.png" 15 | }, 16 | "page_action": { 17 | "default_icon": { 18 | "19": "assets/icon.png", 19 | "38": "assets/icon.png", 20 | "40": "assets/icon.png", 21 | "160": "assets/icon.png" 22 | }, 23 | "default_popup": "popup.html", 24 | "default_title": "❌👷‍ No active Service Worker found." 25 | }, 26 | "permissions": ["activeTab"], 27 | "content_scripts": [ 28 | { 29 | "matches": [""], 30 | "js": ["contentscript.js"], 31 | "run_at": "document_idle", 32 | "all_frames": false 33 | } 34 | ], 35 | "background": { 36 | "scripts": ["background.js"], 37 | "persistent": false 38 | }, 39 | "minimum_chrome_version": "40" 40 | } 41 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "service-worker-detector", 3 | "version": "2.4.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "service-worker-detector", 9 | "version": "2.4.1", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "stylelint": "^15.10.3" 13 | }, 14 | "devDependencies": { 15 | "eslint": "^8.50.0", 16 | "eslint-config-google": "^0.14.0", 17 | "eslint-config-prettier": "^9.0.0", 18 | "esprima": "^4.0.1", 19 | "js-beautify": "^1.14.9", 20 | "prettier": "^3.0.3", 21 | "prismjs": "^1.29.0", 22 | "shx": "^0.3.4", 23 | "stylelint-csstree-validator": "^3.0.0" 24 | } 25 | }, 26 | "node_modules/@aashutoshrathi/word-wrap": { 27 | "version": "1.2.6", 28 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 29 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 30 | "dev": true, 31 | "engines": { 32 | "node": ">=0.10.0" 33 | } 34 | }, 35 | "node_modules/@babel/code-frame": { 36 | "version": "7.22.13", 37 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", 38 | "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", 39 | "dependencies": { 40 | "@babel/highlight": "^7.22.13", 41 | "chalk": "^2.4.2" 42 | }, 43 | "engines": { 44 | "node": ">=6.9.0" 45 | } 46 | }, 47 | "node_modules/@babel/code-frame/node_modules/ansi-styles": { 48 | "version": "3.2.1", 49 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 50 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 51 | "dependencies": { 52 | "color-convert": "^1.9.0" 53 | }, 54 | "engines": { 55 | "node": ">=4" 56 | } 57 | }, 58 | "node_modules/@babel/code-frame/node_modules/chalk": { 59 | "version": "2.4.2", 60 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 61 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 62 | "dependencies": { 63 | "ansi-styles": "^3.2.1", 64 | "escape-string-regexp": "^1.0.5", 65 | "supports-color": "^5.3.0" 66 | }, 67 | "engines": { 68 | "node": ">=4" 69 | } 70 | }, 71 | "node_modules/@babel/code-frame/node_modules/color-convert": { 72 | "version": "1.9.3", 73 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 74 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 75 | "dependencies": { 76 | "color-name": "1.1.3" 77 | } 78 | }, 79 | "node_modules/@babel/code-frame/node_modules/color-name": { 80 | "version": "1.1.3", 81 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 82 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" 83 | }, 84 | "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { 85 | "version": "1.0.5", 86 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 87 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 88 | "engines": { 89 | "node": ">=0.8.0" 90 | } 91 | }, 92 | "node_modules/@babel/code-frame/node_modules/has-flag": { 93 | "version": "3.0.0", 94 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 95 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 96 | "engines": { 97 | "node": ">=4" 98 | } 99 | }, 100 | "node_modules/@babel/code-frame/node_modules/supports-color": { 101 | "version": "5.5.0", 102 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 103 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 104 | "dependencies": { 105 | "has-flag": "^3.0.0" 106 | }, 107 | "engines": { 108 | "node": ">=4" 109 | } 110 | }, 111 | "node_modules/@babel/helper-validator-identifier": { 112 | "version": "7.22.20", 113 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", 114 | "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", 115 | "engines": { 116 | "node": ">=6.9.0" 117 | } 118 | }, 119 | "node_modules/@babel/highlight": { 120 | "version": "7.22.20", 121 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", 122 | "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", 123 | "dependencies": { 124 | "@babel/helper-validator-identifier": "^7.22.20", 125 | "chalk": "^2.4.2", 126 | "js-tokens": "^4.0.0" 127 | }, 128 | "engines": { 129 | "node": ">=6.9.0" 130 | } 131 | }, 132 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 133 | "version": "3.2.1", 134 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 135 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 136 | "dependencies": { 137 | "color-convert": "^1.9.0" 138 | }, 139 | "engines": { 140 | "node": ">=4" 141 | } 142 | }, 143 | "node_modules/@babel/highlight/node_modules/chalk": { 144 | "version": "2.4.2", 145 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 146 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 147 | "dependencies": { 148 | "ansi-styles": "^3.2.1", 149 | "escape-string-regexp": "^1.0.5", 150 | "supports-color": "^5.3.0" 151 | }, 152 | "engines": { 153 | "node": ">=4" 154 | } 155 | }, 156 | "node_modules/@babel/highlight/node_modules/color-convert": { 157 | "version": "1.9.3", 158 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 159 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 160 | "dependencies": { 161 | "color-name": "1.1.3" 162 | } 163 | }, 164 | "node_modules/@babel/highlight/node_modules/color-name": { 165 | "version": "1.1.3", 166 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 167 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" 168 | }, 169 | "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 170 | "version": "1.0.5", 171 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 172 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 173 | "engines": { 174 | "node": ">=0.8.0" 175 | } 176 | }, 177 | "node_modules/@babel/highlight/node_modules/has-flag": { 178 | "version": "3.0.0", 179 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 180 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 181 | "engines": { 182 | "node": ">=4" 183 | } 184 | }, 185 | "node_modules/@babel/highlight/node_modules/supports-color": { 186 | "version": "5.5.0", 187 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 188 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 189 | "dependencies": { 190 | "has-flag": "^3.0.0" 191 | }, 192 | "engines": { 193 | "node": ">=4" 194 | } 195 | }, 196 | "node_modules/@csstools/css-parser-algorithms": { 197 | "version": "2.3.2", 198 | "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", 199 | "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", 200 | "funding": [ 201 | { 202 | "type": "github", 203 | "url": "https://github.com/sponsors/csstools" 204 | }, 205 | { 206 | "type": "opencollective", 207 | "url": "https://opencollective.com/csstools" 208 | } 209 | ], 210 | "engines": { 211 | "node": "^14 || ^16 || >=18" 212 | }, 213 | "peerDependencies": { 214 | "@csstools/css-tokenizer": "^2.2.1" 215 | } 216 | }, 217 | "node_modules/@csstools/css-tokenizer": { 218 | "version": "2.2.1", 219 | "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", 220 | "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", 221 | "funding": [ 222 | { 223 | "type": "github", 224 | "url": "https://github.com/sponsors/csstools" 225 | }, 226 | { 227 | "type": "opencollective", 228 | "url": "https://opencollective.com/csstools" 229 | } 230 | ], 231 | "engines": { 232 | "node": "^14 || ^16 || >=18" 233 | } 234 | }, 235 | "node_modules/@csstools/media-query-list-parser": { 236 | "version": "2.1.5", 237 | "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz", 238 | "integrity": "sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==", 239 | "funding": [ 240 | { 241 | "type": "github", 242 | "url": "https://github.com/sponsors/csstools" 243 | }, 244 | { 245 | "type": "opencollective", 246 | "url": "https://opencollective.com/csstools" 247 | } 248 | ], 249 | "engines": { 250 | "node": "^14 || ^16 || >=18" 251 | }, 252 | "peerDependencies": { 253 | "@csstools/css-parser-algorithms": "^2.3.2", 254 | "@csstools/css-tokenizer": "^2.2.1" 255 | } 256 | }, 257 | "node_modules/@csstools/selector-specificity": { 258 | "version": "3.0.0", 259 | "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", 260 | "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", 261 | "funding": [ 262 | { 263 | "type": "github", 264 | "url": "https://github.com/sponsors/csstools" 265 | }, 266 | { 267 | "type": "opencollective", 268 | "url": "https://opencollective.com/csstools" 269 | } 270 | ], 271 | "engines": { 272 | "node": "^14 || ^16 || >=18" 273 | }, 274 | "peerDependencies": { 275 | "postcss-selector-parser": "^6.0.13" 276 | } 277 | }, 278 | "node_modules/@eslint-community/eslint-utils": { 279 | "version": "4.4.0", 280 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 281 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 282 | "dev": true, 283 | "dependencies": { 284 | "eslint-visitor-keys": "^3.3.0" 285 | }, 286 | "engines": { 287 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 288 | }, 289 | "peerDependencies": { 290 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 291 | } 292 | }, 293 | "node_modules/@eslint-community/regexpp": { 294 | "version": "4.9.1", 295 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz", 296 | "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==", 297 | "dev": true, 298 | "engines": { 299 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 300 | } 301 | }, 302 | "node_modules/@eslint/eslintrc": { 303 | "version": "2.1.2", 304 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", 305 | "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", 306 | "dev": true, 307 | "dependencies": { 308 | "ajv": "^6.12.4", 309 | "debug": "^4.3.2", 310 | "espree": "^9.6.0", 311 | "globals": "^13.19.0", 312 | "ignore": "^5.2.0", 313 | "import-fresh": "^3.2.1", 314 | "js-yaml": "^4.1.0", 315 | "minimatch": "^3.1.2", 316 | "strip-json-comments": "^3.1.1" 317 | }, 318 | "engines": { 319 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 320 | }, 321 | "funding": { 322 | "url": "https://opencollective.com/eslint" 323 | } 324 | }, 325 | "node_modules/@eslint/js": { 326 | "version": "8.50.0", 327 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz", 328 | "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", 329 | "dev": true, 330 | "engines": { 331 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 332 | } 333 | }, 334 | "node_modules/@humanwhocodes/config-array": { 335 | "version": "0.11.11", 336 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", 337 | "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", 338 | "dev": true, 339 | "dependencies": { 340 | "@humanwhocodes/object-schema": "^1.2.1", 341 | "debug": "^4.1.1", 342 | "minimatch": "^3.0.5" 343 | }, 344 | "engines": { 345 | "node": ">=10.10.0" 346 | } 347 | }, 348 | "node_modules/@humanwhocodes/module-importer": { 349 | "version": "1.0.1", 350 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 351 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 352 | "dev": true, 353 | "engines": { 354 | "node": ">=12.22" 355 | }, 356 | "funding": { 357 | "type": "github", 358 | "url": "https://github.com/sponsors/nzakas" 359 | } 360 | }, 361 | "node_modules/@humanwhocodes/object-schema": { 362 | "version": "1.2.1", 363 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 364 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 365 | "dev": true 366 | }, 367 | "node_modules/@nodelib/fs.scandir": { 368 | "version": "2.1.5", 369 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 370 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 371 | "dependencies": { 372 | "@nodelib/fs.stat": "2.0.5", 373 | "run-parallel": "^1.1.9" 374 | }, 375 | "engines": { 376 | "node": ">= 8" 377 | } 378 | }, 379 | "node_modules/@nodelib/fs.stat": { 380 | "version": "2.0.5", 381 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 382 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 383 | "engines": { 384 | "node": ">= 8" 385 | } 386 | }, 387 | "node_modules/@nodelib/fs.walk": { 388 | "version": "1.2.8", 389 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 390 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 391 | "dependencies": { 392 | "@nodelib/fs.scandir": "2.1.5", 393 | "fastq": "^1.6.0" 394 | }, 395 | "engines": { 396 | "node": ">= 8" 397 | } 398 | }, 399 | "node_modules/@one-ini/wasm": { 400 | "version": "0.1.1", 401 | "resolved": "https://registry.npmjs.org/@one-ini/wasm/-/wasm-0.1.1.tgz", 402 | "integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==", 403 | "dev": true 404 | }, 405 | "node_modules/@types/minimist": { 406 | "version": "1.2.3", 407 | "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz", 408 | "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==" 409 | }, 410 | "node_modules/@types/normalize-package-data": { 411 | "version": "2.4.2", 412 | "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", 413 | "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==" 414 | }, 415 | "node_modules/abbrev": { 416 | "version": "1.1.1", 417 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 418 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", 419 | "dev": true 420 | }, 421 | "node_modules/acorn": { 422 | "version": "8.10.0", 423 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", 424 | "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", 425 | "dev": true, 426 | "bin": { 427 | "acorn": "bin/acorn" 428 | }, 429 | "engines": { 430 | "node": ">=0.4.0" 431 | } 432 | }, 433 | "node_modules/acorn-jsx": { 434 | "version": "5.3.2", 435 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 436 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 437 | "dev": true, 438 | "peerDependencies": { 439 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 440 | } 441 | }, 442 | "node_modules/ajv": { 443 | "version": "6.12.6", 444 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 445 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 446 | "dev": true, 447 | "dependencies": { 448 | "fast-deep-equal": "^3.1.1", 449 | "fast-json-stable-stringify": "^2.0.0", 450 | "json-schema-traverse": "^0.4.1", 451 | "uri-js": "^4.2.2" 452 | }, 453 | "funding": { 454 | "type": "github", 455 | "url": "https://github.com/sponsors/epoberezkin" 456 | } 457 | }, 458 | "node_modules/ansi-regex": { 459 | "version": "5.0.1", 460 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 461 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 462 | "engines": { 463 | "node": ">=8" 464 | } 465 | }, 466 | "node_modules/ansi-styles": { 467 | "version": "4.3.0", 468 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 469 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 470 | "dependencies": { 471 | "color-convert": "^2.0.1" 472 | }, 473 | "engines": { 474 | "node": ">=8" 475 | }, 476 | "funding": { 477 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 478 | } 479 | }, 480 | "node_modules/argparse": { 481 | "version": "2.0.1", 482 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 483 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 484 | }, 485 | "node_modules/array-union": { 486 | "version": "2.1.0", 487 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 488 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 489 | "engines": { 490 | "node": ">=8" 491 | } 492 | }, 493 | "node_modules/arrify": { 494 | "version": "1.0.1", 495 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", 496 | "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", 497 | "engines": { 498 | "node": ">=0.10.0" 499 | } 500 | }, 501 | "node_modules/astral-regex": { 502 | "version": "2.0.0", 503 | "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", 504 | "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", 505 | "engines": { 506 | "node": ">=8" 507 | } 508 | }, 509 | "node_modules/balanced-match": { 510 | "version": "1.0.0", 511 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 512 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" 513 | }, 514 | "node_modules/brace-expansion": { 515 | "version": "1.1.11", 516 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 517 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 518 | "dependencies": { 519 | "balanced-match": "^1.0.0", 520 | "concat-map": "0.0.1" 521 | } 522 | }, 523 | "node_modules/braces": { 524 | "version": "3.0.2", 525 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 526 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 527 | "dependencies": { 528 | "fill-range": "^7.0.1" 529 | }, 530 | "engines": { 531 | "node": ">=8" 532 | } 533 | }, 534 | "node_modules/callsites": { 535 | "version": "3.1.0", 536 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 537 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 538 | "engines": { 539 | "node": ">=6" 540 | } 541 | }, 542 | "node_modules/camelcase": { 543 | "version": "6.3.0", 544 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 545 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 546 | "engines": { 547 | "node": ">=10" 548 | }, 549 | "funding": { 550 | "url": "https://github.com/sponsors/sindresorhus" 551 | } 552 | }, 553 | "node_modules/camelcase-keys": { 554 | "version": "7.0.2", 555 | "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", 556 | "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", 557 | "dependencies": { 558 | "camelcase": "^6.3.0", 559 | "map-obj": "^4.1.0", 560 | "quick-lru": "^5.1.1", 561 | "type-fest": "^1.2.1" 562 | }, 563 | "engines": { 564 | "node": ">=12" 565 | }, 566 | "funding": { 567 | "url": "https://github.com/sponsors/sindresorhus" 568 | } 569 | }, 570 | "node_modules/camelcase-keys/node_modules/type-fest": { 571 | "version": "1.4.0", 572 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", 573 | "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", 574 | "engines": { 575 | "node": ">=10" 576 | }, 577 | "funding": { 578 | "url": "https://github.com/sponsors/sindresorhus" 579 | } 580 | }, 581 | "node_modules/chalk": { 582 | "version": "4.1.0", 583 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", 584 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", 585 | "dev": true, 586 | "dependencies": { 587 | "ansi-styles": "^4.1.0", 588 | "supports-color": "^7.1.0" 589 | }, 590 | "engines": { 591 | "node": ">=10" 592 | }, 593 | "funding": { 594 | "url": "https://github.com/chalk/chalk?sponsor=1" 595 | } 596 | }, 597 | "node_modules/color-convert": { 598 | "version": "2.0.1", 599 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 600 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 601 | "dependencies": { 602 | "color-name": "~1.1.4" 603 | }, 604 | "engines": { 605 | "node": ">=7.0.0" 606 | } 607 | }, 608 | "node_modules/color-name": { 609 | "version": "1.1.4", 610 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 611 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 612 | }, 613 | "node_modules/colord": { 614 | "version": "2.9.3", 615 | "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", 616 | "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" 617 | }, 618 | "node_modules/commander": { 619 | "version": "10.0.1", 620 | "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", 621 | "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", 622 | "dev": true, 623 | "engines": { 624 | "node": ">=14" 625 | } 626 | }, 627 | "node_modules/concat-map": { 628 | "version": "0.0.1", 629 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 630 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 631 | }, 632 | "node_modules/config-chain": { 633 | "version": "1.1.13", 634 | "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", 635 | "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", 636 | "dev": true, 637 | "dependencies": { 638 | "ini": "^1.3.4", 639 | "proto-list": "~1.2.1" 640 | } 641 | }, 642 | "node_modules/cosmiconfig": { 643 | "version": "8.3.6", 644 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", 645 | "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", 646 | "dependencies": { 647 | "import-fresh": "^3.3.0", 648 | "js-yaml": "^4.1.0", 649 | "parse-json": "^5.2.0", 650 | "path-type": "^4.0.0" 651 | }, 652 | "engines": { 653 | "node": ">=14" 654 | }, 655 | "funding": { 656 | "url": "https://github.com/sponsors/d-fischer" 657 | }, 658 | "peerDependencies": { 659 | "typescript": ">=4.9.5" 660 | }, 661 | "peerDependenciesMeta": { 662 | "typescript": { 663 | "optional": true 664 | } 665 | } 666 | }, 667 | "node_modules/cross-spawn": { 668 | "version": "7.0.3", 669 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 670 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 671 | "dev": true, 672 | "dependencies": { 673 | "path-key": "^3.1.0", 674 | "shebang-command": "^2.0.0", 675 | "which": "^2.0.1" 676 | }, 677 | "engines": { 678 | "node": ">= 8" 679 | } 680 | }, 681 | "node_modules/cross-spawn/node_modules/which": { 682 | "version": "2.0.2", 683 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 684 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 685 | "dev": true, 686 | "dependencies": { 687 | "isexe": "^2.0.0" 688 | }, 689 | "bin": { 690 | "node-which": "bin/node-which" 691 | }, 692 | "engines": { 693 | "node": ">= 8" 694 | } 695 | }, 696 | "node_modules/css-functions-list": { 697 | "version": "3.2.0", 698 | "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.0.tgz", 699 | "integrity": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==", 700 | "engines": { 701 | "node": ">=12.22" 702 | } 703 | }, 704 | "node_modules/css-tree": { 705 | "version": "2.3.1", 706 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 707 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 708 | "dependencies": { 709 | "mdn-data": "2.0.30", 710 | "source-map-js": "^1.0.1" 711 | }, 712 | "engines": { 713 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 714 | } 715 | }, 716 | "node_modules/cssesc": { 717 | "version": "3.0.0", 718 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 719 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 720 | "bin": { 721 | "cssesc": "bin/cssesc" 722 | }, 723 | "engines": { 724 | "node": ">=4" 725 | } 726 | }, 727 | "node_modules/debug": { 728 | "version": "4.3.4", 729 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 730 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 731 | "dependencies": { 732 | "ms": "2.1.2" 733 | }, 734 | "engines": { 735 | "node": ">=6.0" 736 | }, 737 | "peerDependenciesMeta": { 738 | "supports-color": { 739 | "optional": true 740 | } 741 | } 742 | }, 743 | "node_modules/decamelize": { 744 | "version": "5.0.1", 745 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", 746 | "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", 747 | "engines": { 748 | "node": ">=10" 749 | }, 750 | "funding": { 751 | "url": "https://github.com/sponsors/sindresorhus" 752 | } 753 | }, 754 | "node_modules/decamelize-keys": { 755 | "version": "1.1.1", 756 | "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", 757 | "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", 758 | "dependencies": { 759 | "decamelize": "^1.1.0", 760 | "map-obj": "^1.0.0" 761 | }, 762 | "engines": { 763 | "node": ">=0.10.0" 764 | }, 765 | "funding": { 766 | "url": "https://github.com/sponsors/sindresorhus" 767 | } 768 | }, 769 | "node_modules/decamelize-keys/node_modules/decamelize": { 770 | "version": "1.2.0", 771 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 772 | "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", 773 | "engines": { 774 | "node": ">=0.10.0" 775 | } 776 | }, 777 | "node_modules/decamelize-keys/node_modules/map-obj": { 778 | "version": "1.0.1", 779 | "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", 780 | "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", 781 | "engines": { 782 | "node": ">=0.10.0" 783 | } 784 | }, 785 | "node_modules/deep-is": { 786 | "version": "0.1.4", 787 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 788 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 789 | "dev": true 790 | }, 791 | "node_modules/dir-glob": { 792 | "version": "3.0.1", 793 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 794 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 795 | "dependencies": { 796 | "path-type": "^4.0.0" 797 | }, 798 | "engines": { 799 | "node": ">=8" 800 | } 801 | }, 802 | "node_modules/doctrine": { 803 | "version": "3.0.0", 804 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 805 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 806 | "dev": true, 807 | "dependencies": { 808 | "esutils": "^2.0.2" 809 | }, 810 | "engines": { 811 | "node": ">=6.0.0" 812 | } 813 | }, 814 | "node_modules/editorconfig": { 815 | "version": "1.0.4", 816 | "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", 817 | "integrity": "sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==", 818 | "dev": true, 819 | "dependencies": { 820 | "@one-ini/wasm": "0.1.1", 821 | "commander": "^10.0.0", 822 | "minimatch": "9.0.1", 823 | "semver": "^7.5.3" 824 | }, 825 | "bin": { 826 | "editorconfig": "bin/editorconfig" 827 | }, 828 | "engines": { 829 | "node": ">=14" 830 | } 831 | }, 832 | "node_modules/editorconfig/node_modules/brace-expansion": { 833 | "version": "2.0.1", 834 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 835 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 836 | "dev": true, 837 | "dependencies": { 838 | "balanced-match": "^1.0.0" 839 | } 840 | }, 841 | "node_modules/editorconfig/node_modules/minimatch": { 842 | "version": "9.0.1", 843 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", 844 | "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", 845 | "dev": true, 846 | "dependencies": { 847 | "brace-expansion": "^2.0.1" 848 | }, 849 | "engines": { 850 | "node": ">=16 || 14 >=14.17" 851 | }, 852 | "funding": { 853 | "url": "https://github.com/sponsors/isaacs" 854 | } 855 | }, 856 | "node_modules/emoji-regex": { 857 | "version": "8.0.0", 858 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 859 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 860 | }, 861 | "node_modules/error-ex": { 862 | "version": "1.3.2", 863 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 864 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 865 | "dependencies": { 866 | "is-arrayish": "^0.2.1" 867 | } 868 | }, 869 | "node_modules/escape-string-regexp": { 870 | "version": "4.0.0", 871 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 872 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 873 | "dev": true, 874 | "engines": { 875 | "node": ">=10" 876 | }, 877 | "funding": { 878 | "url": "https://github.com/sponsors/sindresorhus" 879 | } 880 | }, 881 | "node_modules/eslint": { 882 | "version": "8.50.0", 883 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz", 884 | "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", 885 | "dev": true, 886 | "dependencies": { 887 | "@eslint-community/eslint-utils": "^4.2.0", 888 | "@eslint-community/regexpp": "^4.6.1", 889 | "@eslint/eslintrc": "^2.1.2", 890 | "@eslint/js": "8.50.0", 891 | "@humanwhocodes/config-array": "^0.11.11", 892 | "@humanwhocodes/module-importer": "^1.0.1", 893 | "@nodelib/fs.walk": "^1.2.8", 894 | "ajv": "^6.12.4", 895 | "chalk": "^4.0.0", 896 | "cross-spawn": "^7.0.2", 897 | "debug": "^4.3.2", 898 | "doctrine": "^3.0.0", 899 | "escape-string-regexp": "^4.0.0", 900 | "eslint-scope": "^7.2.2", 901 | "eslint-visitor-keys": "^3.4.3", 902 | "espree": "^9.6.1", 903 | "esquery": "^1.4.2", 904 | "esutils": "^2.0.2", 905 | "fast-deep-equal": "^3.1.3", 906 | "file-entry-cache": "^6.0.1", 907 | "find-up": "^5.0.0", 908 | "glob-parent": "^6.0.2", 909 | "globals": "^13.19.0", 910 | "graphemer": "^1.4.0", 911 | "ignore": "^5.2.0", 912 | "imurmurhash": "^0.1.4", 913 | "is-glob": "^4.0.0", 914 | "is-path-inside": "^3.0.3", 915 | "js-yaml": "^4.1.0", 916 | "json-stable-stringify-without-jsonify": "^1.0.1", 917 | "levn": "^0.4.1", 918 | "lodash.merge": "^4.6.2", 919 | "minimatch": "^3.1.2", 920 | "natural-compare": "^1.4.0", 921 | "optionator": "^0.9.3", 922 | "strip-ansi": "^6.0.1", 923 | "text-table": "^0.2.0" 924 | }, 925 | "bin": { 926 | "eslint": "bin/eslint.js" 927 | }, 928 | "engines": { 929 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 930 | }, 931 | "funding": { 932 | "url": "https://opencollective.com/eslint" 933 | } 934 | }, 935 | "node_modules/eslint-config-google": { 936 | "version": "0.14.0", 937 | "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", 938 | "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", 939 | "dev": true, 940 | "engines": { 941 | "node": ">=0.10.0" 942 | }, 943 | "peerDependencies": { 944 | "eslint": ">=5.16.0" 945 | } 946 | }, 947 | "node_modules/eslint-config-prettier": { 948 | "version": "9.0.0", 949 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", 950 | "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", 951 | "dev": true, 952 | "bin": { 953 | "eslint-config-prettier": "bin/cli.js" 954 | }, 955 | "peerDependencies": { 956 | "eslint": ">=7.0.0" 957 | } 958 | }, 959 | "node_modules/eslint-scope": { 960 | "version": "7.2.2", 961 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 962 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 963 | "dev": true, 964 | "dependencies": { 965 | "esrecurse": "^4.3.0", 966 | "estraverse": "^5.2.0" 967 | }, 968 | "engines": { 969 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 970 | }, 971 | "funding": { 972 | "url": "https://opencollective.com/eslint" 973 | } 974 | }, 975 | "node_modules/eslint-visitor-keys": { 976 | "version": "3.4.3", 977 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 978 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 979 | "dev": true, 980 | "engines": { 981 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 982 | }, 983 | "funding": { 984 | "url": "https://opencollective.com/eslint" 985 | } 986 | }, 987 | "node_modules/espree": { 988 | "version": "9.6.1", 989 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 990 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 991 | "dev": true, 992 | "dependencies": { 993 | "acorn": "^8.9.0", 994 | "acorn-jsx": "^5.3.2", 995 | "eslint-visitor-keys": "^3.4.1" 996 | }, 997 | "engines": { 998 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 999 | }, 1000 | "funding": { 1001 | "url": "https://opencollective.com/eslint" 1002 | } 1003 | }, 1004 | "node_modules/esprima": { 1005 | "version": "4.0.1", 1006 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1007 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1008 | "dev": true, 1009 | "bin": { 1010 | "esparse": "bin/esparse.js", 1011 | "esvalidate": "bin/esvalidate.js" 1012 | }, 1013 | "engines": { 1014 | "node": ">=4" 1015 | } 1016 | }, 1017 | "node_modules/esquery": { 1018 | "version": "1.5.0", 1019 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1020 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1021 | "dev": true, 1022 | "dependencies": { 1023 | "estraverse": "^5.1.0" 1024 | }, 1025 | "engines": { 1026 | "node": ">=0.10" 1027 | } 1028 | }, 1029 | "node_modules/esrecurse": { 1030 | "version": "4.3.0", 1031 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1032 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1033 | "dev": true, 1034 | "dependencies": { 1035 | "estraverse": "^5.2.0" 1036 | }, 1037 | "engines": { 1038 | "node": ">=4.0" 1039 | } 1040 | }, 1041 | "node_modules/estraverse": { 1042 | "version": "5.3.0", 1043 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1044 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1045 | "dev": true, 1046 | "engines": { 1047 | "node": ">=4.0" 1048 | } 1049 | }, 1050 | "node_modules/esutils": { 1051 | "version": "2.0.3", 1052 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1053 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1054 | "dev": true, 1055 | "engines": { 1056 | "node": ">=0.10.0" 1057 | } 1058 | }, 1059 | "node_modules/fast-deep-equal": { 1060 | "version": "3.1.3", 1061 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1062 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1063 | }, 1064 | "node_modules/fast-glob": { 1065 | "version": "3.3.1", 1066 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", 1067 | "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", 1068 | "dependencies": { 1069 | "@nodelib/fs.stat": "^2.0.2", 1070 | "@nodelib/fs.walk": "^1.2.3", 1071 | "glob-parent": "^5.1.2", 1072 | "merge2": "^1.3.0", 1073 | "micromatch": "^4.0.4" 1074 | }, 1075 | "engines": { 1076 | "node": ">=8.6.0" 1077 | } 1078 | }, 1079 | "node_modules/fast-glob/node_modules/glob-parent": { 1080 | "version": "5.1.2", 1081 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1082 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1083 | "dependencies": { 1084 | "is-glob": "^4.0.1" 1085 | }, 1086 | "engines": { 1087 | "node": ">= 6" 1088 | } 1089 | }, 1090 | "node_modules/fast-json-stable-stringify": { 1091 | "version": "2.1.0", 1092 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1093 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1094 | "dev": true 1095 | }, 1096 | "node_modules/fast-levenshtein": { 1097 | "version": "2.0.6", 1098 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1099 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1100 | "dev": true 1101 | }, 1102 | "node_modules/fastest-levenshtein": { 1103 | "version": "1.0.16", 1104 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", 1105 | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", 1106 | "engines": { 1107 | "node": ">= 4.9.1" 1108 | } 1109 | }, 1110 | "node_modules/fastq": { 1111 | "version": "1.15.0", 1112 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1113 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1114 | "dependencies": { 1115 | "reusify": "^1.0.4" 1116 | } 1117 | }, 1118 | "node_modules/file-entry-cache": { 1119 | "version": "6.0.1", 1120 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1121 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1122 | "dependencies": { 1123 | "flat-cache": "^3.0.4" 1124 | }, 1125 | "engines": { 1126 | "node": "^10.12.0 || >=12.0.0" 1127 | } 1128 | }, 1129 | "node_modules/fill-range": { 1130 | "version": "7.0.1", 1131 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1132 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1133 | "dependencies": { 1134 | "to-regex-range": "^5.0.1" 1135 | }, 1136 | "engines": { 1137 | "node": ">=8" 1138 | } 1139 | }, 1140 | "node_modules/find-up": { 1141 | "version": "5.0.0", 1142 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1143 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1144 | "dependencies": { 1145 | "locate-path": "^6.0.0", 1146 | "path-exists": "^4.0.0" 1147 | }, 1148 | "engines": { 1149 | "node": ">=10" 1150 | }, 1151 | "funding": { 1152 | "url": "https://github.com/sponsors/sindresorhus" 1153 | } 1154 | }, 1155 | "node_modules/flat-cache": { 1156 | "version": "3.1.0", 1157 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", 1158 | "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", 1159 | "dependencies": { 1160 | "flatted": "^3.2.7", 1161 | "keyv": "^4.5.3", 1162 | "rimraf": "^3.0.2" 1163 | }, 1164 | "engines": { 1165 | "node": ">=12.0.0" 1166 | } 1167 | }, 1168 | "node_modules/flatted": { 1169 | "version": "3.2.9", 1170 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 1171 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" 1172 | }, 1173 | "node_modules/fs.realpath": { 1174 | "version": "1.0.0", 1175 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1176 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 1177 | }, 1178 | "node_modules/function-bind": { 1179 | "version": "1.1.1", 1180 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1181 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1182 | }, 1183 | "node_modules/glob": { 1184 | "version": "7.1.6", 1185 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 1186 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 1187 | "dependencies": { 1188 | "fs.realpath": "^1.0.0", 1189 | "inflight": "^1.0.4", 1190 | "inherits": "2", 1191 | "minimatch": "^3.0.4", 1192 | "once": "^1.3.0", 1193 | "path-is-absolute": "^1.0.0" 1194 | }, 1195 | "engines": { 1196 | "node": "*" 1197 | }, 1198 | "funding": { 1199 | "url": "https://github.com/sponsors/isaacs" 1200 | } 1201 | }, 1202 | "node_modules/glob-parent": { 1203 | "version": "6.0.2", 1204 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1205 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1206 | "dev": true, 1207 | "dependencies": { 1208 | "is-glob": "^4.0.3" 1209 | }, 1210 | "engines": { 1211 | "node": ">=10.13.0" 1212 | } 1213 | }, 1214 | "node_modules/global-modules": { 1215 | "version": "2.0.0", 1216 | "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", 1217 | "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", 1218 | "dependencies": { 1219 | "global-prefix": "^3.0.0" 1220 | }, 1221 | "engines": { 1222 | "node": ">=6" 1223 | } 1224 | }, 1225 | "node_modules/global-prefix": { 1226 | "version": "3.0.0", 1227 | "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", 1228 | "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", 1229 | "dependencies": { 1230 | "ini": "^1.3.5", 1231 | "kind-of": "^6.0.2", 1232 | "which": "^1.3.1" 1233 | }, 1234 | "engines": { 1235 | "node": ">=6" 1236 | } 1237 | }, 1238 | "node_modules/globals": { 1239 | "version": "13.22.0", 1240 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", 1241 | "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", 1242 | "dev": true, 1243 | "dependencies": { 1244 | "type-fest": "^0.20.2" 1245 | }, 1246 | "engines": { 1247 | "node": ">=8" 1248 | }, 1249 | "funding": { 1250 | "url": "https://github.com/sponsors/sindresorhus" 1251 | } 1252 | }, 1253 | "node_modules/globby": { 1254 | "version": "11.1.0", 1255 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1256 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1257 | "dependencies": { 1258 | "array-union": "^2.1.0", 1259 | "dir-glob": "^3.0.1", 1260 | "fast-glob": "^3.2.9", 1261 | "ignore": "^5.2.0", 1262 | "merge2": "^1.4.1", 1263 | "slash": "^3.0.0" 1264 | }, 1265 | "engines": { 1266 | "node": ">=10" 1267 | }, 1268 | "funding": { 1269 | "url": "https://github.com/sponsors/sindresorhus" 1270 | } 1271 | }, 1272 | "node_modules/globjoin": { 1273 | "version": "0.1.4", 1274 | "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", 1275 | "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=" 1276 | }, 1277 | "node_modules/graphemer": { 1278 | "version": "1.4.0", 1279 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1280 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1281 | "dev": true 1282 | }, 1283 | "node_modules/hard-rejection": { 1284 | "version": "2.1.0", 1285 | "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", 1286 | "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", 1287 | "engines": { 1288 | "node": ">=6" 1289 | } 1290 | }, 1291 | "node_modules/has": { 1292 | "version": "1.0.3", 1293 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1294 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1295 | "dependencies": { 1296 | "function-bind": "^1.1.1" 1297 | }, 1298 | "engines": { 1299 | "node": ">= 0.4.0" 1300 | } 1301 | }, 1302 | "node_modules/has-flag": { 1303 | "version": "4.0.0", 1304 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1305 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1306 | "engines": { 1307 | "node": ">=8" 1308 | } 1309 | }, 1310 | "node_modules/hosted-git-info": { 1311 | "version": "4.1.0", 1312 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", 1313 | "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", 1314 | "dependencies": { 1315 | "lru-cache": "^6.0.0" 1316 | }, 1317 | "engines": { 1318 | "node": ">=10" 1319 | } 1320 | }, 1321 | "node_modules/html-tags": { 1322 | "version": "3.3.1", 1323 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", 1324 | "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", 1325 | "engines": { 1326 | "node": ">=8" 1327 | }, 1328 | "funding": { 1329 | "url": "https://github.com/sponsors/sindresorhus" 1330 | } 1331 | }, 1332 | "node_modules/ignore": { 1333 | "version": "5.2.4", 1334 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 1335 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 1336 | "engines": { 1337 | "node": ">= 4" 1338 | } 1339 | }, 1340 | "node_modules/import-fresh": { 1341 | "version": "3.3.0", 1342 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1343 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1344 | "dependencies": { 1345 | "parent-module": "^1.0.0", 1346 | "resolve-from": "^4.0.0" 1347 | }, 1348 | "engines": { 1349 | "node": ">=6" 1350 | }, 1351 | "funding": { 1352 | "url": "https://github.com/sponsors/sindresorhus" 1353 | } 1354 | }, 1355 | "node_modules/import-fresh/node_modules/resolve-from": { 1356 | "version": "4.0.0", 1357 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1358 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1359 | "engines": { 1360 | "node": ">=4" 1361 | } 1362 | }, 1363 | "node_modules/import-lazy": { 1364 | "version": "4.0.0", 1365 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", 1366 | "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", 1367 | "engines": { 1368 | "node": ">=8" 1369 | } 1370 | }, 1371 | "node_modules/imurmurhash": { 1372 | "version": "0.1.4", 1373 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1374 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 1375 | "engines": { 1376 | "node": ">=0.8.19" 1377 | } 1378 | }, 1379 | "node_modules/indent-string": { 1380 | "version": "5.0.0", 1381 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", 1382 | "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", 1383 | "engines": { 1384 | "node": ">=12" 1385 | }, 1386 | "funding": { 1387 | "url": "https://github.com/sponsors/sindresorhus" 1388 | } 1389 | }, 1390 | "node_modules/inflight": { 1391 | "version": "1.0.6", 1392 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1393 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1394 | "dependencies": { 1395 | "once": "^1.3.0", 1396 | "wrappy": "1" 1397 | } 1398 | }, 1399 | "node_modules/inherits": { 1400 | "version": "2.0.4", 1401 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1402 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1403 | }, 1404 | "node_modules/ini": { 1405 | "version": "1.3.8", 1406 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 1407 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" 1408 | }, 1409 | "node_modules/interpret": { 1410 | "version": "1.4.0", 1411 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", 1412 | "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", 1413 | "dev": true, 1414 | "engines": { 1415 | "node": ">= 0.10" 1416 | } 1417 | }, 1418 | "node_modules/is-arrayish": { 1419 | "version": "0.2.1", 1420 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1421 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" 1422 | }, 1423 | "node_modules/is-core-module": { 1424 | "version": "2.13.0", 1425 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", 1426 | "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", 1427 | "dependencies": { 1428 | "has": "^1.0.3" 1429 | }, 1430 | "funding": { 1431 | "url": "https://github.com/sponsors/ljharb" 1432 | } 1433 | }, 1434 | "node_modules/is-extglob": { 1435 | "version": "2.1.1", 1436 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1437 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 1438 | "engines": { 1439 | "node": ">=0.10.0" 1440 | } 1441 | }, 1442 | "node_modules/is-fullwidth-code-point": { 1443 | "version": "3.0.0", 1444 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1445 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1446 | "engines": { 1447 | "node": ">=8" 1448 | } 1449 | }, 1450 | "node_modules/is-glob": { 1451 | "version": "4.0.3", 1452 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1453 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1454 | "dependencies": { 1455 | "is-extglob": "^2.1.1" 1456 | }, 1457 | "engines": { 1458 | "node": ">=0.10.0" 1459 | } 1460 | }, 1461 | "node_modules/is-number": { 1462 | "version": "7.0.0", 1463 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1464 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1465 | "engines": { 1466 | "node": ">=0.12.0" 1467 | } 1468 | }, 1469 | "node_modules/is-path-inside": { 1470 | "version": "3.0.3", 1471 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1472 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1473 | "dev": true, 1474 | "engines": { 1475 | "node": ">=8" 1476 | } 1477 | }, 1478 | "node_modules/is-plain-obj": { 1479 | "version": "1.1.0", 1480 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", 1481 | "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", 1482 | "engines": { 1483 | "node": ">=0.10.0" 1484 | } 1485 | }, 1486 | "node_modules/is-plain-object": { 1487 | "version": "5.0.0", 1488 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", 1489 | "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", 1490 | "engines": { 1491 | "node": ">=0.10.0" 1492 | } 1493 | }, 1494 | "node_modules/isexe": { 1495 | "version": "2.0.0", 1496 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1497 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 1498 | }, 1499 | "node_modules/js-beautify": { 1500 | "version": "1.14.9", 1501 | "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.9.tgz", 1502 | "integrity": "sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==", 1503 | "dev": true, 1504 | "dependencies": { 1505 | "config-chain": "^1.1.13", 1506 | "editorconfig": "^1.0.3", 1507 | "glob": "^8.1.0", 1508 | "nopt": "^6.0.0" 1509 | }, 1510 | "bin": { 1511 | "css-beautify": "js/bin/css-beautify.js", 1512 | "html-beautify": "js/bin/html-beautify.js", 1513 | "js-beautify": "js/bin/js-beautify.js" 1514 | }, 1515 | "engines": { 1516 | "node": ">=12" 1517 | } 1518 | }, 1519 | "node_modules/js-beautify/node_modules/brace-expansion": { 1520 | "version": "2.0.1", 1521 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1522 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1523 | "dev": true, 1524 | "dependencies": { 1525 | "balanced-match": "^1.0.0" 1526 | } 1527 | }, 1528 | "node_modules/js-beautify/node_modules/glob": { 1529 | "version": "8.1.0", 1530 | "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 1531 | "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 1532 | "dev": true, 1533 | "dependencies": { 1534 | "fs.realpath": "^1.0.0", 1535 | "inflight": "^1.0.4", 1536 | "inherits": "2", 1537 | "minimatch": "^5.0.1", 1538 | "once": "^1.3.0" 1539 | }, 1540 | "engines": { 1541 | "node": ">=12" 1542 | }, 1543 | "funding": { 1544 | "url": "https://github.com/sponsors/isaacs" 1545 | } 1546 | }, 1547 | "node_modules/js-beautify/node_modules/minimatch": { 1548 | "version": "5.1.6", 1549 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1550 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1551 | "dev": true, 1552 | "dependencies": { 1553 | "brace-expansion": "^2.0.1" 1554 | }, 1555 | "engines": { 1556 | "node": ">=10" 1557 | } 1558 | }, 1559 | "node_modules/js-tokens": { 1560 | "version": "4.0.0", 1561 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1562 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1563 | }, 1564 | "node_modules/js-yaml": { 1565 | "version": "4.1.0", 1566 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1567 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1568 | "dependencies": { 1569 | "argparse": "^2.0.1" 1570 | }, 1571 | "bin": { 1572 | "js-yaml": "bin/js-yaml.js" 1573 | } 1574 | }, 1575 | "node_modules/json-buffer": { 1576 | "version": "3.0.1", 1577 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1578 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" 1579 | }, 1580 | "node_modules/json-parse-even-better-errors": { 1581 | "version": "2.3.1", 1582 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 1583 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" 1584 | }, 1585 | "node_modules/json-schema-traverse": { 1586 | "version": "0.4.1", 1587 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1588 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1589 | "dev": true 1590 | }, 1591 | "node_modules/json-stable-stringify-without-jsonify": { 1592 | "version": "1.0.1", 1593 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1594 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", 1595 | "dev": true 1596 | }, 1597 | "node_modules/keyv": { 1598 | "version": "4.5.3", 1599 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", 1600 | "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", 1601 | "dependencies": { 1602 | "json-buffer": "3.0.1" 1603 | } 1604 | }, 1605 | "node_modules/kind-of": { 1606 | "version": "6.0.3", 1607 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 1608 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", 1609 | "engines": { 1610 | "node": ">=0.10.0" 1611 | } 1612 | }, 1613 | "node_modules/known-css-properties": { 1614 | "version": "0.28.0", 1615 | "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.28.0.tgz", 1616 | "integrity": "sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==" 1617 | }, 1618 | "node_modules/levn": { 1619 | "version": "0.4.1", 1620 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1621 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1622 | "dev": true, 1623 | "dependencies": { 1624 | "prelude-ls": "^1.2.1", 1625 | "type-check": "~0.4.0" 1626 | }, 1627 | "engines": { 1628 | "node": ">= 0.8.0" 1629 | } 1630 | }, 1631 | "node_modules/lines-and-columns": { 1632 | "version": "1.2.4", 1633 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 1634 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 1635 | }, 1636 | "node_modules/locate-path": { 1637 | "version": "6.0.0", 1638 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1639 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1640 | "dependencies": { 1641 | "p-locate": "^5.0.0" 1642 | }, 1643 | "engines": { 1644 | "node": ">=10" 1645 | }, 1646 | "funding": { 1647 | "url": "https://github.com/sponsors/sindresorhus" 1648 | } 1649 | }, 1650 | "node_modules/lodash.merge": { 1651 | "version": "4.6.2", 1652 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1653 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1654 | "dev": true 1655 | }, 1656 | "node_modules/lodash.truncate": { 1657 | "version": "4.4.2", 1658 | "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", 1659 | "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" 1660 | }, 1661 | "node_modules/lru-cache": { 1662 | "version": "6.0.0", 1663 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 1664 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1665 | "dependencies": { 1666 | "yallist": "^4.0.0" 1667 | }, 1668 | "engines": { 1669 | "node": ">=10" 1670 | } 1671 | }, 1672 | "node_modules/map-obj": { 1673 | "version": "4.3.0", 1674 | "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", 1675 | "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", 1676 | "engines": { 1677 | "node": ">=8" 1678 | }, 1679 | "funding": { 1680 | "url": "https://github.com/sponsors/sindresorhus" 1681 | } 1682 | }, 1683 | "node_modules/mathml-tag-names": { 1684 | "version": "2.1.3", 1685 | "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", 1686 | "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", 1687 | "funding": { 1688 | "type": "github", 1689 | "url": "https://github.com/sponsors/wooorm" 1690 | } 1691 | }, 1692 | "node_modules/mdn-data": { 1693 | "version": "2.0.30", 1694 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 1695 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" 1696 | }, 1697 | "node_modules/meow": { 1698 | "version": "10.1.5", 1699 | "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", 1700 | "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", 1701 | "dependencies": { 1702 | "@types/minimist": "^1.2.2", 1703 | "camelcase-keys": "^7.0.0", 1704 | "decamelize": "^5.0.0", 1705 | "decamelize-keys": "^1.1.0", 1706 | "hard-rejection": "^2.1.0", 1707 | "minimist-options": "4.1.0", 1708 | "normalize-package-data": "^3.0.2", 1709 | "read-pkg-up": "^8.0.0", 1710 | "redent": "^4.0.0", 1711 | "trim-newlines": "^4.0.2", 1712 | "type-fest": "^1.2.2", 1713 | "yargs-parser": "^20.2.9" 1714 | }, 1715 | "engines": { 1716 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1717 | }, 1718 | "funding": { 1719 | "url": "https://github.com/sponsors/sindresorhus" 1720 | } 1721 | }, 1722 | "node_modules/meow/node_modules/type-fest": { 1723 | "version": "1.4.0", 1724 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", 1725 | "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", 1726 | "engines": { 1727 | "node": ">=10" 1728 | }, 1729 | "funding": { 1730 | "url": "https://github.com/sponsors/sindresorhus" 1731 | } 1732 | }, 1733 | "node_modules/merge2": { 1734 | "version": "1.4.1", 1735 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1736 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1737 | "engines": { 1738 | "node": ">= 8" 1739 | } 1740 | }, 1741 | "node_modules/micromatch": { 1742 | "version": "4.0.5", 1743 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1744 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1745 | "dependencies": { 1746 | "braces": "^3.0.2", 1747 | "picomatch": "^2.3.1" 1748 | }, 1749 | "engines": { 1750 | "node": ">=8.6" 1751 | } 1752 | }, 1753 | "node_modules/min-indent": { 1754 | "version": "1.0.1", 1755 | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", 1756 | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", 1757 | "engines": { 1758 | "node": ">=4" 1759 | } 1760 | }, 1761 | "node_modules/minimatch": { 1762 | "version": "3.1.2", 1763 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1764 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1765 | "dependencies": { 1766 | "brace-expansion": "^1.1.7" 1767 | }, 1768 | "engines": { 1769 | "node": "*" 1770 | } 1771 | }, 1772 | "node_modules/minimist": { 1773 | "version": "1.2.6", 1774 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", 1775 | "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", 1776 | "dev": true 1777 | }, 1778 | "node_modules/minimist-options": { 1779 | "version": "4.1.0", 1780 | "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", 1781 | "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", 1782 | "dependencies": { 1783 | "arrify": "^1.0.1", 1784 | "is-plain-obj": "^1.1.0", 1785 | "kind-of": "^6.0.3" 1786 | }, 1787 | "engines": { 1788 | "node": ">= 6" 1789 | } 1790 | }, 1791 | "node_modules/ms": { 1792 | "version": "2.1.2", 1793 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1794 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1795 | }, 1796 | "node_modules/nanoid": { 1797 | "version": "3.3.6", 1798 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 1799 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 1800 | "funding": [ 1801 | { 1802 | "type": "github", 1803 | "url": "https://github.com/sponsors/ai" 1804 | } 1805 | ], 1806 | "bin": { 1807 | "nanoid": "bin/nanoid.cjs" 1808 | }, 1809 | "engines": { 1810 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1811 | } 1812 | }, 1813 | "node_modules/natural-compare": { 1814 | "version": "1.4.0", 1815 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1816 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", 1817 | "dev": true 1818 | }, 1819 | "node_modules/nopt": { 1820 | "version": "6.0.0", 1821 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", 1822 | "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", 1823 | "dev": true, 1824 | "dependencies": { 1825 | "abbrev": "^1.0.0" 1826 | }, 1827 | "bin": { 1828 | "nopt": "bin/nopt.js" 1829 | }, 1830 | "engines": { 1831 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 1832 | } 1833 | }, 1834 | "node_modules/normalize-package-data": { 1835 | "version": "3.0.3", 1836 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", 1837 | "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", 1838 | "dependencies": { 1839 | "hosted-git-info": "^4.0.1", 1840 | "is-core-module": "^2.5.0", 1841 | "semver": "^7.3.4", 1842 | "validate-npm-package-license": "^3.0.1" 1843 | }, 1844 | "engines": { 1845 | "node": ">=10" 1846 | } 1847 | }, 1848 | "node_modules/normalize-path": { 1849 | "version": "3.0.0", 1850 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1851 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1852 | "engines": { 1853 | "node": ">=0.10.0" 1854 | } 1855 | }, 1856 | "node_modules/once": { 1857 | "version": "1.4.0", 1858 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1859 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1860 | "dependencies": { 1861 | "wrappy": "1" 1862 | } 1863 | }, 1864 | "node_modules/optionator": { 1865 | "version": "0.9.3", 1866 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 1867 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 1868 | "dev": true, 1869 | "dependencies": { 1870 | "@aashutoshrathi/word-wrap": "^1.2.3", 1871 | "deep-is": "^0.1.3", 1872 | "fast-levenshtein": "^2.0.6", 1873 | "levn": "^0.4.1", 1874 | "prelude-ls": "^1.2.1", 1875 | "type-check": "^0.4.0" 1876 | }, 1877 | "engines": { 1878 | "node": ">= 0.8.0" 1879 | } 1880 | }, 1881 | "node_modules/p-limit": { 1882 | "version": "3.1.0", 1883 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1884 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1885 | "dependencies": { 1886 | "yocto-queue": "^0.1.0" 1887 | }, 1888 | "engines": { 1889 | "node": ">=10" 1890 | }, 1891 | "funding": { 1892 | "url": "https://github.com/sponsors/sindresorhus" 1893 | } 1894 | }, 1895 | "node_modules/p-locate": { 1896 | "version": "5.0.0", 1897 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1898 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1899 | "dependencies": { 1900 | "p-limit": "^3.0.2" 1901 | }, 1902 | "engines": { 1903 | "node": ">=10" 1904 | }, 1905 | "funding": { 1906 | "url": "https://github.com/sponsors/sindresorhus" 1907 | } 1908 | }, 1909 | "node_modules/parent-module": { 1910 | "version": "1.0.1", 1911 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1912 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1913 | "dependencies": { 1914 | "callsites": "^3.0.0" 1915 | }, 1916 | "engines": { 1917 | "node": ">=6" 1918 | } 1919 | }, 1920 | "node_modules/parse-json": { 1921 | "version": "5.2.0", 1922 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 1923 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 1924 | "dependencies": { 1925 | "@babel/code-frame": "^7.0.0", 1926 | "error-ex": "^1.3.1", 1927 | "json-parse-even-better-errors": "^2.3.0", 1928 | "lines-and-columns": "^1.1.6" 1929 | }, 1930 | "engines": { 1931 | "node": ">=8" 1932 | }, 1933 | "funding": { 1934 | "url": "https://github.com/sponsors/sindresorhus" 1935 | } 1936 | }, 1937 | "node_modules/path-exists": { 1938 | "version": "4.0.0", 1939 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1940 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1941 | "engines": { 1942 | "node": ">=8" 1943 | } 1944 | }, 1945 | "node_modules/path-is-absolute": { 1946 | "version": "1.0.1", 1947 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1948 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 1949 | "engines": { 1950 | "node": ">=0.10.0" 1951 | } 1952 | }, 1953 | "node_modules/path-key": { 1954 | "version": "3.1.1", 1955 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1956 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1957 | "dev": true, 1958 | "engines": { 1959 | "node": ">=8" 1960 | } 1961 | }, 1962 | "node_modules/path-parse": { 1963 | "version": "1.0.7", 1964 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1965 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1966 | "dev": true 1967 | }, 1968 | "node_modules/path-type": { 1969 | "version": "4.0.0", 1970 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1971 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1972 | "engines": { 1973 | "node": ">=8" 1974 | } 1975 | }, 1976 | "node_modules/picocolors": { 1977 | "version": "1.0.0", 1978 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 1979 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 1980 | }, 1981 | "node_modules/picomatch": { 1982 | "version": "2.3.1", 1983 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1984 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1985 | "engines": { 1986 | "node": ">=8.6" 1987 | }, 1988 | "funding": { 1989 | "url": "https://github.com/sponsors/jonschlinkert" 1990 | } 1991 | }, 1992 | "node_modules/postcss": { 1993 | "version": "8.4.31", 1994 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", 1995 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", 1996 | "funding": [ 1997 | { 1998 | "type": "opencollective", 1999 | "url": "https://opencollective.com/postcss/" 2000 | }, 2001 | { 2002 | "type": "tidelift", 2003 | "url": "https://tidelift.com/funding/github/npm/postcss" 2004 | }, 2005 | { 2006 | "type": "github", 2007 | "url": "https://github.com/sponsors/ai" 2008 | } 2009 | ], 2010 | "dependencies": { 2011 | "nanoid": "^3.3.6", 2012 | "picocolors": "^1.0.0", 2013 | "source-map-js": "^1.0.2" 2014 | }, 2015 | "engines": { 2016 | "node": "^10 || ^12 || >=14" 2017 | } 2018 | }, 2019 | "node_modules/postcss-resolve-nested-selector": { 2020 | "version": "0.1.1", 2021 | "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", 2022 | "integrity": "sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=" 2023 | }, 2024 | "node_modules/postcss-safe-parser": { 2025 | "version": "6.0.0", 2026 | "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", 2027 | "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", 2028 | "engines": { 2029 | "node": ">=12.0" 2030 | }, 2031 | "funding": { 2032 | "type": "opencollective", 2033 | "url": "https://opencollective.com/postcss/" 2034 | }, 2035 | "peerDependencies": { 2036 | "postcss": "^8.3.3" 2037 | } 2038 | }, 2039 | "node_modules/postcss-selector-parser": { 2040 | "version": "6.0.13", 2041 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 2042 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 2043 | "dependencies": { 2044 | "cssesc": "^3.0.0", 2045 | "util-deprecate": "^1.0.2" 2046 | }, 2047 | "engines": { 2048 | "node": ">=4" 2049 | } 2050 | }, 2051 | "node_modules/postcss-value-parser": { 2052 | "version": "4.2.0", 2053 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 2054 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 2055 | }, 2056 | "node_modules/prelude-ls": { 2057 | "version": "1.2.1", 2058 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2059 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2060 | "dev": true, 2061 | "engines": { 2062 | "node": ">= 0.8.0" 2063 | } 2064 | }, 2065 | "node_modules/prettier": { 2066 | "version": "3.0.3", 2067 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", 2068 | "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", 2069 | "dev": true, 2070 | "bin": { 2071 | "prettier": "bin/prettier.cjs" 2072 | }, 2073 | "engines": { 2074 | "node": ">=14" 2075 | }, 2076 | "funding": { 2077 | "url": "https://github.com/prettier/prettier?sponsor=1" 2078 | } 2079 | }, 2080 | "node_modules/prismjs": { 2081 | "version": "1.29.0", 2082 | "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", 2083 | "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", 2084 | "dev": true, 2085 | "engines": { 2086 | "node": ">=6" 2087 | } 2088 | }, 2089 | "node_modules/proto-list": { 2090 | "version": "1.2.4", 2091 | "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", 2092 | "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", 2093 | "dev": true 2094 | }, 2095 | "node_modules/punycode": { 2096 | "version": "2.1.1", 2097 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 2098 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 2099 | "engines": { 2100 | "node": ">=6" 2101 | } 2102 | }, 2103 | "node_modules/queue-microtask": { 2104 | "version": "1.2.3", 2105 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2106 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2107 | "funding": [ 2108 | { 2109 | "type": "github", 2110 | "url": "https://github.com/sponsors/feross" 2111 | }, 2112 | { 2113 | "type": "patreon", 2114 | "url": "https://www.patreon.com/feross" 2115 | }, 2116 | { 2117 | "type": "consulting", 2118 | "url": "https://feross.org/support" 2119 | } 2120 | ] 2121 | }, 2122 | "node_modules/quick-lru": { 2123 | "version": "5.1.1", 2124 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 2125 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 2126 | "engines": { 2127 | "node": ">=10" 2128 | }, 2129 | "funding": { 2130 | "url": "https://github.com/sponsors/sindresorhus" 2131 | } 2132 | }, 2133 | "node_modules/read-pkg": { 2134 | "version": "6.0.0", 2135 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", 2136 | "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", 2137 | "dependencies": { 2138 | "@types/normalize-package-data": "^2.4.0", 2139 | "normalize-package-data": "^3.0.2", 2140 | "parse-json": "^5.2.0", 2141 | "type-fest": "^1.0.1" 2142 | }, 2143 | "engines": { 2144 | "node": ">=12" 2145 | }, 2146 | "funding": { 2147 | "url": "https://github.com/sponsors/sindresorhus" 2148 | } 2149 | }, 2150 | "node_modules/read-pkg-up": { 2151 | "version": "8.0.0", 2152 | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", 2153 | "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", 2154 | "dependencies": { 2155 | "find-up": "^5.0.0", 2156 | "read-pkg": "^6.0.0", 2157 | "type-fest": "^1.0.1" 2158 | }, 2159 | "engines": { 2160 | "node": ">=12" 2161 | }, 2162 | "funding": { 2163 | "url": "https://github.com/sponsors/sindresorhus" 2164 | } 2165 | }, 2166 | "node_modules/read-pkg-up/node_modules/type-fest": { 2167 | "version": "1.4.0", 2168 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", 2169 | "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", 2170 | "engines": { 2171 | "node": ">=10" 2172 | }, 2173 | "funding": { 2174 | "url": "https://github.com/sponsors/sindresorhus" 2175 | } 2176 | }, 2177 | "node_modules/read-pkg/node_modules/type-fest": { 2178 | "version": "1.4.0", 2179 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", 2180 | "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", 2181 | "engines": { 2182 | "node": ">=10" 2183 | }, 2184 | "funding": { 2185 | "url": "https://github.com/sponsors/sindresorhus" 2186 | } 2187 | }, 2188 | "node_modules/rechoir": { 2189 | "version": "0.6.2", 2190 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", 2191 | "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", 2192 | "dev": true, 2193 | "dependencies": { 2194 | "resolve": "^1.1.6" 2195 | }, 2196 | "engines": { 2197 | "node": ">= 0.10" 2198 | } 2199 | }, 2200 | "node_modules/redent": { 2201 | "version": "4.0.0", 2202 | "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", 2203 | "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", 2204 | "dependencies": { 2205 | "indent-string": "^5.0.0", 2206 | "strip-indent": "^4.0.0" 2207 | }, 2208 | "engines": { 2209 | "node": ">=12" 2210 | }, 2211 | "funding": { 2212 | "url": "https://github.com/sponsors/sindresorhus" 2213 | } 2214 | }, 2215 | "node_modules/require-from-string": { 2216 | "version": "2.0.2", 2217 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 2218 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 2219 | "engines": { 2220 | "node": ">=0.10.0" 2221 | } 2222 | }, 2223 | "node_modules/resolve": { 2224 | "version": "1.18.1", 2225 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", 2226 | "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", 2227 | "dev": true, 2228 | "dependencies": { 2229 | "is-core-module": "^2.0.0", 2230 | "path-parse": "^1.0.6" 2231 | }, 2232 | "funding": { 2233 | "url": "https://github.com/sponsors/ljharb" 2234 | } 2235 | }, 2236 | "node_modules/resolve-from": { 2237 | "version": "5.0.0", 2238 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 2239 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 2240 | "engines": { 2241 | "node": ">=8" 2242 | } 2243 | }, 2244 | "node_modules/reusify": { 2245 | "version": "1.0.4", 2246 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2247 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2248 | "engines": { 2249 | "iojs": ">=1.0.0", 2250 | "node": ">=0.10.0" 2251 | } 2252 | }, 2253 | "node_modules/rimraf": { 2254 | "version": "3.0.2", 2255 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2256 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2257 | "dependencies": { 2258 | "glob": "^7.1.3" 2259 | }, 2260 | "bin": { 2261 | "rimraf": "bin.js" 2262 | }, 2263 | "funding": { 2264 | "url": "https://github.com/sponsors/isaacs" 2265 | } 2266 | }, 2267 | "node_modules/run-parallel": { 2268 | "version": "1.2.0", 2269 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2270 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2271 | "funding": [ 2272 | { 2273 | "type": "github", 2274 | "url": "https://github.com/sponsors/feross" 2275 | }, 2276 | { 2277 | "type": "patreon", 2278 | "url": "https://www.patreon.com/feross" 2279 | }, 2280 | { 2281 | "type": "consulting", 2282 | "url": "https://feross.org/support" 2283 | } 2284 | ], 2285 | "dependencies": { 2286 | "queue-microtask": "^1.2.2" 2287 | } 2288 | }, 2289 | "node_modules/semver": { 2290 | "version": "7.5.4", 2291 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2292 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2293 | "dependencies": { 2294 | "lru-cache": "^6.0.0" 2295 | }, 2296 | "bin": { 2297 | "semver": "bin/semver.js" 2298 | }, 2299 | "engines": { 2300 | "node": ">=10" 2301 | } 2302 | }, 2303 | "node_modules/shebang-command": { 2304 | "version": "2.0.0", 2305 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2306 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2307 | "dev": true, 2308 | "dependencies": { 2309 | "shebang-regex": "^3.0.0" 2310 | }, 2311 | "engines": { 2312 | "node": ">=8" 2313 | } 2314 | }, 2315 | "node_modules/shebang-regex": { 2316 | "version": "3.0.0", 2317 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2318 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2319 | "dev": true, 2320 | "engines": { 2321 | "node": ">=8" 2322 | } 2323 | }, 2324 | "node_modules/shelljs": { 2325 | "version": "0.8.5", 2326 | "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", 2327 | "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", 2328 | "dev": true, 2329 | "dependencies": { 2330 | "glob": "^7.0.0", 2331 | "interpret": "^1.0.0", 2332 | "rechoir": "^0.6.2" 2333 | }, 2334 | "bin": { 2335 | "shjs": "bin/shjs" 2336 | }, 2337 | "engines": { 2338 | "node": ">=4" 2339 | } 2340 | }, 2341 | "node_modules/shx": { 2342 | "version": "0.3.4", 2343 | "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", 2344 | "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", 2345 | "dev": true, 2346 | "dependencies": { 2347 | "minimist": "^1.2.3", 2348 | "shelljs": "^0.8.5" 2349 | }, 2350 | "bin": { 2351 | "shx": "lib/cli.js" 2352 | }, 2353 | "engines": { 2354 | "node": ">=6" 2355 | } 2356 | }, 2357 | "node_modules/signal-exit": { 2358 | "version": "4.1.0", 2359 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2360 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2361 | "engines": { 2362 | "node": ">=14" 2363 | }, 2364 | "funding": { 2365 | "url": "https://github.com/sponsors/isaacs" 2366 | } 2367 | }, 2368 | "node_modules/slash": { 2369 | "version": "3.0.0", 2370 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2371 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2372 | "engines": { 2373 | "node": ">=8" 2374 | } 2375 | }, 2376 | "node_modules/slice-ansi": { 2377 | "version": "4.0.0", 2378 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", 2379 | "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", 2380 | "dependencies": { 2381 | "ansi-styles": "^4.0.0", 2382 | "astral-regex": "^2.0.0", 2383 | "is-fullwidth-code-point": "^3.0.0" 2384 | }, 2385 | "engines": { 2386 | "node": ">=10" 2387 | }, 2388 | "funding": { 2389 | "url": "https://github.com/chalk/slice-ansi?sponsor=1" 2390 | } 2391 | }, 2392 | "node_modules/source-map-js": { 2393 | "version": "1.0.2", 2394 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 2395 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 2396 | "engines": { 2397 | "node": ">=0.10.0" 2398 | } 2399 | }, 2400 | "node_modules/spdx-correct": { 2401 | "version": "3.2.0", 2402 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 2403 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 2404 | "dependencies": { 2405 | "spdx-expression-parse": "^3.0.0", 2406 | "spdx-license-ids": "^3.0.0" 2407 | } 2408 | }, 2409 | "node_modules/spdx-exceptions": { 2410 | "version": "2.3.0", 2411 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", 2412 | "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" 2413 | }, 2414 | "node_modules/spdx-expression-parse": { 2415 | "version": "3.0.1", 2416 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 2417 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 2418 | "dependencies": { 2419 | "spdx-exceptions": "^2.1.0", 2420 | "spdx-license-ids": "^3.0.0" 2421 | } 2422 | }, 2423 | "node_modules/spdx-license-ids": { 2424 | "version": "3.0.15", 2425 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", 2426 | "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==" 2427 | }, 2428 | "node_modules/string-width": { 2429 | "version": "4.2.3", 2430 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2431 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2432 | "dependencies": { 2433 | "emoji-regex": "^8.0.0", 2434 | "is-fullwidth-code-point": "^3.0.0", 2435 | "strip-ansi": "^6.0.1" 2436 | }, 2437 | "engines": { 2438 | "node": ">=8" 2439 | } 2440 | }, 2441 | "node_modules/strip-ansi": { 2442 | "version": "6.0.1", 2443 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2444 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2445 | "dependencies": { 2446 | "ansi-regex": "^5.0.1" 2447 | }, 2448 | "engines": { 2449 | "node": ">=8" 2450 | } 2451 | }, 2452 | "node_modules/strip-indent": { 2453 | "version": "4.0.0", 2454 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", 2455 | "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", 2456 | "dependencies": { 2457 | "min-indent": "^1.0.1" 2458 | }, 2459 | "engines": { 2460 | "node": ">=12" 2461 | }, 2462 | "funding": { 2463 | "url": "https://github.com/sponsors/sindresorhus" 2464 | } 2465 | }, 2466 | "node_modules/strip-json-comments": { 2467 | "version": "3.1.1", 2468 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2469 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2470 | "dev": true, 2471 | "engines": { 2472 | "node": ">=8" 2473 | }, 2474 | "funding": { 2475 | "url": "https://github.com/sponsors/sindresorhus" 2476 | } 2477 | }, 2478 | "node_modules/style-search": { 2479 | "version": "0.1.0", 2480 | "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", 2481 | "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=" 2482 | }, 2483 | "node_modules/stylelint": { 2484 | "version": "15.10.3", 2485 | "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz", 2486 | "integrity": "sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==", 2487 | "dependencies": { 2488 | "@csstools/css-parser-algorithms": "^2.3.1", 2489 | "@csstools/css-tokenizer": "^2.2.0", 2490 | "@csstools/media-query-list-parser": "^2.1.4", 2491 | "@csstools/selector-specificity": "^3.0.0", 2492 | "balanced-match": "^2.0.0", 2493 | "colord": "^2.9.3", 2494 | "cosmiconfig": "^8.2.0", 2495 | "css-functions-list": "^3.2.0", 2496 | "css-tree": "^2.3.1", 2497 | "debug": "^4.3.4", 2498 | "fast-glob": "^3.3.1", 2499 | "fastest-levenshtein": "^1.0.16", 2500 | "file-entry-cache": "^6.0.1", 2501 | "global-modules": "^2.0.0", 2502 | "globby": "^11.1.0", 2503 | "globjoin": "^0.1.4", 2504 | "html-tags": "^3.3.1", 2505 | "ignore": "^5.2.4", 2506 | "import-lazy": "^4.0.0", 2507 | "imurmurhash": "^0.1.4", 2508 | "is-plain-object": "^5.0.0", 2509 | "known-css-properties": "^0.28.0", 2510 | "mathml-tag-names": "^2.1.3", 2511 | "meow": "^10.1.5", 2512 | "micromatch": "^4.0.5", 2513 | "normalize-path": "^3.0.0", 2514 | "picocolors": "^1.0.0", 2515 | "postcss": "^8.4.27", 2516 | "postcss-resolve-nested-selector": "^0.1.1", 2517 | "postcss-safe-parser": "^6.0.0", 2518 | "postcss-selector-parser": "^6.0.13", 2519 | "postcss-value-parser": "^4.2.0", 2520 | "resolve-from": "^5.0.0", 2521 | "string-width": "^4.2.3", 2522 | "strip-ansi": "^6.0.1", 2523 | "style-search": "^0.1.0", 2524 | "supports-hyperlinks": "^3.0.0", 2525 | "svg-tags": "^1.0.0", 2526 | "table": "^6.8.1", 2527 | "write-file-atomic": "^5.0.1" 2528 | }, 2529 | "bin": { 2530 | "stylelint": "bin/stylelint.mjs" 2531 | }, 2532 | "engines": { 2533 | "node": "^14.13.1 || >=16.0.0" 2534 | }, 2535 | "funding": { 2536 | "type": "opencollective", 2537 | "url": "https://opencollective.com/stylelint" 2538 | } 2539 | }, 2540 | "node_modules/stylelint-csstree-validator": { 2541 | "version": "3.0.0", 2542 | "resolved": "https://registry.npmjs.org/stylelint-csstree-validator/-/stylelint-csstree-validator-3.0.0.tgz", 2543 | "integrity": "sha512-/CPYhwchWZbyZK2LVGKvt1ivISYZyRSRhrY4cMArlwYh1DxwygubR0nBv+5upuX23j1qBfJWdv6xx9dsUZF+OA==", 2544 | "dev": true, 2545 | "dependencies": { 2546 | "css-tree": "^2.3.1" 2547 | }, 2548 | "engines": { 2549 | "node": "^14.13.0 || >=15.0.0", 2550 | "npm": ">=7.0.0" 2551 | }, 2552 | "peerDependencies": { 2553 | "stylelint": ">=7.0.0 <16.0.0" 2554 | } 2555 | }, 2556 | "node_modules/stylelint/node_modules/balanced-match": { 2557 | "version": "2.0.0", 2558 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", 2559 | "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==" 2560 | }, 2561 | "node_modules/supports-color": { 2562 | "version": "7.2.0", 2563 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2564 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2565 | "dependencies": { 2566 | "has-flag": "^4.0.0" 2567 | }, 2568 | "engines": { 2569 | "node": ">=8" 2570 | } 2571 | }, 2572 | "node_modules/supports-hyperlinks": { 2573 | "version": "3.0.0", 2574 | "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", 2575 | "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", 2576 | "dependencies": { 2577 | "has-flag": "^4.0.0", 2578 | "supports-color": "^7.0.0" 2579 | }, 2580 | "engines": { 2581 | "node": ">=14.18" 2582 | } 2583 | }, 2584 | "node_modules/svg-tags": { 2585 | "version": "1.0.0", 2586 | "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", 2587 | "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=" 2588 | }, 2589 | "node_modules/table": { 2590 | "version": "6.8.1", 2591 | "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", 2592 | "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", 2593 | "dependencies": { 2594 | "ajv": "^8.0.1", 2595 | "lodash.truncate": "^4.4.2", 2596 | "slice-ansi": "^4.0.0", 2597 | "string-width": "^4.2.3", 2598 | "strip-ansi": "^6.0.1" 2599 | }, 2600 | "engines": { 2601 | "node": ">=10.0.0" 2602 | } 2603 | }, 2604 | "node_modules/table/node_modules/ajv": { 2605 | "version": "8.12.0", 2606 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", 2607 | "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", 2608 | "dependencies": { 2609 | "fast-deep-equal": "^3.1.1", 2610 | "json-schema-traverse": "^1.0.0", 2611 | "require-from-string": "^2.0.2", 2612 | "uri-js": "^4.2.2" 2613 | }, 2614 | "funding": { 2615 | "type": "github", 2616 | "url": "https://github.com/sponsors/epoberezkin" 2617 | } 2618 | }, 2619 | "node_modules/table/node_modules/json-schema-traverse": { 2620 | "version": "1.0.0", 2621 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 2622 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" 2623 | }, 2624 | "node_modules/text-table": { 2625 | "version": "0.2.0", 2626 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2627 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", 2628 | "dev": true 2629 | }, 2630 | "node_modules/to-regex-range": { 2631 | "version": "5.0.1", 2632 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2633 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2634 | "dependencies": { 2635 | "is-number": "^7.0.0" 2636 | }, 2637 | "engines": { 2638 | "node": ">=8.0" 2639 | } 2640 | }, 2641 | "node_modules/trim-newlines": { 2642 | "version": "4.1.1", 2643 | "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", 2644 | "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", 2645 | "engines": { 2646 | "node": ">=12" 2647 | }, 2648 | "funding": { 2649 | "url": "https://github.com/sponsors/sindresorhus" 2650 | } 2651 | }, 2652 | "node_modules/type-check": { 2653 | "version": "0.4.0", 2654 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2655 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2656 | "dev": true, 2657 | "dependencies": { 2658 | "prelude-ls": "^1.2.1" 2659 | }, 2660 | "engines": { 2661 | "node": ">= 0.8.0" 2662 | } 2663 | }, 2664 | "node_modules/type-fest": { 2665 | "version": "0.20.2", 2666 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2667 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2668 | "dev": true, 2669 | "engines": { 2670 | "node": ">=10" 2671 | }, 2672 | "funding": { 2673 | "url": "https://github.com/sponsors/sindresorhus" 2674 | } 2675 | }, 2676 | "node_modules/uri-js": { 2677 | "version": "4.4.0", 2678 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", 2679 | "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", 2680 | "dependencies": { 2681 | "punycode": "^2.1.0" 2682 | } 2683 | }, 2684 | "node_modules/util-deprecate": { 2685 | "version": "1.0.2", 2686 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2687 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 2688 | }, 2689 | "node_modules/validate-npm-package-license": { 2690 | "version": "3.0.4", 2691 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 2692 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 2693 | "dependencies": { 2694 | "spdx-correct": "^3.0.0", 2695 | "spdx-expression-parse": "^3.0.0" 2696 | } 2697 | }, 2698 | "node_modules/which": { 2699 | "version": "1.3.1", 2700 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2701 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2702 | "dependencies": { 2703 | "isexe": "^2.0.0" 2704 | }, 2705 | "bin": { 2706 | "which": "bin/which" 2707 | } 2708 | }, 2709 | "node_modules/wrappy": { 2710 | "version": "1.0.2", 2711 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2712 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 2713 | }, 2714 | "node_modules/write-file-atomic": { 2715 | "version": "5.0.1", 2716 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", 2717 | "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", 2718 | "dependencies": { 2719 | "imurmurhash": "^0.1.4", 2720 | "signal-exit": "^4.0.1" 2721 | }, 2722 | "engines": { 2723 | "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 2724 | } 2725 | }, 2726 | "node_modules/yallist": { 2727 | "version": "4.0.0", 2728 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2729 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 2730 | }, 2731 | "node_modules/yargs-parser": { 2732 | "version": "20.2.9", 2733 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 2734 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 2735 | "engines": { 2736 | "node": ">=10" 2737 | } 2738 | }, 2739 | "node_modules/yocto-queue": { 2740 | "version": "0.1.0", 2741 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2742 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2743 | "engines": { 2744 | "node": ">=10" 2745 | }, 2746 | "funding": { 2747 | "url": "https://github.com/sponsors/sindresorhus" 2748 | } 2749 | } 2750 | } 2751 | } 2752 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "service-worker-detector", 3 | "version": "2.4.1", 4 | "description": "This extension detects if a website registers a Service Worker.", 5 | "main": "background.js", 6 | "scripts": { 7 | "copy": "shx rm -rf ./third_party && shx mkdir ./third_party && shx cp ./node_modules/js-beautify/js/lib/beautifier.min.js ./third_party/ && shx cp ./node_modules/prismjs/prism.js ./third_party/ && shx cp ./node_modules/prismjs/themes/prism.css ./third_party/ && shx cp ./node_modules/esprima/dist/esprima.js ./third_party/", 8 | "fix": "npx prettier --write .", 9 | "lint": "npx eslint . --fix && npx stylelint \"**/*.css\"", 10 | "prepare": "npm run copy && npm run fix && npm run lint", 11 | "safari": "xcrun safari-web-extension-converter . --project-location ../safari-extensions/service-worker-detector --copy-resources --swift --force --bundle-identifier com.google.googlechromelabs.service-worker-detector" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/google/service-worker-detector.git" 16 | }, 17 | "author": "Thomas Steiner (http://blog.tomayac.com/)", 18 | "license": "Apache-2.0", 19 | "bugs": { 20 | "url": "https://github.com/google/service-worker-detector/issues" 21 | }, 22 | "homepage": "https://github.com/google/service-worker-detector#readme", 23 | "devDependencies": { 24 | "eslint": "^8.50.0", 25 | "eslint-config-google": "^0.14.0", 26 | "eslint-config-prettier": "^9.0.0", 27 | "esprima": "^4.0.1", 28 | "js-beautify": "^1.14.9", 29 | "prettier": "^3.0.3", 30 | "prismjs": "^1.29.0", 31 | "shx": "^0.3.4", 32 | "stylelint-csstree-validator": "^3.0.0" 33 | }, 34 | "eslintConfig": { 35 | "parserOptions": { 36 | "ecmaVersion": 2020, 37 | "sourceType": "module" 38 | }, 39 | "extends": [ 40 | "google", 41 | "prettier" 42 | ] 43 | }, 44 | "stylelint": { 45 | "plugins": [ 46 | "stylelint-csstree-validator" 47 | ], 48 | "rules": { 49 | "csstree/validator": true 50 | } 51 | }, 52 | "dependencies": { 53 | "stylelint": "^15.10.3" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Service Worker Detector 5 | 6 | 7 | 8 | 9 | 10 |
⏳👷 Parsing Service Worker Script…
11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2017 Google Inc. All rights reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | window.browser = window.browser || window.chrome; 18 | 19 | const beautifyCode = (source) => { 20 | const beautified = window.beautifier.js(source, { 21 | indent_size: 2, 22 | no_preserve_newlines: true, 23 | wrap_line_length: 80, 24 | end_with_newline: true, 25 | }); 26 | return Prism.highlight(beautified, Prism.languages.javascript); 27 | }; 28 | 29 | const parseManifest = (manifest, baseUrl) => { 30 | const clusters = [ 31 | { 32 | name: "Identity", 33 | members: [ 34 | { key: "name", name: "Name" }, 35 | { key: "short_name", name: "Short Name" }, 36 | { key: "description", name: "Description" }, 37 | ], 38 | }, 39 | { 40 | name: "Presentation", 41 | members: [ 42 | { key: "start_url", name: "Start URL" }, 43 | { key: "scope", name: "Scope" }, 44 | { key: "theme_color", name: "Theme Color" }, 45 | { key: "background_color", name: "Background Color" }, 46 | { key: "orientation", name: "Orientation" }, 47 | { key: "display", name: "Display" }, 48 | { key: "lang", name: "Language" }, 49 | { key: "dir", name: "Direction" }, 50 | { key: "iarc_rating_id", name: "IARC Rating ID" }, 51 | { key: "categories", name: "Categories" }, 52 | ], 53 | }, 54 | { 55 | name: "Icons", 56 | members: [{ key: "icons", name: "Icons" }], 57 | }, 58 | { 59 | name: "Screenshots", 60 | members: [{ key: "screenshots", name: "Screenshots" }], 61 | }, 62 | { 63 | name: "Related Applications", 64 | members: [ 65 | { 66 | key: "prefer_related_applications", 67 | name: "Prefer Related Applications", 68 | }, 69 | { 70 | key: "related_applications", 71 | name: "Related Applications", 72 | submembers: [ 73 | { key: "min_version", name: "Minimum Version" }, 74 | { key: "fingerprints", name: "Fingerprints" }, 75 | ], 76 | }, 77 | ], 78 | }, 79 | { 80 | name: "Google Cloud Messaging (GCM)", 81 | members: [ 82 | { key: "gcm_sender_id", name: "GCM Sender ID" }, 83 | { key: "gcm_user_visible_only", name: "GCM User Visible Only" }, 84 | ], 85 | }, 86 | { 87 | name: "Web Share", 88 | members: [ 89 | { key: "share_target", name: "Share Target" }, 90 | { key: "supports_share", name: "Supports Share" }, 91 | ], 92 | }, 93 | { 94 | name: "Service Worker", 95 | members: [ 96 | { 97 | key: "serviceworker", 98 | name: "Service Worker", 99 | submembers: [ 100 | { key: "src", name: "Source" }, 101 | { key: "scope", name: "Scope" }, 102 | { key: "type", name: "Type" }, 103 | { key: "use_cache", name: "Use Cache" }, 104 | ], 105 | }, 106 | ], 107 | }, 108 | ]; 109 | 110 | // Helper function to get absolute URLs 111 | const absoluteUrl = (urlString) => { 112 | if (!urlString) { 113 | return false; 114 | } 115 | let url; 116 | try { 117 | url = new URL(urlString, baseUrl); 118 | } catch (e) { 119 | return false; 120 | } 121 | return url.toString(); 122 | }; 123 | 124 | // Helper function to get SVG 125 | const getRect = (fill) => { 126 | return ` 127 | 129 | 131 | `; 132 | }; 133 | 134 | let lastSize; 135 | const manifestHtml = []; 136 | clusters.forEach((cluster) => { 137 | manifestHtml.push(` 138 | 139 | ${cluster.name} 140 | `); 141 | lastSize = manifestHtml.length; 142 | cluster.members.forEach((key) => { 143 | const keyName = key.name; 144 | const keyId = key.key; 145 | const submembers = key.submembers || null; 146 | if (/_color$/.test(keyId) && manifest[keyId]) { 147 | manifestHtml.push(` 148 | 149 | ${keyName} 150 | ${getRect(manifest[keyId])} ${manifest[keyId]} 151 | `); 152 | } else if ( 153 | (/^icons$/.test(keyId) || /^screenshots/.test(keyId)) && 154 | manifest[keyId] && 155 | Array.isArray(manifest[keyId]) 156 | ) { 157 | // Sort icons by increasing size 158 | manifest[keyId] 159 | .sort((a, b) => { 160 | return ( 161 | parseInt(a.sizes.split(" ")[0].split(/x/i)[0], 10) - 162 | parseInt(b.sizes.split(" ")[0].split(/x/i)[0], 10) 163 | ); 164 | }) 165 | .forEach((icon) => { 166 | const src = absoluteUrl(icon.src); 167 | let width; 168 | let height; 169 | const sizesNotSpecified = /any/.test(icon.sizes); 170 | if (sizesNotSpecified) { 171 | width = 64; 172 | height = "auto"; 173 | } else { 174 | const firstSize = icon.sizes.split(" ")[0].split(/x/i); 175 | width = firstSize[0]; 176 | height = firstSize[1] || ""; 177 | } 178 | const type = icon.type || ""; 179 | if (sizesNotSpecified) { 180 | manifestHtml.push(` 181 | 182 | any 183 | 184 | 187 | 188 | `); 189 | } else { 190 | manifestHtml.push(` 191 | 192 | ${width}x${height} 193 | 194 | 197 | 198 | `); 199 | } 200 | }); 201 | } else if ( 202 | (/^scope$/.test(keyId) || /^start_url$/.test(keyId)) && 203 | manifest[keyId] 204 | ) { 205 | manifest[keyId] = absoluteUrl(manifest[keyId]); 206 | manifestHtml.push(` 207 | 208 | ${keyName} 209 | 210 | 211 | ${manifest[keyId]} 212 | 213 | 214 | `); 215 | } else if ( 216 | /^categories$/.test(keyId) && 217 | manifest[keyId] && 218 | Array.isArray(manifest[keyId]) 219 | ) { 220 | manifestHtml.push(` 221 | 222 | ${keyName} 223 | ${manifest[keyId].join(", ")} 224 | `); 225 | } else if ( 226 | /^prefer_related_applications$/.test(keyId) && 227 | typeof manifest[keyId] === "boolean" 228 | ) { 229 | manifestHtml.push(` 230 | 231 | ${keyName} 232 | ${manifest[keyId] === true ? "true" : "false"} 233 | `); 234 | } else if ( 235 | /^related_applications$/.test(keyId) && 236 | manifest[keyId] && 237 | Array.isArray(manifest[keyId]) 238 | ) { 239 | manifest[keyId].forEach((relatedApplication) => { 240 | const platform = relatedApplication.platform; 241 | if (!platform) { 242 | return; 243 | } 244 | const url = absoluteUrl(relatedApplication.url); 245 | const id = relatedApplication.id || ""; 246 | if (!url && !id) { 247 | return; 248 | } 249 | const values = { 250 | min_version: relatedApplication.min_version || "", 251 | fingerprints: relatedApplication.fingerprints || "", 252 | }; 253 | if (url) { 254 | manifestHtml.push(` 255 | 256 | ${platform} 257 | 258 | ${url} 259 | ${submembers 260 | .map((submember) => { 261 | if (values[submember.key]) { 262 | return ` 263 |
264 | 265 | ${submember.name}: 266 | ${ 267 | submember.key === "fingerprints" 268 | ? values[submember.key] 269 | .map((fingerprint) => { 270 | return ` 271 |
272 | ${fingerprint.value} 273 | (${fingerprint.type}) 274 |
`; 275 | }) 276 | .join("") 277 | : values[submember.key] 278 | } 279 |
280 |
`; 281 | } 282 | }) 283 | .join("")} 284 | 285 | `); 286 | } else { 287 | manifestHtml.push(` 288 | 289 | ${platform} 290 | ${id} 291 | `); 292 | } 293 | }); 294 | } else if ( 295 | /^supports_share$/.test(keyId) && 296 | typeof manifest[keyId] === "boolean" 297 | ) { 298 | manifestHtml.push(` 299 | 300 | ${keyName} 301 | ${manifest[keyId] === true ? "true" : "false"} 302 | `); 303 | } else if ( 304 | /^share_target$/.test(keyId) && 305 | typeof manifest[keyId] === "object" 306 | ) { 307 | manifestHtml.push(` 308 | 309 | ${keyName} 310 | 311 |
${beautifyCode(
312 |                   JSON.stringify(manifest[keyId]),
313 |                 )}
314 | 315 | `); 316 | } else if ( 317 | /^serviceworker$/.test(keyId) && 318 | typeof manifest[keyId] === "object" 319 | ) { 320 | const serviceworker = manifest[keyId]; 321 | const values = { 322 | src: serviceworker.src 323 | ? ` 324 | ${serviceworker.src}` 325 | : "", 326 | scope: serviceworker.scope 327 | ? ` 328 | ${serviceworker.scope}` 329 | : "", 330 | type: serviceworker.type || "", 331 | use_cache: 332 | typeof serviceworker.use_cache === "boolean" 333 | ? serviceworker.use_cache.toString() 334 | : "", 335 | }; 336 | submembers.forEach((submember) => { 337 | if (values[submember.key]) { 338 | manifestHtml.push(` 339 | 340 | ${submember.name} 341 | ${values[submember.key]} 342 | `); 343 | } 344 | }); 345 | } else if (manifest[keyId] !== undefined) { 346 | manifestHtml.push(` 347 | 348 | ${keyName} 349 | ${manifest[keyId]} 350 | `); 351 | } 352 | }); 353 | // If the current cluster has no members, remove its header 354 | if (lastSize === manifestHtml.length) { 355 | manifestHtml.pop(); 356 | } 357 | }); 358 | return manifestHtml.join("\n"); 359 | }; 360 | 361 | const getServiceWorkerHtml = ( 362 | state, 363 | relativeScopeUrl, 364 | relativeScriptUrl, 365 | result, 366 | ) => { 367 | let beautifiedCode = beautifyCode(result.source); 368 | for (importedScriptUrl in result.importedScripts) { 369 | if ( 370 | !Object.prototype.hasOwnProperty.call( 371 | result.importedScripts, 372 | importedScriptUrl, 373 | ) 374 | ) { 375 | continue; 376 | } 377 | // From https://github.com/benjamingr/RegExp.escape/blob/master/polyfill.js 378 | let regExpUrl = importedScriptUrl.replace(/[\\^$*+?.()|[\]{}]/g, "\\$&"); 379 | // Deal with potentially escaped forward slashes 380 | regExpUrl = regExpUrl.replace(/\//g, "\\\\?/"); 381 | /* eslint-disable max-len */ 382 | const regExp = new RegExp( 383 | `(importScripts[\\s\\S]*?\\([\\s\\S]*?)(["'])${regExpUrl}["']`, 384 | "g", 385 | ); 386 | /* eslint-enable max-len */ 387 | const code = beautifyCode(result.importedScripts[importedScriptUrl]); 388 | beautifiedCode = beautifiedCode.replace( 389 | regExp, 390 | /* eslint-disable max-len */ 391 | // Can't have new lines here as the syntax highlighter chokes on them 392 | `$1
$2${importedScriptUrl}$2
${code}
`, 393 | ); 394 | /* eslint-enable max-len */ 395 | } 396 | return ` 397 |
398 | 👷 Service Worker 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 416 | 421 | 426 | 440 | 441 | 442 | 443 | 444 | 455 | 456 | 457 | 460 | 461 | 462 |
StateScopeScript URLEvents
${ 411 | result.state === "activated" 412 | ? `\u2705\u00A0\u00A0${state}` 413 | : `\u274C\u00A0\u00A0${state}` 414 | } 415 | 417 | 418 | ${relativeScopeUrl} 419 | 420 | 422 | 423 | ${relativeScriptUrl} 424 | 425 | 427 |
    428 | ${result.events 429 | .sort() 430 | .map((event) => { 431 | return ` 432 |
  • 433 | 434 | 435 |
  • `; 436 | }) 437 | .join("\n")} 438 |
439 |
445 | Service Worker Code (beautified) 446 | 447 | 453 | 454 |
458 |
${beautifiedCode}
459 |
463 |
`; 464 | }; 465 | 466 | const getManifestHtml = (result, baseUrl) => { 467 | return ` 468 |
469 | 📃 Web Manifest 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 483 | 484 | ${parseManifest(result.manifest, baseUrl)} 485 | 486 |
Manifest URL
479 | 480 | ${result.manifestUrl} 481 | 482 |
487 |
`; 488 | }; 489 | 490 | const getCacheHtml = (cacheContents) => { 491 | let html = ` 492 |
493 | 🛢 Cache Storage 494 |
`; 495 | const columnNames = ["mime", "method", "url", "type"]; 496 | let first = true; 497 | for (const cacheName in cacheContents) { 498 | if (!cacheContents.hasOwnProperty(cacheName)) { 499 | continue; 500 | } 501 | html += ` 502 | 503 | Cache 504 | "${cacheName}" 505 | 506 |
507 | 508 | 509 | ${columnNames 510 | .map((columnName) => { 511 | return ` 512 | `; 519 | }) 520 | .join("\n")} 521 | 522 | 523 | ${cacheContents[cacheName] 524 | .sort((a, b) => { 525 | if (a.mime < b.mime) { 526 | return -1; 527 | } 528 | if (a.mime > b.mime) { 529 | return 1; 530 | } 531 | return 0; 532 | }) 533 | .map((cacheEntry) => { 534 | const url = cacheEntry.url; 535 | const contentType = cacheEntry.mime; 536 | return ` 537 | 538 | ${columnNames 539 | .map((columnName) => { 540 | if (columnName === "url") { 541 | return ` 542 | `; 545 | } else if (columnName === "mime") { 546 | if (/^image\//.test(contentType)) { 547 | return ` 548 | `; 555 | } else if (/^text\/css$/.test(contentType)) { 556 | return ` 557 | `; 560 | } else if (/^audio\//.test(contentType)) { 561 | return ` 562 | `; 565 | } else if (/^video\//.test(contentType)) { 566 | return ` 567 | `; 570 | } else if (/\/.*?javascript/.test(contentType)) { 571 | return ` 572 | `; 575 | } else if (/^text\/html/.test(contentType)) { 576 | return ` 577 | `; 580 | } else if ( 581 | /^application\/.*?font/.test(contentType) 582 | ) { 583 | return ` 584 | `; 587 | } else if (/\/json/.test(contentType)) { 588 | return ` 589 | `; 592 | } else if ( 593 | /application\/manifest\+json/.test(contentType) 594 | ) { 595 | return ` 596 | `; 599 | } else { 600 | return ` 601 | `; 604 | } 605 | } else { 606 | return ` 607 | `; 610 | } 611 | }) 612 | .join("\n")} 613 | `; 614 | }) 615 | .join("\n")} 616 | 617 |
${ 513 | columnName === "url" || columnName === "mime" 514 | ? columnName.toUpperCase() 515 | : columnName.charAt(0).toUpperCase() + 516 | columnName.slice(1) 517 | } 518 |
543 | ${url} 544 | 549 | 550 | ${url} 553 | 554 | 558 | 🖌 559 | 563 | 🔈 564 | 568 | 📹 569 | 573 | 📝 574 | 578 | 📄 579 | 585 | 🔡 586 | 590 | 🔖 591 | 597 | 📃 598 | 602 | 603 | 608 | ${cacheEntry[columnName]} 609 |
618 |
619 |
`; 620 | first = false; 621 | } 622 | html += ` 623 | 624 | `; 625 | return html; 626 | }; 627 | 628 | const renderHtml = (state, scope, relativeScriptUrl, result) => { 629 | result.events = Object.keys(result.events); 630 | let html = getServiceWorkerHtml(state, scope, relativeScriptUrl, result); 631 | if (result.manifest) { 632 | const baseUrl = result.manifestUrl.substring( 633 | 0, 634 | result.manifestUrl.lastIndexOf("/") + 1, 635 | ); 636 | html += getManifestHtml(result, baseUrl); 637 | } 638 | if (result.cacheContents && Object.keys(result.cacheContents).length) { 639 | html += getCacheHtml(result.cacheContents); 640 | } 641 | const container = document.querySelector("#container"); 642 | container.innerHTML = html; 643 | 644 | // Allow changing the font size 645 | const fontSize = document.querySelector("#font-size"); 646 | const pre = document.querySelector("#sw-code"); 647 | fontSize.addEventListener("input", (inputEvent) => { 648 | pre.style.fontSize = `${parseInt(fontSize.value, 10) / 100}rem`; 649 | }); 650 | 651 | // Highlight the Service Worker events in the code 652 | const events = document.querySelector("#events"); 653 | const code = pre.querySelector("code"); 654 | events.addEventListener("click", (clickEvent) => { 655 | const target = clickEvent.target; 656 | let input; 657 | if (target.nodeName === "LABEL") { 658 | input = events.querySelector(`#${target.getAttribute("for")}`); 659 | } else if (target.nodeName === "INPUT") { 660 | input = target; 661 | } else { 662 | return; 663 | } 664 | // Find addEventlistener('$event') style events 665 | const tokenStrings = code.querySelectorAll( 666 | "span.token.string", 667 | "span.token.string.highlight", 668 | ); 669 | tokenStrings.forEach((tokenString) => { 670 | if ( 671 | tokenString.textContent !== `'${input.id}'` && 672 | tokenString.textContent !== `"${input.id}"` 673 | ) { 674 | return; 675 | } 676 | if (input.checked) { 677 | tokenString.classList.add("highlight"); 678 | tokenString.scrollIntoViewIfNeeded(); 679 | } else { 680 | tokenString.classList.remove("highlight"); 681 | } 682 | }); 683 | // Find on$Event style events 684 | const walker = document.createTreeWalker( 685 | code, 686 | NodeFilter.SHOW_TEXT, 687 | null, 688 | false, 689 | ); 690 | let node; 691 | while ((node = walker.nextNode())) { 692 | if (new RegExp(`on${input.id}`).test(node.textContent.trim())) { 693 | const previousSibling = node.previousSibling; 694 | const nextSibling = node.nextSibling; 695 | if (input.checked) { 696 | previousSibling.classList.add("highlight"); 697 | nextSibling.classList.add("highlight"); 698 | previousSibling.scrollIntoViewIfNeeded(); 699 | } else { 700 | previousSibling.classList.remove("highlight"); 701 | nextSibling.classList.remove("highlight"); 702 | } 703 | return; 704 | } 705 | } 706 | }); 707 | }; 708 | 709 | browser.tabs.query({ active: true, currentWindow: true }, (tabs) => { 710 | const currentTab = tabs[0]; 711 | browser.tabs.sendMessage( 712 | currentTab.id, 713 | { type: "getServiceWorker" }, 714 | (result) => { 715 | if (!result.scriptUrl || !result.state) { 716 | return; 717 | } 718 | const scriptUrl = new URL(result.scriptUrl); 719 | const relativeScriptUrl = `${scriptUrl.pathname}${scriptUrl.search}`; 720 | const scopeUrl = new URL(result.scope); 721 | const relativeScopeUrl = `${scopeUrl.pathname}${scopeUrl.search}`; 722 | const state = 723 | result.state.charAt(0).toUpperCase() + result.state.slice(1); 724 | // Find importScripts statements 725 | let importedScriptsPromises = []; 726 | const importedScriptsUrls = []; 727 | result.events = {}; 728 | try { 729 | esprima.parse(result.source, {}, (node) => { 730 | if ( 731 | (node.type === "CallExpression" && 732 | node.callee.type === "Identifier" && 733 | node.callee.name === "importScripts" && 734 | node.arguments && 735 | Array.isArray(node.arguments)) || 736 | (node.type === "CallExpression" && 737 | node.callee.type === "MemberExpression" && 738 | node.callee.object.type === "Identifier" && 739 | node.callee.object.name === "self" && 740 | node.callee.property.type === "Identifier" && 741 | node.callee.property.name === "importScripts") 742 | ) { 743 | importedScriptsPromises = importedScriptsPromises.concat( 744 | node.arguments.map((arg) => { 745 | // This means ```importScripts(variable)``` rather than 746 | // ```importScripts('https://example.org/sw.js')``` 747 | if (arg.type !== "Literal") { 748 | return Promise.resolve(""); 749 | } 750 | const importedScriptsUrl = arg.value.replace(/\\\//g, "/"); 751 | importedScriptsUrls.push(importedScriptsUrl); 752 | return ( 753 | fetch(new URL(importedScriptsUrl, result.scriptUrl), { 754 | credentials: "include", 755 | }) 756 | .then((response) => { 757 | if (response.ok) { 758 | return response.text(); 759 | } 760 | throw Error(`Couldn't load ${arg.value}`); 761 | }) 762 | // Fail gracefully if the linked script can't be loaded 763 | .catch((e) => "") 764 | ); 765 | }), 766 | ); 767 | } 768 | }); 769 | } catch (parseError) { 770 | result.source = JSON.stringify(parseError, null, 2); 771 | return renderHtml(state, relativeScopeUrl, relativeScriptUrl, result); 772 | } 773 | Promise.all(importedScriptsPromises) 774 | .then((importedScriptsSources) => { 775 | const importedScripts = {}; 776 | importedScriptsSources.map((script, i) => { 777 | // Make sure trailing source map comments don't cause issues 778 | importedScripts[ 779 | importedScriptsUrls[i] 780 | ] = `${importedScriptsSources[i]}\n`; 781 | }); 782 | result.importedScripts = importedScripts; 783 | return result; 784 | }) 785 | .then(() => { 786 | // Some events may be hidden in imported scripts, so analyze them, too 787 | const jointSources = 788 | Object.keys(result.importedScripts) 789 | .map((url) => { 790 | return result.importedScripts[url]; 791 | }) 792 | .join("\n") + result.source; 793 | try { 794 | esprima.parse(jointSources, {}, (node) => { 795 | // Find addEventlistener('$event') style events 796 | if ( 797 | node.type === "CallExpression" && 798 | node.callee.type === "MemberExpression" && 799 | node.callee.property.name === "addEventListener" && 800 | node.arguments && 801 | Array.isArray(node.arguments) && 802 | node.arguments.length && 803 | node.arguments[0].type === "Literal" 804 | ) { 805 | result.events[node.arguments[0].value] = true; 806 | // Find on$Event style events 807 | } else if ( 808 | node.type === "ExpressionStatement" && 809 | node.expression.type === "AssignmentExpression" && 810 | node.expression.left.type === "MemberExpression" && 811 | node.expression.left.object.name === "self" && 812 | node.expression.left.property.type === "Identifier" && 813 | /^on/.test(node.expression.left.property.name) 814 | ) { 815 | const event = node.expression.left.property.name.replace( 816 | /^on/, 817 | "", 818 | ); 819 | result.events[event] = true; 820 | } 821 | }); 822 | } catch (parseError) { 823 | result.source = JSON.stringify(parseError, null, 2); 824 | return renderHtml( 825 | state, 826 | relativeScopeUrl, 827 | relativeScriptUrl, 828 | result, 829 | ); 830 | } 831 | return renderHtml(state, relativeScopeUrl, relativeScriptUrl, result); 832 | }); 833 | }, 834 | ); 835 | }); 836 | -------------------------------------------------------------------------------- /store_assets/edge-screenshot-cachestorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/edge-screenshot-cachestorage.png -------------------------------------------------------------------------------- /store_assets/edge-screenshot-manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/edge-screenshot-manifest.png -------------------------------------------------------------------------------- /store_assets/edge-screenshot-serviceworker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/edge-screenshot-serviceworker.png -------------------------------------------------------------------------------- /store_assets/firefox-screenshot-cachestorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/firefox-screenshot-cachestorage.png -------------------------------------------------------------------------------- /store_assets/firefox-screenshot-manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/firefox-screenshot-manifest.png -------------------------------------------------------------------------------- /store_assets/firefox-screenshot-sericeworker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/firefox-screenshot-sericeworker.png -------------------------------------------------------------------------------- /store_assets/screenshot-cachestorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/screenshot-cachestorage.png -------------------------------------------------------------------------------- /store_assets/screenshot-manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/screenshot-manifest.png -------------------------------------------------------------------------------- /store_assets/screenshot-serviceworker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/service-worker-detector/f436412552de47d3faa5f25f7fabb428504d5a74/store_assets/screenshot-serviceworker.png --------------------------------------------------------------------------------