├── userscript ├── src │ ├── userscript-header.js │ ├── index.css │ ├── App.css │ ├── App.tsx │ ├── index.tsx │ └── utils.js ├── .gitignore ├── package.json ├── vite.config.ts └── package-lock.json ├── dist └── react-userscripts-dev.user.js ├── README.md └── LICENSE /userscript/src/userscript-header.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name React Userscripts 3 | // @namespace https://github.com/siefkenj/react-userscripts 4 | // @version 1.1 5 | // @description A sample userscript built using react 6 | // @include https://*.google.com* 7 | // @grant none 8 | // ==/UserScript== 9 | 10 | -------------------------------------------------------------------------------- /userscript/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /userscript/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 4 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /userscript/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | } 8 | 9 | .App-header { 10 | background-color: #282c34; 11 | min-height: 100vh; 12 | display: flex; 13 | flex-direction: column; 14 | align-items: center; 15 | justify-content: center; 16 | font-size: calc(10px + 2vmin); 17 | color: white; 18 | } 19 | 20 | .App-link { 21 | color: #09d3ac; 22 | } 23 | -------------------------------------------------------------------------------- /userscript/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-userscripts", 3 | "version": "1.1.0", 4 | "private": true, 5 | "type": "module", 6 | "dependencies": { 7 | "react": "^18.3.1", 8 | "react-dom": "^18.3.1", 9 | "vite": "^7.2.4" 10 | }, 11 | "scripts": { 12 | "start": "npm-run-all --parallel build:watch preview", 13 | "preview": "vite preview", 14 | "build:watch": "vite build --watch", 15 | "build": "vite build" 16 | }, 17 | "devDependencies": { 18 | "npm-run-all": "^4.1.5" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /userscript/src/App.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./App.css"; 3 | 4 | function App() { 5 | return ( 6 |
7 |
8 |

9 | Edit src/App.js and save. Then, refresh the 10 | page. 11 |

12 | 18 | Learn React 19 | 20 |
21 |
22 | ); 23 | } 24 | 25 | export default App; 26 | -------------------------------------------------------------------------------- /dist/react-userscripts-dev.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name React Userscripts dev 3 | // @version 1.1 4 | // @description Development mode for React Userscripts. 5 | // @include https://*google.com/* 6 | // @grant none 7 | // ==/UserScript== 8 | 9 | "use strict"; 10 | 11 | function log(...args) { 12 | console.log("%cUserscript:", "color: purple; font-weight: bold", ...args); 13 | } 14 | 15 | log("Dev mode started"); 16 | 17 | async function main() { 18 | const resp = await fetch("http://localhost:8124/react-userscripts.user.js"); 19 | const script = await resp.text(); 20 | if (script.trim() === "") { 21 | log("No user script found"); 22 | return; 23 | } 24 | log("Got Dev script"); 25 | const scriptEl = document.createElement('script'); 26 | scriptEl.textContent = script; 27 | document.documentElement.appendChild(scriptEl); 28 | log("Dev script loaded"); 29 | } 30 | 31 | // Make sure we run once at the start 32 | main.bind({})().catch((e) => { 33 | log("ERROR", e); 34 | }); 35 | -------------------------------------------------------------------------------- /userscript/src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { createRoot } from "react-dom/client"; 3 | import "./index.css"; 4 | import App from "./App"; 5 | import { awaitElement, log, addLocationChangeCallback } from "./utils"; 6 | 7 | log("React script has successfully started"); 8 | 9 | // Do required initial work. Gets called every time the URL changes, 10 | // so that elements can be re-inserted as a user navigates a page with 11 | // different routes. 12 | async function main() { 13 | // Find . This can be any element. We wait until 14 | // the page has loaded enough for that element to exist. 15 | const body = await awaitElement("body > div"); 16 | const container = document.createElement("div"); 17 | body.appendChild(container); 18 | const root = createRoot(container); 19 | root.render(); 20 | } 21 | 22 | // Call `main()` every time the page URL changes, including on first load. 23 | addLocationChangeCallback(() => { 24 | // Greasemonkey doesn't bubble errors up to the main console, 25 | // so we have to catch them manually and log them 26 | main().catch((e) => { 27 | log(e); 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-userscripts 2 | Develop a Greasemonkey/Tampermonkey script using React 3 | 4 | In Firefox or Chrome, install [Greasemonkey](https://addons.mozilla.org/en-CA/firefox/addon/greasemonkey/) or Tampermonkey. 5 | You can then test the userscript by installing it [here](https://github.com/siefkenj/react-userscripts/raw/master/dist/react-userscripts.user.js). 6 | Navigate to [google](https://www.google.com) and you should see a react component inserted at the bottom of the page. 7 | 8 | # Development 9 | 10 | ## Building 11 | 12 | To build `react-userscripts` you must have [Node.js](https://nodejs.org/en/download/) and [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). 13 | Then, from the `react-userscripts` directory, run 14 | 15 | ``` 16 | cd userscript/ 17 | npm install 18 | npm run build 19 | ``` 20 | 21 | When the build script completes, you should have a fresh version of the userscript located at `dist/react-userscripts.user.js` 22 | (in the top-level `dist/` directory). (Ignore the message provided on the console about serving the project; that message is for 23 | developing a normal web application, not a userscript addon.) 24 | 25 | ## Development and Dynamic Loading 26 | 27 | When developing, it's nice to be able to get the newest version of your script upon a page 28 | refresh. To do this, install the development version of `react-userscripts` script located 29 | `dist/react-userscripts-dev.user.js` or click [here](https://github.com/siefkenj/react-userscripts/raw/master/dist/react-userscripts-dev.user.js). 30 | The dev script will dynamically load the extension from port `8124`, so you can take advantage of 31 | auto-recompilation when source files change. 32 | 33 | Now, run 34 | 35 | ``` 36 | cd userscript/ 37 | npm install # if you haven't already 38 | npm start 39 | ``` 40 | 41 | and a development server should start running on `localhost:8124`. Changing any files in `userscript/src` will trigger 42 | and automatic recompile which will be served to the dev addon on the next page reload. 43 | 44 | ## Known issues 45 | 46 | There is a specific issue happening under these conditions: 47 | * Developing with Firefox 48 | * Having [ViolentMonkey](https://github.com/violentmonkey/violentmonkey) <= 2.13.0 49 | * Granting anything other than `@grant none` in your `-dev.user.script.js` 50 | 51 | When executing the script made for dev mode, React will crash when a `useEffect` or `useState` hook is called. This is due to React being in dev mode running differently than in prod mode in order to help catch errors. 52 | However, [ViolentMonkey](https://github.com/violentmonkey/violentmonkey) has a bug and does not correctly handle `window` and `unsafeWindow` and React tries to read from these variables and crashes. 53 | 54 | The solution is to update to any version > 2.13.0 - (The latest beta versions have fixed the issue) 55 | -------------------------------------------------------------------------------- /userscript/src/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrapped console.log function. 3 | * 4 | * @export 5 | * @param {*} args 6 | */ 7 | export function log(...args) { 8 | console.log( 9 | "%cUserscript (React Mode):", 10 | "color: purple; font-weight: bold", 11 | ...args 12 | ); 13 | } 14 | 15 | /** 16 | * Wrapped version of `fetch` that logs the output as it's being fetched. 17 | * It also specifies the full path, because in Greasemonkey, the full path is needed. 18 | * 19 | * @param {string} arg 20 | * @returns {Promise} - the `fetch` promise 21 | */ 22 | export function logFetch(arg) { 23 | const url = new URL(arg, window.location); 24 | log("fetching", "" + url); 25 | return fetch("" + url, { credentials: "include" }); 26 | } 27 | 28 | /** 29 | * Ensure `callback` is called every time window.location changes 30 | * Code derived from https://stackoverflow.com/questions/3522090/event-when-window-location-href-changes 31 | * 32 | * @export 33 | * @param {function} callback - function to be called when URL changes 34 | * @returns {MutationObserver} - MutationObserver that watches the URL 35 | */ 36 | export function addLocationChangeCallback(callback) { 37 | // Run the callback once right at the start 38 | window.setTimeout(callback, 0); 39 | 40 | // Set up a `MutationObserver` to watch for changes in the URL 41 | let oldHref = window.location.href; 42 | const body = document.querySelector("body"); 43 | const observer = new MutationObserver((mutations) => { 44 | if (mutations.some(() => oldHref !== document.location.href)) { 45 | oldHref = document.location.href; 46 | callback(); 47 | } 48 | }); 49 | 50 | observer.observe(body, { childList: true, subtree: true }); 51 | return observer; 52 | } 53 | 54 | /** 55 | * Awaits for an element with the specified `selector` to be found 56 | * and then returns the selected dom node. 57 | * This is used to delay rendering a widget until its parent appears. 58 | * 59 | * @export 60 | * @param {string} selector 61 | * @returns {DOMNode} 62 | */ 63 | export async function awaitElement(selector) { 64 | const MAX_TRIES = 60; 65 | let tries = 0; 66 | return new Promise((resolve, reject) => { 67 | function probe() { 68 | tries++; 69 | return document.querySelector(selector); 70 | } 71 | 72 | function delayedProbe() { 73 | if (tries >= MAX_TRIES) { 74 | log("Can't find element with selector", selector); 75 | reject(); 76 | return; 77 | } 78 | const elm = probe(); 79 | if (elm) { 80 | resolve(elm); 81 | return; 82 | } 83 | 84 | window.setTimeout(delayedProbe, 250); 85 | } 86 | 87 | delayedProbe(); 88 | }); 89 | } 90 | -------------------------------------------------------------------------------- /userscript/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { PluginOption, defineConfig } from "vite"; 2 | import fs from "node:fs"; 3 | 4 | export default defineConfig(({ mode }) => { 5 | console.log("Building in", mode); 6 | return { 7 | plugins: [bundlePlugin], 8 | base: "./", 9 | root: "../", 10 | build: { 11 | cssCodeSplit: false, 12 | cssMinify: false, 13 | emptyOutDir: false, 14 | outDir: "dist", 15 | minify: false, 16 | sourcemap: false, 17 | lib: { 18 | entry: "userscript/src/index.tsx", 19 | name: "userscript", 20 | fileName: (_format) => `react-userscripts.user.js`, 21 | formats: ["iife"], 22 | cssFileName: "index.css", 23 | }, 24 | rollupOptions: { 25 | output: { 26 | banner: `// ==UserScript==`, 27 | inlineDynamicImports: true, 28 | }, 29 | }, 30 | }, 31 | preview: { 32 | port: 8124, 33 | strictPort: true, 34 | cors: true, 35 | headers: { 36 | 'Access-Control-Allow-Origin': '*', 37 | 'Access-Control-Allow-Methods': 'GET', 38 | }, 39 | }, 40 | define: { 41 | // Don't pick up weird variables from `NODE_ENV` 42 | // https://github.com/vitejs/vite/discussions/13587 43 | "process.env.NODE_ENV": JSON.stringify(mode), 44 | }, 45 | }; 46 | }); 47 | 48 | const bundlePlugin: PluginOption = { 49 | name: "bundle-plugin", 50 | apply: "build", 51 | enforce: "post", 52 | generateBundle(options, bundle) { 53 | // Gather all the CSS together to be injected later 54 | let css = ""; 55 | for (const fileName in bundle) { 56 | const chunk = bundle[fileName]; 57 | if (chunk.type === "asset" && chunk.fileName.endsWith(".css")) { 58 | console.log( 59 | "\nFound CSS chunk", 60 | chunk.fileName, 61 | "Inlining and removing from bundle." 62 | ); 63 | css += chunk.source; 64 | delete bundle[fileName]; 65 | } 66 | } 67 | for (const fileName in bundle) { 68 | const chunk = bundle[fileName]; 69 | if (chunk.type === "chunk") { 70 | // This may mess the source map :-( 71 | chunk.code = addHeader(chunk.code); 72 | 73 | // Inject the CSS into the bundle 74 | chunk.code += `;\n(function(){ 75 | const el = document.createElement("style"); 76 | el.innerText = ${JSON.stringify(css)}; 77 | el.type = "text/css"; 78 | document.head.appendChild(el); 79 | })();`; 80 | } 81 | } 82 | function addHeader(code: string) { 83 | const header = fs.readFileSync("src/userscript-header.js", "utf-8"); 84 | console.log("\nAdding header to userscript:\n", header); 85 | return `${header}\n${code}`; 86 | } 87 | }, 88 | }; 89 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /userscript/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-userscripts", 3 | "version": "1.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "react-userscripts", 9 | "version": "1.1.0", 10 | "dependencies": { 11 | "react": "^18.3.1", 12 | "react-dom": "^18.3.1", 13 | "vite": "^7.2.4" 14 | }, 15 | "devDependencies": { 16 | "npm-run-all": "^4.1.5" 17 | } 18 | }, 19 | "node_modules/@esbuild/aix-ppc64": { 20 | "version": "0.25.12", 21 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", 22 | "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", 23 | "cpu": [ 24 | "ppc64" 25 | ], 26 | "license": "MIT", 27 | "optional": true, 28 | "os": [ 29 | "aix" 30 | ], 31 | "engines": { 32 | "node": ">=18" 33 | } 34 | }, 35 | "node_modules/@esbuild/android-arm": { 36 | "version": "0.25.12", 37 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", 38 | "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", 39 | "cpu": [ 40 | "arm" 41 | ], 42 | "license": "MIT", 43 | "optional": true, 44 | "os": [ 45 | "android" 46 | ], 47 | "engines": { 48 | "node": ">=18" 49 | } 50 | }, 51 | "node_modules/@esbuild/android-arm64": { 52 | "version": "0.25.12", 53 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", 54 | "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", 55 | "cpu": [ 56 | "arm64" 57 | ], 58 | "license": "MIT", 59 | "optional": true, 60 | "os": [ 61 | "android" 62 | ], 63 | "engines": { 64 | "node": ">=18" 65 | } 66 | }, 67 | "node_modules/@esbuild/android-x64": { 68 | "version": "0.25.12", 69 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", 70 | "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", 71 | "cpu": [ 72 | "x64" 73 | ], 74 | "license": "MIT", 75 | "optional": true, 76 | "os": [ 77 | "android" 78 | ], 79 | "engines": { 80 | "node": ">=18" 81 | } 82 | }, 83 | "node_modules/@esbuild/darwin-arm64": { 84 | "version": "0.25.12", 85 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", 86 | "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", 87 | "cpu": [ 88 | "arm64" 89 | ], 90 | "license": "MIT", 91 | "optional": true, 92 | "os": [ 93 | "darwin" 94 | ], 95 | "engines": { 96 | "node": ">=18" 97 | } 98 | }, 99 | "node_modules/@esbuild/darwin-x64": { 100 | "version": "0.25.12", 101 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", 102 | "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", 103 | "cpu": [ 104 | "x64" 105 | ], 106 | "license": "MIT", 107 | "optional": true, 108 | "os": [ 109 | "darwin" 110 | ], 111 | "engines": { 112 | "node": ">=18" 113 | } 114 | }, 115 | "node_modules/@esbuild/freebsd-arm64": { 116 | "version": "0.25.12", 117 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", 118 | "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", 119 | "cpu": [ 120 | "arm64" 121 | ], 122 | "license": "MIT", 123 | "optional": true, 124 | "os": [ 125 | "freebsd" 126 | ], 127 | "engines": { 128 | "node": ">=18" 129 | } 130 | }, 131 | "node_modules/@esbuild/freebsd-x64": { 132 | "version": "0.25.12", 133 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", 134 | "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", 135 | "cpu": [ 136 | "x64" 137 | ], 138 | "license": "MIT", 139 | "optional": true, 140 | "os": [ 141 | "freebsd" 142 | ], 143 | "engines": { 144 | "node": ">=18" 145 | } 146 | }, 147 | "node_modules/@esbuild/linux-arm": { 148 | "version": "0.25.12", 149 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", 150 | "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", 151 | "cpu": [ 152 | "arm" 153 | ], 154 | "license": "MIT", 155 | "optional": true, 156 | "os": [ 157 | "linux" 158 | ], 159 | "engines": { 160 | "node": ">=18" 161 | } 162 | }, 163 | "node_modules/@esbuild/linux-arm64": { 164 | "version": "0.25.12", 165 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", 166 | "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", 167 | "cpu": [ 168 | "arm64" 169 | ], 170 | "license": "MIT", 171 | "optional": true, 172 | "os": [ 173 | "linux" 174 | ], 175 | "engines": { 176 | "node": ">=18" 177 | } 178 | }, 179 | "node_modules/@esbuild/linux-ia32": { 180 | "version": "0.25.12", 181 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", 182 | "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", 183 | "cpu": [ 184 | "ia32" 185 | ], 186 | "license": "MIT", 187 | "optional": true, 188 | "os": [ 189 | "linux" 190 | ], 191 | "engines": { 192 | "node": ">=18" 193 | } 194 | }, 195 | "node_modules/@esbuild/linux-loong64": { 196 | "version": "0.25.12", 197 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", 198 | "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", 199 | "cpu": [ 200 | "loong64" 201 | ], 202 | "license": "MIT", 203 | "optional": true, 204 | "os": [ 205 | "linux" 206 | ], 207 | "engines": { 208 | "node": ">=18" 209 | } 210 | }, 211 | "node_modules/@esbuild/linux-mips64el": { 212 | "version": "0.25.12", 213 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", 214 | "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", 215 | "cpu": [ 216 | "mips64el" 217 | ], 218 | "license": "MIT", 219 | "optional": true, 220 | "os": [ 221 | "linux" 222 | ], 223 | "engines": { 224 | "node": ">=18" 225 | } 226 | }, 227 | "node_modules/@esbuild/linux-ppc64": { 228 | "version": "0.25.12", 229 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", 230 | "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", 231 | "cpu": [ 232 | "ppc64" 233 | ], 234 | "license": "MIT", 235 | "optional": true, 236 | "os": [ 237 | "linux" 238 | ], 239 | "engines": { 240 | "node": ">=18" 241 | } 242 | }, 243 | "node_modules/@esbuild/linux-riscv64": { 244 | "version": "0.25.12", 245 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", 246 | "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", 247 | "cpu": [ 248 | "riscv64" 249 | ], 250 | "license": "MIT", 251 | "optional": true, 252 | "os": [ 253 | "linux" 254 | ], 255 | "engines": { 256 | "node": ">=18" 257 | } 258 | }, 259 | "node_modules/@esbuild/linux-s390x": { 260 | "version": "0.25.12", 261 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", 262 | "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", 263 | "cpu": [ 264 | "s390x" 265 | ], 266 | "license": "MIT", 267 | "optional": true, 268 | "os": [ 269 | "linux" 270 | ], 271 | "engines": { 272 | "node": ">=18" 273 | } 274 | }, 275 | "node_modules/@esbuild/linux-x64": { 276 | "version": "0.25.12", 277 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", 278 | "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", 279 | "cpu": [ 280 | "x64" 281 | ], 282 | "license": "MIT", 283 | "optional": true, 284 | "os": [ 285 | "linux" 286 | ], 287 | "engines": { 288 | "node": ">=18" 289 | } 290 | }, 291 | "node_modules/@esbuild/netbsd-arm64": { 292 | "version": "0.25.12", 293 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", 294 | "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", 295 | "cpu": [ 296 | "arm64" 297 | ], 298 | "license": "MIT", 299 | "optional": true, 300 | "os": [ 301 | "netbsd" 302 | ], 303 | "engines": { 304 | "node": ">=18" 305 | } 306 | }, 307 | "node_modules/@esbuild/netbsd-x64": { 308 | "version": "0.25.12", 309 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", 310 | "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", 311 | "cpu": [ 312 | "x64" 313 | ], 314 | "license": "MIT", 315 | "optional": true, 316 | "os": [ 317 | "netbsd" 318 | ], 319 | "engines": { 320 | "node": ">=18" 321 | } 322 | }, 323 | "node_modules/@esbuild/openbsd-arm64": { 324 | "version": "0.25.12", 325 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", 326 | "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", 327 | "cpu": [ 328 | "arm64" 329 | ], 330 | "license": "MIT", 331 | "optional": true, 332 | "os": [ 333 | "openbsd" 334 | ], 335 | "engines": { 336 | "node": ">=18" 337 | } 338 | }, 339 | "node_modules/@esbuild/openbsd-x64": { 340 | "version": "0.25.12", 341 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", 342 | "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", 343 | "cpu": [ 344 | "x64" 345 | ], 346 | "license": "MIT", 347 | "optional": true, 348 | "os": [ 349 | "openbsd" 350 | ], 351 | "engines": { 352 | "node": ">=18" 353 | } 354 | }, 355 | "node_modules/@esbuild/openharmony-arm64": { 356 | "version": "0.25.12", 357 | "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", 358 | "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", 359 | "cpu": [ 360 | "arm64" 361 | ], 362 | "license": "MIT", 363 | "optional": true, 364 | "os": [ 365 | "openharmony" 366 | ], 367 | "engines": { 368 | "node": ">=18" 369 | } 370 | }, 371 | "node_modules/@esbuild/sunos-x64": { 372 | "version": "0.25.12", 373 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", 374 | "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", 375 | "cpu": [ 376 | "x64" 377 | ], 378 | "license": "MIT", 379 | "optional": true, 380 | "os": [ 381 | "sunos" 382 | ], 383 | "engines": { 384 | "node": ">=18" 385 | } 386 | }, 387 | "node_modules/@esbuild/win32-arm64": { 388 | "version": "0.25.12", 389 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", 390 | "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", 391 | "cpu": [ 392 | "arm64" 393 | ], 394 | "license": "MIT", 395 | "optional": true, 396 | "os": [ 397 | "win32" 398 | ], 399 | "engines": { 400 | "node": ">=18" 401 | } 402 | }, 403 | "node_modules/@esbuild/win32-ia32": { 404 | "version": "0.25.12", 405 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", 406 | "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", 407 | "cpu": [ 408 | "ia32" 409 | ], 410 | "license": "MIT", 411 | "optional": true, 412 | "os": [ 413 | "win32" 414 | ], 415 | "engines": { 416 | "node": ">=18" 417 | } 418 | }, 419 | "node_modules/@esbuild/win32-x64": { 420 | "version": "0.25.12", 421 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", 422 | "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", 423 | "cpu": [ 424 | "x64" 425 | ], 426 | "license": "MIT", 427 | "optional": true, 428 | "os": [ 429 | "win32" 430 | ], 431 | "engines": { 432 | "node": ">=18" 433 | } 434 | }, 435 | "node_modules/@rollup/rollup-android-arm-eabi": { 436 | "version": "4.53.3", 437 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", 438 | "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", 439 | "cpu": [ 440 | "arm" 441 | ], 442 | "license": "MIT", 443 | "optional": true, 444 | "os": [ 445 | "android" 446 | ] 447 | }, 448 | "node_modules/@rollup/rollup-android-arm64": { 449 | "version": "4.53.3", 450 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", 451 | "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", 452 | "cpu": [ 453 | "arm64" 454 | ], 455 | "license": "MIT", 456 | "optional": true, 457 | "os": [ 458 | "android" 459 | ] 460 | }, 461 | "node_modules/@rollup/rollup-darwin-arm64": { 462 | "version": "4.53.3", 463 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", 464 | "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", 465 | "cpu": [ 466 | "arm64" 467 | ], 468 | "license": "MIT", 469 | "optional": true, 470 | "os": [ 471 | "darwin" 472 | ] 473 | }, 474 | "node_modules/@rollup/rollup-darwin-x64": { 475 | "version": "4.53.3", 476 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", 477 | "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", 478 | "cpu": [ 479 | "x64" 480 | ], 481 | "license": "MIT", 482 | "optional": true, 483 | "os": [ 484 | "darwin" 485 | ] 486 | }, 487 | "node_modules/@rollup/rollup-freebsd-arm64": { 488 | "version": "4.53.3", 489 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", 490 | "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", 491 | "cpu": [ 492 | "arm64" 493 | ], 494 | "license": "MIT", 495 | "optional": true, 496 | "os": [ 497 | "freebsd" 498 | ] 499 | }, 500 | "node_modules/@rollup/rollup-freebsd-x64": { 501 | "version": "4.53.3", 502 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", 503 | "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", 504 | "cpu": [ 505 | "x64" 506 | ], 507 | "license": "MIT", 508 | "optional": true, 509 | "os": [ 510 | "freebsd" 511 | ] 512 | }, 513 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 514 | "version": "4.53.3", 515 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", 516 | "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", 517 | "cpu": [ 518 | "arm" 519 | ], 520 | "license": "MIT", 521 | "optional": true, 522 | "os": [ 523 | "linux" 524 | ] 525 | }, 526 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 527 | "version": "4.53.3", 528 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", 529 | "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", 530 | "cpu": [ 531 | "arm" 532 | ], 533 | "license": "MIT", 534 | "optional": true, 535 | "os": [ 536 | "linux" 537 | ] 538 | }, 539 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 540 | "version": "4.53.3", 541 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", 542 | "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", 543 | "cpu": [ 544 | "arm64" 545 | ], 546 | "license": "MIT", 547 | "optional": true, 548 | "os": [ 549 | "linux" 550 | ] 551 | }, 552 | "node_modules/@rollup/rollup-linux-arm64-musl": { 553 | "version": "4.53.3", 554 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", 555 | "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", 556 | "cpu": [ 557 | "arm64" 558 | ], 559 | "license": "MIT", 560 | "optional": true, 561 | "os": [ 562 | "linux" 563 | ] 564 | }, 565 | "node_modules/@rollup/rollup-linux-loong64-gnu": { 566 | "version": "4.53.3", 567 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", 568 | "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", 569 | "cpu": [ 570 | "loong64" 571 | ], 572 | "license": "MIT", 573 | "optional": true, 574 | "os": [ 575 | "linux" 576 | ] 577 | }, 578 | "node_modules/@rollup/rollup-linux-ppc64-gnu": { 579 | "version": "4.53.3", 580 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", 581 | "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", 582 | "cpu": [ 583 | "ppc64" 584 | ], 585 | "license": "MIT", 586 | "optional": true, 587 | "os": [ 588 | "linux" 589 | ] 590 | }, 591 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 592 | "version": "4.53.3", 593 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", 594 | "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", 595 | "cpu": [ 596 | "riscv64" 597 | ], 598 | "license": "MIT", 599 | "optional": true, 600 | "os": [ 601 | "linux" 602 | ] 603 | }, 604 | "node_modules/@rollup/rollup-linux-riscv64-musl": { 605 | "version": "4.53.3", 606 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", 607 | "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", 608 | "cpu": [ 609 | "riscv64" 610 | ], 611 | "license": "MIT", 612 | "optional": true, 613 | "os": [ 614 | "linux" 615 | ] 616 | }, 617 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 618 | "version": "4.53.3", 619 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", 620 | "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", 621 | "cpu": [ 622 | "s390x" 623 | ], 624 | "license": "MIT", 625 | "optional": true, 626 | "os": [ 627 | "linux" 628 | ] 629 | }, 630 | "node_modules/@rollup/rollup-linux-x64-gnu": { 631 | "version": "4.53.3", 632 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", 633 | "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", 634 | "cpu": [ 635 | "x64" 636 | ], 637 | "license": "MIT", 638 | "optional": true, 639 | "os": [ 640 | "linux" 641 | ] 642 | }, 643 | "node_modules/@rollup/rollup-linux-x64-musl": { 644 | "version": "4.53.3", 645 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", 646 | "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", 647 | "cpu": [ 648 | "x64" 649 | ], 650 | "license": "MIT", 651 | "optional": true, 652 | "os": [ 653 | "linux" 654 | ] 655 | }, 656 | "node_modules/@rollup/rollup-openharmony-arm64": { 657 | "version": "4.53.3", 658 | "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", 659 | "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", 660 | "cpu": [ 661 | "arm64" 662 | ], 663 | "license": "MIT", 664 | "optional": true, 665 | "os": [ 666 | "openharmony" 667 | ] 668 | }, 669 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 670 | "version": "4.53.3", 671 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", 672 | "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", 673 | "cpu": [ 674 | "arm64" 675 | ], 676 | "license": "MIT", 677 | "optional": true, 678 | "os": [ 679 | "win32" 680 | ] 681 | }, 682 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 683 | "version": "4.53.3", 684 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", 685 | "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", 686 | "cpu": [ 687 | "ia32" 688 | ], 689 | "license": "MIT", 690 | "optional": true, 691 | "os": [ 692 | "win32" 693 | ] 694 | }, 695 | "node_modules/@rollup/rollup-win32-x64-gnu": { 696 | "version": "4.53.3", 697 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", 698 | "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", 699 | "cpu": [ 700 | "x64" 701 | ], 702 | "license": "MIT", 703 | "optional": true, 704 | "os": [ 705 | "win32" 706 | ] 707 | }, 708 | "node_modules/@rollup/rollup-win32-x64-msvc": { 709 | "version": "4.53.3", 710 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", 711 | "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", 712 | "cpu": [ 713 | "x64" 714 | ], 715 | "license": "MIT", 716 | "optional": true, 717 | "os": [ 718 | "win32" 719 | ] 720 | }, 721 | "node_modules/@types/estree": { 722 | "version": "1.0.8", 723 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 724 | "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 725 | "license": "MIT" 726 | }, 727 | "node_modules/ansi-styles": { 728 | "version": "3.2.1", 729 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 730 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 731 | "dev": true, 732 | "license": "MIT", 733 | "dependencies": { 734 | "color-convert": "^1.9.0" 735 | }, 736 | "engines": { 737 | "node": ">=4" 738 | } 739 | }, 740 | "node_modules/array-buffer-byte-length": { 741 | "version": "1.0.2", 742 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", 743 | "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", 744 | "dev": true, 745 | "license": "MIT", 746 | "dependencies": { 747 | "call-bound": "^1.0.3", 748 | "is-array-buffer": "^3.0.5" 749 | }, 750 | "engines": { 751 | "node": ">= 0.4" 752 | }, 753 | "funding": { 754 | "url": "https://github.com/sponsors/ljharb" 755 | } 756 | }, 757 | "node_modules/arraybuffer.prototype.slice": { 758 | "version": "1.0.4", 759 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", 760 | "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", 761 | "dev": true, 762 | "license": "MIT", 763 | "dependencies": { 764 | "array-buffer-byte-length": "^1.0.1", 765 | "call-bind": "^1.0.8", 766 | "define-properties": "^1.2.1", 767 | "es-abstract": "^1.23.5", 768 | "es-errors": "^1.3.0", 769 | "get-intrinsic": "^1.2.6", 770 | "is-array-buffer": "^3.0.4" 771 | }, 772 | "engines": { 773 | "node": ">= 0.4" 774 | }, 775 | "funding": { 776 | "url": "https://github.com/sponsors/ljharb" 777 | } 778 | }, 779 | "node_modules/async-function": { 780 | "version": "1.0.0", 781 | "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", 782 | "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", 783 | "dev": true, 784 | "license": "MIT", 785 | "engines": { 786 | "node": ">= 0.4" 787 | } 788 | }, 789 | "node_modules/available-typed-arrays": { 790 | "version": "1.0.7", 791 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 792 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 793 | "dev": true, 794 | "license": "MIT", 795 | "dependencies": { 796 | "possible-typed-array-names": "^1.0.0" 797 | }, 798 | "engines": { 799 | "node": ">= 0.4" 800 | }, 801 | "funding": { 802 | "url": "https://github.com/sponsors/ljharb" 803 | } 804 | }, 805 | "node_modules/balanced-match": { 806 | "version": "1.0.2", 807 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 808 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 809 | "dev": true, 810 | "license": "MIT" 811 | }, 812 | "node_modules/brace-expansion": { 813 | "version": "1.1.12", 814 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", 815 | "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", 816 | "dev": true, 817 | "license": "MIT", 818 | "dependencies": { 819 | "balanced-match": "^1.0.0", 820 | "concat-map": "0.0.1" 821 | } 822 | }, 823 | "node_modules/call-bind": { 824 | "version": "1.0.8", 825 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", 826 | "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", 827 | "dev": true, 828 | "license": "MIT", 829 | "dependencies": { 830 | "call-bind-apply-helpers": "^1.0.0", 831 | "es-define-property": "^1.0.0", 832 | "get-intrinsic": "^1.2.4", 833 | "set-function-length": "^1.2.2" 834 | }, 835 | "engines": { 836 | "node": ">= 0.4" 837 | }, 838 | "funding": { 839 | "url": "https://github.com/sponsors/ljharb" 840 | } 841 | }, 842 | "node_modules/call-bind-apply-helpers": { 843 | "version": "1.0.2", 844 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 845 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 846 | "dev": true, 847 | "license": "MIT", 848 | "dependencies": { 849 | "es-errors": "^1.3.0", 850 | "function-bind": "^1.1.2" 851 | }, 852 | "engines": { 853 | "node": ">= 0.4" 854 | } 855 | }, 856 | "node_modules/call-bound": { 857 | "version": "1.0.4", 858 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 859 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 860 | "dev": true, 861 | "license": "MIT", 862 | "dependencies": { 863 | "call-bind-apply-helpers": "^1.0.2", 864 | "get-intrinsic": "^1.3.0" 865 | }, 866 | "engines": { 867 | "node": ">= 0.4" 868 | }, 869 | "funding": { 870 | "url": "https://github.com/sponsors/ljharb" 871 | } 872 | }, 873 | "node_modules/chalk": { 874 | "version": "2.4.2", 875 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 876 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 877 | "dev": true, 878 | "license": "MIT", 879 | "dependencies": { 880 | "ansi-styles": "^3.2.1", 881 | "escape-string-regexp": "^1.0.5", 882 | "supports-color": "^5.3.0" 883 | }, 884 | "engines": { 885 | "node": ">=4" 886 | } 887 | }, 888 | "node_modules/color-convert": { 889 | "version": "1.9.3", 890 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 891 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 892 | "dev": true, 893 | "license": "MIT", 894 | "dependencies": { 895 | "color-name": "1.1.3" 896 | } 897 | }, 898 | "node_modules/color-name": { 899 | "version": "1.1.3", 900 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 901 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 902 | "dev": true, 903 | "license": "MIT" 904 | }, 905 | "node_modules/concat-map": { 906 | "version": "0.0.1", 907 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 908 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 909 | "dev": true, 910 | "license": "MIT" 911 | }, 912 | "node_modules/cross-spawn": { 913 | "version": "6.0.6", 914 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", 915 | "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", 916 | "dev": true, 917 | "license": "MIT", 918 | "dependencies": { 919 | "nice-try": "^1.0.4", 920 | "path-key": "^2.0.1", 921 | "semver": "^5.5.0", 922 | "shebang-command": "^1.2.0", 923 | "which": "^1.2.9" 924 | }, 925 | "engines": { 926 | "node": ">=4.8" 927 | } 928 | }, 929 | "node_modules/data-view-buffer": { 930 | "version": "1.0.2", 931 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", 932 | "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", 933 | "dev": true, 934 | "license": "MIT", 935 | "dependencies": { 936 | "call-bound": "^1.0.3", 937 | "es-errors": "^1.3.0", 938 | "is-data-view": "^1.0.2" 939 | }, 940 | "engines": { 941 | "node": ">= 0.4" 942 | }, 943 | "funding": { 944 | "url": "https://github.com/sponsors/ljharb" 945 | } 946 | }, 947 | "node_modules/data-view-byte-length": { 948 | "version": "1.0.2", 949 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", 950 | "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", 951 | "dev": true, 952 | "license": "MIT", 953 | "dependencies": { 954 | "call-bound": "^1.0.3", 955 | "es-errors": "^1.3.0", 956 | "is-data-view": "^1.0.2" 957 | }, 958 | "engines": { 959 | "node": ">= 0.4" 960 | }, 961 | "funding": { 962 | "url": "https://github.com/sponsors/inspect-js" 963 | } 964 | }, 965 | "node_modules/data-view-byte-offset": { 966 | "version": "1.0.1", 967 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", 968 | "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", 969 | "dev": true, 970 | "license": "MIT", 971 | "dependencies": { 972 | "call-bound": "^1.0.2", 973 | "es-errors": "^1.3.0", 974 | "is-data-view": "^1.0.1" 975 | }, 976 | "engines": { 977 | "node": ">= 0.4" 978 | }, 979 | "funding": { 980 | "url": "https://github.com/sponsors/ljharb" 981 | } 982 | }, 983 | "node_modules/define-data-property": { 984 | "version": "1.1.4", 985 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 986 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 987 | "dev": true, 988 | "license": "MIT", 989 | "dependencies": { 990 | "es-define-property": "^1.0.0", 991 | "es-errors": "^1.3.0", 992 | "gopd": "^1.0.1" 993 | }, 994 | "engines": { 995 | "node": ">= 0.4" 996 | }, 997 | "funding": { 998 | "url": "https://github.com/sponsors/ljharb" 999 | } 1000 | }, 1001 | "node_modules/define-properties": { 1002 | "version": "1.2.1", 1003 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1004 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1005 | "dev": true, 1006 | "license": "MIT", 1007 | "dependencies": { 1008 | "define-data-property": "^1.0.1", 1009 | "has-property-descriptors": "^1.0.0", 1010 | "object-keys": "^1.1.1" 1011 | }, 1012 | "engines": { 1013 | "node": ">= 0.4" 1014 | }, 1015 | "funding": { 1016 | "url": "https://github.com/sponsors/ljharb" 1017 | } 1018 | }, 1019 | "node_modules/dunder-proto": { 1020 | "version": "1.0.1", 1021 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1022 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1023 | "dev": true, 1024 | "license": "MIT", 1025 | "dependencies": { 1026 | "call-bind-apply-helpers": "^1.0.1", 1027 | "es-errors": "^1.3.0", 1028 | "gopd": "^1.2.0" 1029 | }, 1030 | "engines": { 1031 | "node": ">= 0.4" 1032 | } 1033 | }, 1034 | "node_modules/error-ex": { 1035 | "version": "1.3.4", 1036 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", 1037 | "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", 1038 | "dev": true, 1039 | "license": "MIT", 1040 | "dependencies": { 1041 | "is-arrayish": "^0.2.1" 1042 | } 1043 | }, 1044 | "node_modules/es-abstract": { 1045 | "version": "1.24.0", 1046 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", 1047 | "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", 1048 | "dev": true, 1049 | "license": "MIT", 1050 | "dependencies": { 1051 | "array-buffer-byte-length": "^1.0.2", 1052 | "arraybuffer.prototype.slice": "^1.0.4", 1053 | "available-typed-arrays": "^1.0.7", 1054 | "call-bind": "^1.0.8", 1055 | "call-bound": "^1.0.4", 1056 | "data-view-buffer": "^1.0.2", 1057 | "data-view-byte-length": "^1.0.2", 1058 | "data-view-byte-offset": "^1.0.1", 1059 | "es-define-property": "^1.0.1", 1060 | "es-errors": "^1.3.0", 1061 | "es-object-atoms": "^1.1.1", 1062 | "es-set-tostringtag": "^2.1.0", 1063 | "es-to-primitive": "^1.3.0", 1064 | "function.prototype.name": "^1.1.8", 1065 | "get-intrinsic": "^1.3.0", 1066 | "get-proto": "^1.0.1", 1067 | "get-symbol-description": "^1.1.0", 1068 | "globalthis": "^1.0.4", 1069 | "gopd": "^1.2.0", 1070 | "has-property-descriptors": "^1.0.2", 1071 | "has-proto": "^1.2.0", 1072 | "has-symbols": "^1.1.0", 1073 | "hasown": "^2.0.2", 1074 | "internal-slot": "^1.1.0", 1075 | "is-array-buffer": "^3.0.5", 1076 | "is-callable": "^1.2.7", 1077 | "is-data-view": "^1.0.2", 1078 | "is-negative-zero": "^2.0.3", 1079 | "is-regex": "^1.2.1", 1080 | "is-set": "^2.0.3", 1081 | "is-shared-array-buffer": "^1.0.4", 1082 | "is-string": "^1.1.1", 1083 | "is-typed-array": "^1.1.15", 1084 | "is-weakref": "^1.1.1", 1085 | "math-intrinsics": "^1.1.0", 1086 | "object-inspect": "^1.13.4", 1087 | "object-keys": "^1.1.1", 1088 | "object.assign": "^4.1.7", 1089 | "own-keys": "^1.0.1", 1090 | "regexp.prototype.flags": "^1.5.4", 1091 | "safe-array-concat": "^1.1.3", 1092 | "safe-push-apply": "^1.0.0", 1093 | "safe-regex-test": "^1.1.0", 1094 | "set-proto": "^1.0.0", 1095 | "stop-iteration-iterator": "^1.1.0", 1096 | "string.prototype.trim": "^1.2.10", 1097 | "string.prototype.trimend": "^1.0.9", 1098 | "string.prototype.trimstart": "^1.0.8", 1099 | "typed-array-buffer": "^1.0.3", 1100 | "typed-array-byte-length": "^1.0.3", 1101 | "typed-array-byte-offset": "^1.0.4", 1102 | "typed-array-length": "^1.0.7", 1103 | "unbox-primitive": "^1.1.0", 1104 | "which-typed-array": "^1.1.19" 1105 | }, 1106 | "engines": { 1107 | "node": ">= 0.4" 1108 | }, 1109 | "funding": { 1110 | "url": "https://github.com/sponsors/ljharb" 1111 | } 1112 | }, 1113 | "node_modules/es-define-property": { 1114 | "version": "1.0.1", 1115 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1116 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1117 | "dev": true, 1118 | "license": "MIT", 1119 | "engines": { 1120 | "node": ">= 0.4" 1121 | } 1122 | }, 1123 | "node_modules/es-errors": { 1124 | "version": "1.3.0", 1125 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1126 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1127 | "dev": true, 1128 | "license": "MIT", 1129 | "engines": { 1130 | "node": ">= 0.4" 1131 | } 1132 | }, 1133 | "node_modules/es-object-atoms": { 1134 | "version": "1.1.1", 1135 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1136 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1137 | "dev": true, 1138 | "license": "MIT", 1139 | "dependencies": { 1140 | "es-errors": "^1.3.0" 1141 | }, 1142 | "engines": { 1143 | "node": ">= 0.4" 1144 | } 1145 | }, 1146 | "node_modules/es-set-tostringtag": { 1147 | "version": "2.1.0", 1148 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", 1149 | "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", 1150 | "dev": true, 1151 | "license": "MIT", 1152 | "dependencies": { 1153 | "es-errors": "^1.3.0", 1154 | "get-intrinsic": "^1.2.6", 1155 | "has-tostringtag": "^1.0.2", 1156 | "hasown": "^2.0.2" 1157 | }, 1158 | "engines": { 1159 | "node": ">= 0.4" 1160 | } 1161 | }, 1162 | "node_modules/es-to-primitive": { 1163 | "version": "1.3.0", 1164 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", 1165 | "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", 1166 | "dev": true, 1167 | "license": "MIT", 1168 | "dependencies": { 1169 | "is-callable": "^1.2.7", 1170 | "is-date-object": "^1.0.5", 1171 | "is-symbol": "^1.0.4" 1172 | }, 1173 | "engines": { 1174 | "node": ">= 0.4" 1175 | }, 1176 | "funding": { 1177 | "url": "https://github.com/sponsors/ljharb" 1178 | } 1179 | }, 1180 | "node_modules/esbuild": { 1181 | "version": "0.25.12", 1182 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", 1183 | "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", 1184 | "hasInstallScript": true, 1185 | "license": "MIT", 1186 | "bin": { 1187 | "esbuild": "bin/esbuild" 1188 | }, 1189 | "engines": { 1190 | "node": ">=18" 1191 | }, 1192 | "optionalDependencies": { 1193 | "@esbuild/aix-ppc64": "0.25.12", 1194 | "@esbuild/android-arm": "0.25.12", 1195 | "@esbuild/android-arm64": "0.25.12", 1196 | "@esbuild/android-x64": "0.25.12", 1197 | "@esbuild/darwin-arm64": "0.25.12", 1198 | "@esbuild/darwin-x64": "0.25.12", 1199 | "@esbuild/freebsd-arm64": "0.25.12", 1200 | "@esbuild/freebsd-x64": "0.25.12", 1201 | "@esbuild/linux-arm": "0.25.12", 1202 | "@esbuild/linux-arm64": "0.25.12", 1203 | "@esbuild/linux-ia32": "0.25.12", 1204 | "@esbuild/linux-loong64": "0.25.12", 1205 | "@esbuild/linux-mips64el": "0.25.12", 1206 | "@esbuild/linux-ppc64": "0.25.12", 1207 | "@esbuild/linux-riscv64": "0.25.12", 1208 | "@esbuild/linux-s390x": "0.25.12", 1209 | "@esbuild/linux-x64": "0.25.12", 1210 | "@esbuild/netbsd-arm64": "0.25.12", 1211 | "@esbuild/netbsd-x64": "0.25.12", 1212 | "@esbuild/openbsd-arm64": "0.25.12", 1213 | "@esbuild/openbsd-x64": "0.25.12", 1214 | "@esbuild/openharmony-arm64": "0.25.12", 1215 | "@esbuild/sunos-x64": "0.25.12", 1216 | "@esbuild/win32-arm64": "0.25.12", 1217 | "@esbuild/win32-ia32": "0.25.12", 1218 | "@esbuild/win32-x64": "0.25.12" 1219 | } 1220 | }, 1221 | "node_modules/escape-string-regexp": { 1222 | "version": "1.0.5", 1223 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1224 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 1225 | "dev": true, 1226 | "license": "MIT", 1227 | "engines": { 1228 | "node": ">=0.8.0" 1229 | } 1230 | }, 1231 | "node_modules/fdir": { 1232 | "version": "6.5.0", 1233 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 1234 | "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 1235 | "license": "MIT", 1236 | "engines": { 1237 | "node": ">=12.0.0" 1238 | }, 1239 | "peerDependencies": { 1240 | "picomatch": "^3 || ^4" 1241 | }, 1242 | "peerDependenciesMeta": { 1243 | "picomatch": { 1244 | "optional": true 1245 | } 1246 | } 1247 | }, 1248 | "node_modules/for-each": { 1249 | "version": "0.3.5", 1250 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", 1251 | "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", 1252 | "dev": true, 1253 | "license": "MIT", 1254 | "dependencies": { 1255 | "is-callable": "^1.2.7" 1256 | }, 1257 | "engines": { 1258 | "node": ">= 0.4" 1259 | }, 1260 | "funding": { 1261 | "url": "https://github.com/sponsors/ljharb" 1262 | } 1263 | }, 1264 | "node_modules/fsevents": { 1265 | "version": "2.3.3", 1266 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1267 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1268 | "hasInstallScript": true, 1269 | "license": "MIT", 1270 | "optional": true, 1271 | "os": [ 1272 | "darwin" 1273 | ], 1274 | "engines": { 1275 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1276 | } 1277 | }, 1278 | "node_modules/function-bind": { 1279 | "version": "1.1.2", 1280 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1281 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1282 | "dev": true, 1283 | "license": "MIT", 1284 | "funding": { 1285 | "url": "https://github.com/sponsors/ljharb" 1286 | } 1287 | }, 1288 | "node_modules/function.prototype.name": { 1289 | "version": "1.1.8", 1290 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", 1291 | "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", 1292 | "dev": true, 1293 | "license": "MIT", 1294 | "dependencies": { 1295 | "call-bind": "^1.0.8", 1296 | "call-bound": "^1.0.3", 1297 | "define-properties": "^1.2.1", 1298 | "functions-have-names": "^1.2.3", 1299 | "hasown": "^2.0.2", 1300 | "is-callable": "^1.2.7" 1301 | }, 1302 | "engines": { 1303 | "node": ">= 0.4" 1304 | }, 1305 | "funding": { 1306 | "url": "https://github.com/sponsors/ljharb" 1307 | } 1308 | }, 1309 | "node_modules/functions-have-names": { 1310 | "version": "1.2.3", 1311 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1312 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1313 | "dev": true, 1314 | "license": "MIT", 1315 | "funding": { 1316 | "url": "https://github.com/sponsors/ljharb" 1317 | } 1318 | }, 1319 | "node_modules/generator-function": { 1320 | "version": "2.0.1", 1321 | "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", 1322 | "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", 1323 | "dev": true, 1324 | "license": "MIT", 1325 | "engines": { 1326 | "node": ">= 0.4" 1327 | } 1328 | }, 1329 | "node_modules/get-intrinsic": { 1330 | "version": "1.3.0", 1331 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 1332 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 1333 | "dev": true, 1334 | "license": "MIT", 1335 | "dependencies": { 1336 | "call-bind-apply-helpers": "^1.0.2", 1337 | "es-define-property": "^1.0.1", 1338 | "es-errors": "^1.3.0", 1339 | "es-object-atoms": "^1.1.1", 1340 | "function-bind": "^1.1.2", 1341 | "get-proto": "^1.0.1", 1342 | "gopd": "^1.2.0", 1343 | "has-symbols": "^1.1.0", 1344 | "hasown": "^2.0.2", 1345 | "math-intrinsics": "^1.1.0" 1346 | }, 1347 | "engines": { 1348 | "node": ">= 0.4" 1349 | }, 1350 | "funding": { 1351 | "url": "https://github.com/sponsors/ljharb" 1352 | } 1353 | }, 1354 | "node_modules/get-proto": { 1355 | "version": "1.0.1", 1356 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 1357 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 1358 | "dev": true, 1359 | "license": "MIT", 1360 | "dependencies": { 1361 | "dunder-proto": "^1.0.1", 1362 | "es-object-atoms": "^1.0.0" 1363 | }, 1364 | "engines": { 1365 | "node": ">= 0.4" 1366 | } 1367 | }, 1368 | "node_modules/get-symbol-description": { 1369 | "version": "1.1.0", 1370 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", 1371 | "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", 1372 | "dev": true, 1373 | "license": "MIT", 1374 | "dependencies": { 1375 | "call-bound": "^1.0.3", 1376 | "es-errors": "^1.3.0", 1377 | "get-intrinsic": "^1.2.6" 1378 | }, 1379 | "engines": { 1380 | "node": ">= 0.4" 1381 | }, 1382 | "funding": { 1383 | "url": "https://github.com/sponsors/ljharb" 1384 | } 1385 | }, 1386 | "node_modules/globalthis": { 1387 | "version": "1.0.4", 1388 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 1389 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 1390 | "dev": true, 1391 | "license": "MIT", 1392 | "dependencies": { 1393 | "define-properties": "^1.2.1", 1394 | "gopd": "^1.0.1" 1395 | }, 1396 | "engines": { 1397 | "node": ">= 0.4" 1398 | }, 1399 | "funding": { 1400 | "url": "https://github.com/sponsors/ljharb" 1401 | } 1402 | }, 1403 | "node_modules/gopd": { 1404 | "version": "1.2.0", 1405 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 1406 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 1407 | "dev": true, 1408 | "license": "MIT", 1409 | "engines": { 1410 | "node": ">= 0.4" 1411 | }, 1412 | "funding": { 1413 | "url": "https://github.com/sponsors/ljharb" 1414 | } 1415 | }, 1416 | "node_modules/graceful-fs": { 1417 | "version": "4.2.11", 1418 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1419 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1420 | "dev": true, 1421 | "license": "ISC" 1422 | }, 1423 | "node_modules/has-bigints": { 1424 | "version": "1.1.0", 1425 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", 1426 | "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", 1427 | "dev": true, 1428 | "license": "MIT", 1429 | "engines": { 1430 | "node": ">= 0.4" 1431 | }, 1432 | "funding": { 1433 | "url": "https://github.com/sponsors/ljharb" 1434 | } 1435 | }, 1436 | "node_modules/has-flag": { 1437 | "version": "3.0.0", 1438 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1439 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 1440 | "dev": true, 1441 | "license": "MIT", 1442 | "engines": { 1443 | "node": ">=4" 1444 | } 1445 | }, 1446 | "node_modules/has-property-descriptors": { 1447 | "version": "1.0.2", 1448 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1449 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1450 | "dev": true, 1451 | "license": "MIT", 1452 | "dependencies": { 1453 | "es-define-property": "^1.0.0" 1454 | }, 1455 | "funding": { 1456 | "url": "https://github.com/sponsors/ljharb" 1457 | } 1458 | }, 1459 | "node_modules/has-proto": { 1460 | "version": "1.2.0", 1461 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", 1462 | "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", 1463 | "dev": true, 1464 | "license": "MIT", 1465 | "dependencies": { 1466 | "dunder-proto": "^1.0.0" 1467 | }, 1468 | "engines": { 1469 | "node": ">= 0.4" 1470 | }, 1471 | "funding": { 1472 | "url": "https://github.com/sponsors/ljharb" 1473 | } 1474 | }, 1475 | "node_modules/has-symbols": { 1476 | "version": "1.1.0", 1477 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 1478 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 1479 | "dev": true, 1480 | "license": "MIT", 1481 | "engines": { 1482 | "node": ">= 0.4" 1483 | }, 1484 | "funding": { 1485 | "url": "https://github.com/sponsors/ljharb" 1486 | } 1487 | }, 1488 | "node_modules/has-tostringtag": { 1489 | "version": "1.0.2", 1490 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1491 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1492 | "dev": true, 1493 | "license": "MIT", 1494 | "dependencies": { 1495 | "has-symbols": "^1.0.3" 1496 | }, 1497 | "engines": { 1498 | "node": ">= 0.4" 1499 | }, 1500 | "funding": { 1501 | "url": "https://github.com/sponsors/ljharb" 1502 | } 1503 | }, 1504 | "node_modules/hasown": { 1505 | "version": "2.0.2", 1506 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1507 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1508 | "dev": true, 1509 | "license": "MIT", 1510 | "dependencies": { 1511 | "function-bind": "^1.1.2" 1512 | }, 1513 | "engines": { 1514 | "node": ">= 0.4" 1515 | } 1516 | }, 1517 | "node_modules/hosted-git-info": { 1518 | "version": "2.8.9", 1519 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", 1520 | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", 1521 | "dev": true, 1522 | "license": "ISC" 1523 | }, 1524 | "node_modules/internal-slot": { 1525 | "version": "1.1.0", 1526 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", 1527 | "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", 1528 | "dev": true, 1529 | "license": "MIT", 1530 | "dependencies": { 1531 | "es-errors": "^1.3.0", 1532 | "hasown": "^2.0.2", 1533 | "side-channel": "^1.1.0" 1534 | }, 1535 | "engines": { 1536 | "node": ">= 0.4" 1537 | } 1538 | }, 1539 | "node_modules/is-array-buffer": { 1540 | "version": "3.0.5", 1541 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", 1542 | "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", 1543 | "dev": true, 1544 | "license": "MIT", 1545 | "dependencies": { 1546 | "call-bind": "^1.0.8", 1547 | "call-bound": "^1.0.3", 1548 | "get-intrinsic": "^1.2.6" 1549 | }, 1550 | "engines": { 1551 | "node": ">= 0.4" 1552 | }, 1553 | "funding": { 1554 | "url": "https://github.com/sponsors/ljharb" 1555 | } 1556 | }, 1557 | "node_modules/is-arrayish": { 1558 | "version": "0.2.1", 1559 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1560 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1561 | "dev": true, 1562 | "license": "MIT" 1563 | }, 1564 | "node_modules/is-async-function": { 1565 | "version": "2.1.1", 1566 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", 1567 | "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", 1568 | "dev": true, 1569 | "license": "MIT", 1570 | "dependencies": { 1571 | "async-function": "^1.0.0", 1572 | "call-bound": "^1.0.3", 1573 | "get-proto": "^1.0.1", 1574 | "has-tostringtag": "^1.0.2", 1575 | "safe-regex-test": "^1.1.0" 1576 | }, 1577 | "engines": { 1578 | "node": ">= 0.4" 1579 | }, 1580 | "funding": { 1581 | "url": "https://github.com/sponsors/ljharb" 1582 | } 1583 | }, 1584 | "node_modules/is-bigint": { 1585 | "version": "1.1.0", 1586 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", 1587 | "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", 1588 | "dev": true, 1589 | "license": "MIT", 1590 | "dependencies": { 1591 | "has-bigints": "^1.0.2" 1592 | }, 1593 | "engines": { 1594 | "node": ">= 0.4" 1595 | }, 1596 | "funding": { 1597 | "url": "https://github.com/sponsors/ljharb" 1598 | } 1599 | }, 1600 | "node_modules/is-boolean-object": { 1601 | "version": "1.2.2", 1602 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", 1603 | "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", 1604 | "dev": true, 1605 | "license": "MIT", 1606 | "dependencies": { 1607 | "call-bound": "^1.0.3", 1608 | "has-tostringtag": "^1.0.2" 1609 | }, 1610 | "engines": { 1611 | "node": ">= 0.4" 1612 | }, 1613 | "funding": { 1614 | "url": "https://github.com/sponsors/ljharb" 1615 | } 1616 | }, 1617 | "node_modules/is-callable": { 1618 | "version": "1.2.7", 1619 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 1620 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 1621 | "dev": true, 1622 | "license": "MIT", 1623 | "engines": { 1624 | "node": ">= 0.4" 1625 | }, 1626 | "funding": { 1627 | "url": "https://github.com/sponsors/ljharb" 1628 | } 1629 | }, 1630 | "node_modules/is-core-module": { 1631 | "version": "2.16.1", 1632 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 1633 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 1634 | "dev": true, 1635 | "license": "MIT", 1636 | "dependencies": { 1637 | "hasown": "^2.0.2" 1638 | }, 1639 | "engines": { 1640 | "node": ">= 0.4" 1641 | }, 1642 | "funding": { 1643 | "url": "https://github.com/sponsors/ljharb" 1644 | } 1645 | }, 1646 | "node_modules/is-data-view": { 1647 | "version": "1.0.2", 1648 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", 1649 | "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", 1650 | "dev": true, 1651 | "license": "MIT", 1652 | "dependencies": { 1653 | "call-bound": "^1.0.2", 1654 | "get-intrinsic": "^1.2.6", 1655 | "is-typed-array": "^1.1.13" 1656 | }, 1657 | "engines": { 1658 | "node": ">= 0.4" 1659 | }, 1660 | "funding": { 1661 | "url": "https://github.com/sponsors/ljharb" 1662 | } 1663 | }, 1664 | "node_modules/is-date-object": { 1665 | "version": "1.1.0", 1666 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", 1667 | "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", 1668 | "dev": true, 1669 | "license": "MIT", 1670 | "dependencies": { 1671 | "call-bound": "^1.0.2", 1672 | "has-tostringtag": "^1.0.2" 1673 | }, 1674 | "engines": { 1675 | "node": ">= 0.4" 1676 | }, 1677 | "funding": { 1678 | "url": "https://github.com/sponsors/ljharb" 1679 | } 1680 | }, 1681 | "node_modules/is-finalizationregistry": { 1682 | "version": "1.1.1", 1683 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", 1684 | "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", 1685 | "dev": true, 1686 | "license": "MIT", 1687 | "dependencies": { 1688 | "call-bound": "^1.0.3" 1689 | }, 1690 | "engines": { 1691 | "node": ">= 0.4" 1692 | }, 1693 | "funding": { 1694 | "url": "https://github.com/sponsors/ljharb" 1695 | } 1696 | }, 1697 | "node_modules/is-generator-function": { 1698 | "version": "1.1.2", 1699 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", 1700 | "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", 1701 | "dev": true, 1702 | "license": "MIT", 1703 | "dependencies": { 1704 | "call-bound": "^1.0.4", 1705 | "generator-function": "^2.0.0", 1706 | "get-proto": "^1.0.1", 1707 | "has-tostringtag": "^1.0.2", 1708 | "safe-regex-test": "^1.1.0" 1709 | }, 1710 | "engines": { 1711 | "node": ">= 0.4" 1712 | }, 1713 | "funding": { 1714 | "url": "https://github.com/sponsors/ljharb" 1715 | } 1716 | }, 1717 | "node_modules/is-map": { 1718 | "version": "2.0.3", 1719 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", 1720 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", 1721 | "dev": true, 1722 | "license": "MIT", 1723 | "engines": { 1724 | "node": ">= 0.4" 1725 | }, 1726 | "funding": { 1727 | "url": "https://github.com/sponsors/ljharb" 1728 | } 1729 | }, 1730 | "node_modules/is-negative-zero": { 1731 | "version": "2.0.3", 1732 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", 1733 | "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", 1734 | "dev": true, 1735 | "license": "MIT", 1736 | "engines": { 1737 | "node": ">= 0.4" 1738 | }, 1739 | "funding": { 1740 | "url": "https://github.com/sponsors/ljharb" 1741 | } 1742 | }, 1743 | "node_modules/is-number-object": { 1744 | "version": "1.1.1", 1745 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", 1746 | "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", 1747 | "dev": true, 1748 | "license": "MIT", 1749 | "dependencies": { 1750 | "call-bound": "^1.0.3", 1751 | "has-tostringtag": "^1.0.2" 1752 | }, 1753 | "engines": { 1754 | "node": ">= 0.4" 1755 | }, 1756 | "funding": { 1757 | "url": "https://github.com/sponsors/ljharb" 1758 | } 1759 | }, 1760 | "node_modules/is-regex": { 1761 | "version": "1.2.1", 1762 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", 1763 | "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", 1764 | "dev": true, 1765 | "license": "MIT", 1766 | "dependencies": { 1767 | "call-bound": "^1.0.2", 1768 | "gopd": "^1.2.0", 1769 | "has-tostringtag": "^1.0.2", 1770 | "hasown": "^2.0.2" 1771 | }, 1772 | "engines": { 1773 | "node": ">= 0.4" 1774 | }, 1775 | "funding": { 1776 | "url": "https://github.com/sponsors/ljharb" 1777 | } 1778 | }, 1779 | "node_modules/is-set": { 1780 | "version": "2.0.3", 1781 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", 1782 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", 1783 | "dev": true, 1784 | "license": "MIT", 1785 | "engines": { 1786 | "node": ">= 0.4" 1787 | }, 1788 | "funding": { 1789 | "url": "https://github.com/sponsors/ljharb" 1790 | } 1791 | }, 1792 | "node_modules/is-shared-array-buffer": { 1793 | "version": "1.0.4", 1794 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", 1795 | "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", 1796 | "dev": true, 1797 | "license": "MIT", 1798 | "dependencies": { 1799 | "call-bound": "^1.0.3" 1800 | }, 1801 | "engines": { 1802 | "node": ">= 0.4" 1803 | }, 1804 | "funding": { 1805 | "url": "https://github.com/sponsors/ljharb" 1806 | } 1807 | }, 1808 | "node_modules/is-string": { 1809 | "version": "1.1.1", 1810 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", 1811 | "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", 1812 | "dev": true, 1813 | "license": "MIT", 1814 | "dependencies": { 1815 | "call-bound": "^1.0.3", 1816 | "has-tostringtag": "^1.0.2" 1817 | }, 1818 | "engines": { 1819 | "node": ">= 0.4" 1820 | }, 1821 | "funding": { 1822 | "url": "https://github.com/sponsors/ljharb" 1823 | } 1824 | }, 1825 | "node_modules/is-symbol": { 1826 | "version": "1.1.1", 1827 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", 1828 | "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", 1829 | "dev": true, 1830 | "license": "MIT", 1831 | "dependencies": { 1832 | "call-bound": "^1.0.2", 1833 | "has-symbols": "^1.1.0", 1834 | "safe-regex-test": "^1.1.0" 1835 | }, 1836 | "engines": { 1837 | "node": ">= 0.4" 1838 | }, 1839 | "funding": { 1840 | "url": "https://github.com/sponsors/ljharb" 1841 | } 1842 | }, 1843 | "node_modules/is-typed-array": { 1844 | "version": "1.1.15", 1845 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", 1846 | "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", 1847 | "dev": true, 1848 | "license": "MIT", 1849 | "dependencies": { 1850 | "which-typed-array": "^1.1.16" 1851 | }, 1852 | "engines": { 1853 | "node": ">= 0.4" 1854 | }, 1855 | "funding": { 1856 | "url": "https://github.com/sponsors/ljharb" 1857 | } 1858 | }, 1859 | "node_modules/is-weakmap": { 1860 | "version": "2.0.2", 1861 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", 1862 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", 1863 | "dev": true, 1864 | "license": "MIT", 1865 | "engines": { 1866 | "node": ">= 0.4" 1867 | }, 1868 | "funding": { 1869 | "url": "https://github.com/sponsors/ljharb" 1870 | } 1871 | }, 1872 | "node_modules/is-weakref": { 1873 | "version": "1.1.1", 1874 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", 1875 | "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", 1876 | "dev": true, 1877 | "license": "MIT", 1878 | "dependencies": { 1879 | "call-bound": "^1.0.3" 1880 | }, 1881 | "engines": { 1882 | "node": ">= 0.4" 1883 | }, 1884 | "funding": { 1885 | "url": "https://github.com/sponsors/ljharb" 1886 | } 1887 | }, 1888 | "node_modules/is-weakset": { 1889 | "version": "2.0.4", 1890 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", 1891 | "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", 1892 | "dev": true, 1893 | "license": "MIT", 1894 | "dependencies": { 1895 | "call-bound": "^1.0.3", 1896 | "get-intrinsic": "^1.2.6" 1897 | }, 1898 | "engines": { 1899 | "node": ">= 0.4" 1900 | }, 1901 | "funding": { 1902 | "url": "https://github.com/sponsors/ljharb" 1903 | } 1904 | }, 1905 | "node_modules/isarray": { 1906 | "version": "2.0.5", 1907 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 1908 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 1909 | "dev": true, 1910 | "license": "MIT" 1911 | }, 1912 | "node_modules/isexe": { 1913 | "version": "2.0.0", 1914 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1915 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1916 | "dev": true, 1917 | "license": "ISC" 1918 | }, 1919 | "node_modules/js-tokens": { 1920 | "version": "4.0.0", 1921 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1922 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 1923 | "license": "MIT" 1924 | }, 1925 | "node_modules/json-parse-better-errors": { 1926 | "version": "1.0.2", 1927 | "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 1928 | "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 1929 | "dev": true, 1930 | "license": "MIT" 1931 | }, 1932 | "node_modules/load-json-file": { 1933 | "version": "4.0.0", 1934 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", 1935 | "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", 1936 | "dev": true, 1937 | "license": "MIT", 1938 | "dependencies": { 1939 | "graceful-fs": "^4.1.2", 1940 | "parse-json": "^4.0.0", 1941 | "pify": "^3.0.0", 1942 | "strip-bom": "^3.0.0" 1943 | }, 1944 | "engines": { 1945 | "node": ">=4" 1946 | } 1947 | }, 1948 | "node_modules/loose-envify": { 1949 | "version": "1.4.0", 1950 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 1951 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 1952 | "license": "MIT", 1953 | "dependencies": { 1954 | "js-tokens": "^3.0.0 || ^4.0.0" 1955 | }, 1956 | "bin": { 1957 | "loose-envify": "cli.js" 1958 | } 1959 | }, 1960 | "node_modules/math-intrinsics": { 1961 | "version": "1.1.0", 1962 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 1963 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 1964 | "dev": true, 1965 | "license": "MIT", 1966 | "engines": { 1967 | "node": ">= 0.4" 1968 | } 1969 | }, 1970 | "node_modules/memorystream": { 1971 | "version": "0.3.1", 1972 | "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", 1973 | "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", 1974 | "dev": true, 1975 | "engines": { 1976 | "node": ">= 0.10.0" 1977 | } 1978 | }, 1979 | "node_modules/minimatch": { 1980 | "version": "3.1.2", 1981 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1982 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1983 | "dev": true, 1984 | "license": "ISC", 1985 | "dependencies": { 1986 | "brace-expansion": "^1.1.7" 1987 | }, 1988 | "engines": { 1989 | "node": "*" 1990 | } 1991 | }, 1992 | "node_modules/nanoid": { 1993 | "version": "3.3.11", 1994 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 1995 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 1996 | "funding": [ 1997 | { 1998 | "type": "github", 1999 | "url": "https://github.com/sponsors/ai" 2000 | } 2001 | ], 2002 | "license": "MIT", 2003 | "bin": { 2004 | "nanoid": "bin/nanoid.cjs" 2005 | }, 2006 | "engines": { 2007 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2008 | } 2009 | }, 2010 | "node_modules/nice-try": { 2011 | "version": "1.0.5", 2012 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 2013 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 2014 | "dev": true, 2015 | "license": "MIT" 2016 | }, 2017 | "node_modules/normalize-package-data": { 2018 | "version": "2.5.0", 2019 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", 2020 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", 2021 | "dev": true, 2022 | "license": "BSD-2-Clause", 2023 | "dependencies": { 2024 | "hosted-git-info": "^2.1.4", 2025 | "resolve": "^1.10.0", 2026 | "semver": "2 || 3 || 4 || 5", 2027 | "validate-npm-package-license": "^3.0.1" 2028 | } 2029 | }, 2030 | "node_modules/npm-run-all": { 2031 | "version": "4.1.5", 2032 | "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", 2033 | "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", 2034 | "dev": true, 2035 | "license": "MIT", 2036 | "dependencies": { 2037 | "ansi-styles": "^3.2.1", 2038 | "chalk": "^2.4.1", 2039 | "cross-spawn": "^6.0.5", 2040 | "memorystream": "^0.3.1", 2041 | "minimatch": "^3.0.4", 2042 | "pidtree": "^0.3.0", 2043 | "read-pkg": "^3.0.0", 2044 | "shell-quote": "^1.6.1", 2045 | "string.prototype.padend": "^3.0.0" 2046 | }, 2047 | "bin": { 2048 | "npm-run-all": "bin/npm-run-all/index.js", 2049 | "run-p": "bin/run-p/index.js", 2050 | "run-s": "bin/run-s/index.js" 2051 | }, 2052 | "engines": { 2053 | "node": ">= 4" 2054 | } 2055 | }, 2056 | "node_modules/object-inspect": { 2057 | "version": "1.13.4", 2058 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 2059 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 2060 | "dev": true, 2061 | "license": "MIT", 2062 | "engines": { 2063 | "node": ">= 0.4" 2064 | }, 2065 | "funding": { 2066 | "url": "https://github.com/sponsors/ljharb" 2067 | } 2068 | }, 2069 | "node_modules/object-keys": { 2070 | "version": "1.1.1", 2071 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2072 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2073 | "dev": true, 2074 | "license": "MIT", 2075 | "engines": { 2076 | "node": ">= 0.4" 2077 | } 2078 | }, 2079 | "node_modules/object.assign": { 2080 | "version": "4.1.7", 2081 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", 2082 | "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", 2083 | "dev": true, 2084 | "license": "MIT", 2085 | "dependencies": { 2086 | "call-bind": "^1.0.8", 2087 | "call-bound": "^1.0.3", 2088 | "define-properties": "^1.2.1", 2089 | "es-object-atoms": "^1.0.0", 2090 | "has-symbols": "^1.1.0", 2091 | "object-keys": "^1.1.1" 2092 | }, 2093 | "engines": { 2094 | "node": ">= 0.4" 2095 | }, 2096 | "funding": { 2097 | "url": "https://github.com/sponsors/ljharb" 2098 | } 2099 | }, 2100 | "node_modules/own-keys": { 2101 | "version": "1.0.1", 2102 | "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", 2103 | "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", 2104 | "dev": true, 2105 | "license": "MIT", 2106 | "dependencies": { 2107 | "get-intrinsic": "^1.2.6", 2108 | "object-keys": "^1.1.1", 2109 | "safe-push-apply": "^1.0.0" 2110 | }, 2111 | "engines": { 2112 | "node": ">= 0.4" 2113 | }, 2114 | "funding": { 2115 | "url": "https://github.com/sponsors/ljharb" 2116 | } 2117 | }, 2118 | "node_modules/parse-json": { 2119 | "version": "4.0.0", 2120 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 2121 | "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", 2122 | "dev": true, 2123 | "license": "MIT", 2124 | "dependencies": { 2125 | "error-ex": "^1.3.1", 2126 | "json-parse-better-errors": "^1.0.1" 2127 | }, 2128 | "engines": { 2129 | "node": ">=4" 2130 | } 2131 | }, 2132 | "node_modules/path-key": { 2133 | "version": "2.0.1", 2134 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 2135 | "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", 2136 | "dev": true, 2137 | "license": "MIT", 2138 | "engines": { 2139 | "node": ">=4" 2140 | } 2141 | }, 2142 | "node_modules/path-parse": { 2143 | "version": "1.0.7", 2144 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2145 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2146 | "dev": true, 2147 | "license": "MIT" 2148 | }, 2149 | "node_modules/path-type": { 2150 | "version": "3.0.0", 2151 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", 2152 | "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", 2153 | "dev": true, 2154 | "license": "MIT", 2155 | "dependencies": { 2156 | "pify": "^3.0.0" 2157 | }, 2158 | "engines": { 2159 | "node": ">=4" 2160 | } 2161 | }, 2162 | "node_modules/picocolors": { 2163 | "version": "1.1.1", 2164 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2165 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2166 | "license": "ISC" 2167 | }, 2168 | "node_modules/picomatch": { 2169 | "version": "4.0.3", 2170 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 2171 | "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 2172 | "license": "MIT", 2173 | "engines": { 2174 | "node": ">=12" 2175 | }, 2176 | "funding": { 2177 | "url": "https://github.com/sponsors/jonschlinkert" 2178 | } 2179 | }, 2180 | "node_modules/pidtree": { 2181 | "version": "0.3.1", 2182 | "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", 2183 | "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", 2184 | "dev": true, 2185 | "license": "MIT", 2186 | "bin": { 2187 | "pidtree": "bin/pidtree.js" 2188 | }, 2189 | "engines": { 2190 | "node": ">=0.10" 2191 | } 2192 | }, 2193 | "node_modules/pify": { 2194 | "version": "3.0.0", 2195 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 2196 | "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", 2197 | "dev": true, 2198 | "license": "MIT", 2199 | "engines": { 2200 | "node": ">=4" 2201 | } 2202 | }, 2203 | "node_modules/possible-typed-array-names": { 2204 | "version": "1.1.0", 2205 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", 2206 | "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", 2207 | "dev": true, 2208 | "license": "MIT", 2209 | "engines": { 2210 | "node": ">= 0.4" 2211 | } 2212 | }, 2213 | "node_modules/postcss": { 2214 | "version": "8.5.6", 2215 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 2216 | "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 2217 | "funding": [ 2218 | { 2219 | "type": "opencollective", 2220 | "url": "https://opencollective.com/postcss/" 2221 | }, 2222 | { 2223 | "type": "tidelift", 2224 | "url": "https://tidelift.com/funding/github/npm/postcss" 2225 | }, 2226 | { 2227 | "type": "github", 2228 | "url": "https://github.com/sponsors/ai" 2229 | } 2230 | ], 2231 | "license": "MIT", 2232 | "dependencies": { 2233 | "nanoid": "^3.3.11", 2234 | "picocolors": "^1.1.1", 2235 | "source-map-js": "^1.2.1" 2236 | }, 2237 | "engines": { 2238 | "node": "^10 || ^12 || >=14" 2239 | } 2240 | }, 2241 | "node_modules/react": { 2242 | "version": "18.3.1", 2243 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", 2244 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", 2245 | "license": "MIT", 2246 | "dependencies": { 2247 | "loose-envify": "^1.1.0" 2248 | }, 2249 | "engines": { 2250 | "node": ">=0.10.0" 2251 | } 2252 | }, 2253 | "node_modules/react-dom": { 2254 | "version": "18.3.1", 2255 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", 2256 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", 2257 | "license": "MIT", 2258 | "dependencies": { 2259 | "loose-envify": "^1.1.0", 2260 | "scheduler": "^0.23.2" 2261 | }, 2262 | "peerDependencies": { 2263 | "react": "^18.3.1" 2264 | } 2265 | }, 2266 | "node_modules/read-pkg": { 2267 | "version": "3.0.0", 2268 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", 2269 | "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", 2270 | "dev": true, 2271 | "license": "MIT", 2272 | "dependencies": { 2273 | "load-json-file": "^4.0.0", 2274 | "normalize-package-data": "^2.3.2", 2275 | "path-type": "^3.0.0" 2276 | }, 2277 | "engines": { 2278 | "node": ">=4" 2279 | } 2280 | }, 2281 | "node_modules/reflect.getprototypeof": { 2282 | "version": "1.0.10", 2283 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", 2284 | "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", 2285 | "dev": true, 2286 | "license": "MIT", 2287 | "dependencies": { 2288 | "call-bind": "^1.0.8", 2289 | "define-properties": "^1.2.1", 2290 | "es-abstract": "^1.23.9", 2291 | "es-errors": "^1.3.0", 2292 | "es-object-atoms": "^1.0.0", 2293 | "get-intrinsic": "^1.2.7", 2294 | "get-proto": "^1.0.1", 2295 | "which-builtin-type": "^1.2.1" 2296 | }, 2297 | "engines": { 2298 | "node": ">= 0.4" 2299 | }, 2300 | "funding": { 2301 | "url": "https://github.com/sponsors/ljharb" 2302 | } 2303 | }, 2304 | "node_modules/regexp.prototype.flags": { 2305 | "version": "1.5.4", 2306 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", 2307 | "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", 2308 | "dev": true, 2309 | "license": "MIT", 2310 | "dependencies": { 2311 | "call-bind": "^1.0.8", 2312 | "define-properties": "^1.2.1", 2313 | "es-errors": "^1.3.0", 2314 | "get-proto": "^1.0.1", 2315 | "gopd": "^1.2.0", 2316 | "set-function-name": "^2.0.2" 2317 | }, 2318 | "engines": { 2319 | "node": ">= 0.4" 2320 | }, 2321 | "funding": { 2322 | "url": "https://github.com/sponsors/ljharb" 2323 | } 2324 | }, 2325 | "node_modules/resolve": { 2326 | "version": "1.22.11", 2327 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", 2328 | "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", 2329 | "dev": true, 2330 | "license": "MIT", 2331 | "dependencies": { 2332 | "is-core-module": "^2.16.1", 2333 | "path-parse": "^1.0.7", 2334 | "supports-preserve-symlinks-flag": "^1.0.0" 2335 | }, 2336 | "bin": { 2337 | "resolve": "bin/resolve" 2338 | }, 2339 | "engines": { 2340 | "node": ">= 0.4" 2341 | }, 2342 | "funding": { 2343 | "url": "https://github.com/sponsors/ljharb" 2344 | } 2345 | }, 2346 | "node_modules/rollup": { 2347 | "version": "4.53.3", 2348 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", 2349 | "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", 2350 | "license": "MIT", 2351 | "dependencies": { 2352 | "@types/estree": "1.0.8" 2353 | }, 2354 | "bin": { 2355 | "rollup": "dist/bin/rollup" 2356 | }, 2357 | "engines": { 2358 | "node": ">=18.0.0", 2359 | "npm": ">=8.0.0" 2360 | }, 2361 | "optionalDependencies": { 2362 | "@rollup/rollup-android-arm-eabi": "4.53.3", 2363 | "@rollup/rollup-android-arm64": "4.53.3", 2364 | "@rollup/rollup-darwin-arm64": "4.53.3", 2365 | "@rollup/rollup-darwin-x64": "4.53.3", 2366 | "@rollup/rollup-freebsd-arm64": "4.53.3", 2367 | "@rollup/rollup-freebsd-x64": "4.53.3", 2368 | "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", 2369 | "@rollup/rollup-linux-arm-musleabihf": "4.53.3", 2370 | "@rollup/rollup-linux-arm64-gnu": "4.53.3", 2371 | "@rollup/rollup-linux-arm64-musl": "4.53.3", 2372 | "@rollup/rollup-linux-loong64-gnu": "4.53.3", 2373 | "@rollup/rollup-linux-ppc64-gnu": "4.53.3", 2374 | "@rollup/rollup-linux-riscv64-gnu": "4.53.3", 2375 | "@rollup/rollup-linux-riscv64-musl": "4.53.3", 2376 | "@rollup/rollup-linux-s390x-gnu": "4.53.3", 2377 | "@rollup/rollup-linux-x64-gnu": "4.53.3", 2378 | "@rollup/rollup-linux-x64-musl": "4.53.3", 2379 | "@rollup/rollup-openharmony-arm64": "4.53.3", 2380 | "@rollup/rollup-win32-arm64-msvc": "4.53.3", 2381 | "@rollup/rollup-win32-ia32-msvc": "4.53.3", 2382 | "@rollup/rollup-win32-x64-gnu": "4.53.3", 2383 | "@rollup/rollup-win32-x64-msvc": "4.53.3", 2384 | "fsevents": "~2.3.2" 2385 | } 2386 | }, 2387 | "node_modules/safe-array-concat": { 2388 | "version": "1.1.3", 2389 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", 2390 | "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", 2391 | "dev": true, 2392 | "license": "MIT", 2393 | "dependencies": { 2394 | "call-bind": "^1.0.8", 2395 | "call-bound": "^1.0.2", 2396 | "get-intrinsic": "^1.2.6", 2397 | "has-symbols": "^1.1.0", 2398 | "isarray": "^2.0.5" 2399 | }, 2400 | "engines": { 2401 | "node": ">=0.4" 2402 | }, 2403 | "funding": { 2404 | "url": "https://github.com/sponsors/ljharb" 2405 | } 2406 | }, 2407 | "node_modules/safe-push-apply": { 2408 | "version": "1.0.0", 2409 | "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", 2410 | "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", 2411 | "dev": true, 2412 | "license": "MIT", 2413 | "dependencies": { 2414 | "es-errors": "^1.3.0", 2415 | "isarray": "^2.0.5" 2416 | }, 2417 | "engines": { 2418 | "node": ">= 0.4" 2419 | }, 2420 | "funding": { 2421 | "url": "https://github.com/sponsors/ljharb" 2422 | } 2423 | }, 2424 | "node_modules/safe-regex-test": { 2425 | "version": "1.1.0", 2426 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", 2427 | "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", 2428 | "dev": true, 2429 | "license": "MIT", 2430 | "dependencies": { 2431 | "call-bound": "^1.0.2", 2432 | "es-errors": "^1.3.0", 2433 | "is-regex": "^1.2.1" 2434 | }, 2435 | "engines": { 2436 | "node": ">= 0.4" 2437 | }, 2438 | "funding": { 2439 | "url": "https://github.com/sponsors/ljharb" 2440 | } 2441 | }, 2442 | "node_modules/scheduler": { 2443 | "version": "0.23.2", 2444 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", 2445 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", 2446 | "license": "MIT", 2447 | "dependencies": { 2448 | "loose-envify": "^1.1.0" 2449 | } 2450 | }, 2451 | "node_modules/semver": { 2452 | "version": "5.7.2", 2453 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 2454 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 2455 | "dev": true, 2456 | "license": "ISC", 2457 | "bin": { 2458 | "semver": "bin/semver" 2459 | } 2460 | }, 2461 | "node_modules/set-function-length": { 2462 | "version": "1.2.2", 2463 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 2464 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 2465 | "dev": true, 2466 | "license": "MIT", 2467 | "dependencies": { 2468 | "define-data-property": "^1.1.4", 2469 | "es-errors": "^1.3.0", 2470 | "function-bind": "^1.1.2", 2471 | "get-intrinsic": "^1.2.4", 2472 | "gopd": "^1.0.1", 2473 | "has-property-descriptors": "^1.0.2" 2474 | }, 2475 | "engines": { 2476 | "node": ">= 0.4" 2477 | } 2478 | }, 2479 | "node_modules/set-function-name": { 2480 | "version": "2.0.2", 2481 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 2482 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 2483 | "dev": true, 2484 | "license": "MIT", 2485 | "dependencies": { 2486 | "define-data-property": "^1.1.4", 2487 | "es-errors": "^1.3.0", 2488 | "functions-have-names": "^1.2.3", 2489 | "has-property-descriptors": "^1.0.2" 2490 | }, 2491 | "engines": { 2492 | "node": ">= 0.4" 2493 | } 2494 | }, 2495 | "node_modules/set-proto": { 2496 | "version": "1.0.0", 2497 | "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", 2498 | "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", 2499 | "dev": true, 2500 | "license": "MIT", 2501 | "dependencies": { 2502 | "dunder-proto": "^1.0.1", 2503 | "es-errors": "^1.3.0", 2504 | "es-object-atoms": "^1.0.0" 2505 | }, 2506 | "engines": { 2507 | "node": ">= 0.4" 2508 | } 2509 | }, 2510 | "node_modules/shebang-command": { 2511 | "version": "1.2.0", 2512 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2513 | "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", 2514 | "dev": true, 2515 | "license": "MIT", 2516 | "dependencies": { 2517 | "shebang-regex": "^1.0.0" 2518 | }, 2519 | "engines": { 2520 | "node": ">=0.10.0" 2521 | } 2522 | }, 2523 | "node_modules/shebang-regex": { 2524 | "version": "1.0.0", 2525 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2526 | "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", 2527 | "dev": true, 2528 | "license": "MIT", 2529 | "engines": { 2530 | "node": ">=0.10.0" 2531 | } 2532 | }, 2533 | "node_modules/shell-quote": { 2534 | "version": "1.8.3", 2535 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", 2536 | "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", 2537 | "dev": true, 2538 | "license": "MIT", 2539 | "engines": { 2540 | "node": ">= 0.4" 2541 | }, 2542 | "funding": { 2543 | "url": "https://github.com/sponsors/ljharb" 2544 | } 2545 | }, 2546 | "node_modules/side-channel": { 2547 | "version": "1.1.0", 2548 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 2549 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 2550 | "dev": true, 2551 | "license": "MIT", 2552 | "dependencies": { 2553 | "es-errors": "^1.3.0", 2554 | "object-inspect": "^1.13.3", 2555 | "side-channel-list": "^1.0.0", 2556 | "side-channel-map": "^1.0.1", 2557 | "side-channel-weakmap": "^1.0.2" 2558 | }, 2559 | "engines": { 2560 | "node": ">= 0.4" 2561 | }, 2562 | "funding": { 2563 | "url": "https://github.com/sponsors/ljharb" 2564 | } 2565 | }, 2566 | "node_modules/side-channel-list": { 2567 | "version": "1.0.0", 2568 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 2569 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 2570 | "dev": true, 2571 | "license": "MIT", 2572 | "dependencies": { 2573 | "es-errors": "^1.3.0", 2574 | "object-inspect": "^1.13.3" 2575 | }, 2576 | "engines": { 2577 | "node": ">= 0.4" 2578 | }, 2579 | "funding": { 2580 | "url": "https://github.com/sponsors/ljharb" 2581 | } 2582 | }, 2583 | "node_modules/side-channel-map": { 2584 | "version": "1.0.1", 2585 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 2586 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 2587 | "dev": true, 2588 | "license": "MIT", 2589 | "dependencies": { 2590 | "call-bound": "^1.0.2", 2591 | "es-errors": "^1.3.0", 2592 | "get-intrinsic": "^1.2.5", 2593 | "object-inspect": "^1.13.3" 2594 | }, 2595 | "engines": { 2596 | "node": ">= 0.4" 2597 | }, 2598 | "funding": { 2599 | "url": "https://github.com/sponsors/ljharb" 2600 | } 2601 | }, 2602 | "node_modules/side-channel-weakmap": { 2603 | "version": "1.0.2", 2604 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 2605 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 2606 | "dev": true, 2607 | "license": "MIT", 2608 | "dependencies": { 2609 | "call-bound": "^1.0.2", 2610 | "es-errors": "^1.3.0", 2611 | "get-intrinsic": "^1.2.5", 2612 | "object-inspect": "^1.13.3", 2613 | "side-channel-map": "^1.0.1" 2614 | }, 2615 | "engines": { 2616 | "node": ">= 0.4" 2617 | }, 2618 | "funding": { 2619 | "url": "https://github.com/sponsors/ljharb" 2620 | } 2621 | }, 2622 | "node_modules/source-map-js": { 2623 | "version": "1.2.1", 2624 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2625 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2626 | "license": "BSD-3-Clause", 2627 | "engines": { 2628 | "node": ">=0.10.0" 2629 | } 2630 | }, 2631 | "node_modules/spdx-correct": { 2632 | "version": "3.2.0", 2633 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 2634 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 2635 | "dev": true, 2636 | "license": "Apache-2.0", 2637 | "dependencies": { 2638 | "spdx-expression-parse": "^3.0.0", 2639 | "spdx-license-ids": "^3.0.0" 2640 | } 2641 | }, 2642 | "node_modules/spdx-exceptions": { 2643 | "version": "2.5.0", 2644 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", 2645 | "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", 2646 | "dev": true, 2647 | "license": "CC-BY-3.0" 2648 | }, 2649 | "node_modules/spdx-expression-parse": { 2650 | "version": "3.0.1", 2651 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 2652 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 2653 | "dev": true, 2654 | "license": "MIT", 2655 | "dependencies": { 2656 | "spdx-exceptions": "^2.1.0", 2657 | "spdx-license-ids": "^3.0.0" 2658 | } 2659 | }, 2660 | "node_modules/spdx-license-ids": { 2661 | "version": "3.0.22", 2662 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz", 2663 | "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==", 2664 | "dev": true, 2665 | "license": "CC0-1.0" 2666 | }, 2667 | "node_modules/stop-iteration-iterator": { 2668 | "version": "1.1.0", 2669 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", 2670 | "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", 2671 | "dev": true, 2672 | "license": "MIT", 2673 | "dependencies": { 2674 | "es-errors": "^1.3.0", 2675 | "internal-slot": "^1.1.0" 2676 | }, 2677 | "engines": { 2678 | "node": ">= 0.4" 2679 | } 2680 | }, 2681 | "node_modules/string.prototype.padend": { 2682 | "version": "3.1.6", 2683 | "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz", 2684 | "integrity": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==", 2685 | "dev": true, 2686 | "license": "MIT", 2687 | "dependencies": { 2688 | "call-bind": "^1.0.7", 2689 | "define-properties": "^1.2.1", 2690 | "es-abstract": "^1.23.2", 2691 | "es-object-atoms": "^1.0.0" 2692 | }, 2693 | "engines": { 2694 | "node": ">= 0.4" 2695 | }, 2696 | "funding": { 2697 | "url": "https://github.com/sponsors/ljharb" 2698 | } 2699 | }, 2700 | "node_modules/string.prototype.trim": { 2701 | "version": "1.2.10", 2702 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", 2703 | "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", 2704 | "dev": true, 2705 | "license": "MIT", 2706 | "dependencies": { 2707 | "call-bind": "^1.0.8", 2708 | "call-bound": "^1.0.2", 2709 | "define-data-property": "^1.1.4", 2710 | "define-properties": "^1.2.1", 2711 | "es-abstract": "^1.23.5", 2712 | "es-object-atoms": "^1.0.0", 2713 | "has-property-descriptors": "^1.0.2" 2714 | }, 2715 | "engines": { 2716 | "node": ">= 0.4" 2717 | }, 2718 | "funding": { 2719 | "url": "https://github.com/sponsors/ljharb" 2720 | } 2721 | }, 2722 | "node_modules/string.prototype.trimend": { 2723 | "version": "1.0.9", 2724 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", 2725 | "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", 2726 | "dev": true, 2727 | "license": "MIT", 2728 | "dependencies": { 2729 | "call-bind": "^1.0.8", 2730 | "call-bound": "^1.0.2", 2731 | "define-properties": "^1.2.1", 2732 | "es-object-atoms": "^1.0.0" 2733 | }, 2734 | "engines": { 2735 | "node": ">= 0.4" 2736 | }, 2737 | "funding": { 2738 | "url": "https://github.com/sponsors/ljharb" 2739 | } 2740 | }, 2741 | "node_modules/string.prototype.trimstart": { 2742 | "version": "1.0.8", 2743 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", 2744 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", 2745 | "dev": true, 2746 | "license": "MIT", 2747 | "dependencies": { 2748 | "call-bind": "^1.0.7", 2749 | "define-properties": "^1.2.1", 2750 | "es-object-atoms": "^1.0.0" 2751 | }, 2752 | "engines": { 2753 | "node": ">= 0.4" 2754 | }, 2755 | "funding": { 2756 | "url": "https://github.com/sponsors/ljharb" 2757 | } 2758 | }, 2759 | "node_modules/strip-bom": { 2760 | "version": "3.0.0", 2761 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 2762 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 2763 | "dev": true, 2764 | "license": "MIT", 2765 | "engines": { 2766 | "node": ">=4" 2767 | } 2768 | }, 2769 | "node_modules/supports-color": { 2770 | "version": "5.5.0", 2771 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2772 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2773 | "dev": true, 2774 | "license": "MIT", 2775 | "dependencies": { 2776 | "has-flag": "^3.0.0" 2777 | }, 2778 | "engines": { 2779 | "node": ">=4" 2780 | } 2781 | }, 2782 | "node_modules/supports-preserve-symlinks-flag": { 2783 | "version": "1.0.0", 2784 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2785 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2786 | "dev": true, 2787 | "license": "MIT", 2788 | "engines": { 2789 | "node": ">= 0.4" 2790 | }, 2791 | "funding": { 2792 | "url": "https://github.com/sponsors/ljharb" 2793 | } 2794 | }, 2795 | "node_modules/tinyglobby": { 2796 | "version": "0.2.15", 2797 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 2798 | "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 2799 | "license": "MIT", 2800 | "dependencies": { 2801 | "fdir": "^6.5.0", 2802 | "picomatch": "^4.0.3" 2803 | }, 2804 | "engines": { 2805 | "node": ">=12.0.0" 2806 | }, 2807 | "funding": { 2808 | "url": "https://github.com/sponsors/SuperchupuDev" 2809 | } 2810 | }, 2811 | "node_modules/typed-array-buffer": { 2812 | "version": "1.0.3", 2813 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", 2814 | "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", 2815 | "dev": true, 2816 | "license": "MIT", 2817 | "dependencies": { 2818 | "call-bound": "^1.0.3", 2819 | "es-errors": "^1.3.0", 2820 | "is-typed-array": "^1.1.14" 2821 | }, 2822 | "engines": { 2823 | "node": ">= 0.4" 2824 | } 2825 | }, 2826 | "node_modules/typed-array-byte-length": { 2827 | "version": "1.0.3", 2828 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", 2829 | "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", 2830 | "dev": true, 2831 | "license": "MIT", 2832 | "dependencies": { 2833 | "call-bind": "^1.0.8", 2834 | "for-each": "^0.3.3", 2835 | "gopd": "^1.2.0", 2836 | "has-proto": "^1.2.0", 2837 | "is-typed-array": "^1.1.14" 2838 | }, 2839 | "engines": { 2840 | "node": ">= 0.4" 2841 | }, 2842 | "funding": { 2843 | "url": "https://github.com/sponsors/ljharb" 2844 | } 2845 | }, 2846 | "node_modules/typed-array-byte-offset": { 2847 | "version": "1.0.4", 2848 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", 2849 | "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", 2850 | "dev": true, 2851 | "license": "MIT", 2852 | "dependencies": { 2853 | "available-typed-arrays": "^1.0.7", 2854 | "call-bind": "^1.0.8", 2855 | "for-each": "^0.3.3", 2856 | "gopd": "^1.2.0", 2857 | "has-proto": "^1.2.0", 2858 | "is-typed-array": "^1.1.15", 2859 | "reflect.getprototypeof": "^1.0.9" 2860 | }, 2861 | "engines": { 2862 | "node": ">= 0.4" 2863 | }, 2864 | "funding": { 2865 | "url": "https://github.com/sponsors/ljharb" 2866 | } 2867 | }, 2868 | "node_modules/typed-array-length": { 2869 | "version": "1.0.7", 2870 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", 2871 | "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", 2872 | "dev": true, 2873 | "license": "MIT", 2874 | "dependencies": { 2875 | "call-bind": "^1.0.7", 2876 | "for-each": "^0.3.3", 2877 | "gopd": "^1.0.1", 2878 | "is-typed-array": "^1.1.13", 2879 | "possible-typed-array-names": "^1.0.0", 2880 | "reflect.getprototypeof": "^1.0.6" 2881 | }, 2882 | "engines": { 2883 | "node": ">= 0.4" 2884 | }, 2885 | "funding": { 2886 | "url": "https://github.com/sponsors/ljharb" 2887 | } 2888 | }, 2889 | "node_modules/unbox-primitive": { 2890 | "version": "1.1.0", 2891 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", 2892 | "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", 2893 | "dev": true, 2894 | "license": "MIT", 2895 | "dependencies": { 2896 | "call-bound": "^1.0.3", 2897 | "has-bigints": "^1.0.2", 2898 | "has-symbols": "^1.1.0", 2899 | "which-boxed-primitive": "^1.1.1" 2900 | }, 2901 | "engines": { 2902 | "node": ">= 0.4" 2903 | }, 2904 | "funding": { 2905 | "url": "https://github.com/sponsors/ljharb" 2906 | } 2907 | }, 2908 | "node_modules/validate-npm-package-license": { 2909 | "version": "3.0.4", 2910 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 2911 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 2912 | "dev": true, 2913 | "license": "Apache-2.0", 2914 | "dependencies": { 2915 | "spdx-correct": "^3.0.0", 2916 | "spdx-expression-parse": "^3.0.0" 2917 | } 2918 | }, 2919 | "node_modules/vite": { 2920 | "version": "7.2.4", 2921 | "resolved": "https://registry.npmjs.org/vite/-/vite-7.2.4.tgz", 2922 | "integrity": "sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==", 2923 | "license": "MIT", 2924 | "dependencies": { 2925 | "esbuild": "^0.25.0", 2926 | "fdir": "^6.5.0", 2927 | "picomatch": "^4.0.3", 2928 | "postcss": "^8.5.6", 2929 | "rollup": "^4.43.0", 2930 | "tinyglobby": "^0.2.15" 2931 | }, 2932 | "bin": { 2933 | "vite": "bin/vite.js" 2934 | }, 2935 | "engines": { 2936 | "node": "^20.19.0 || >=22.12.0" 2937 | }, 2938 | "funding": { 2939 | "url": "https://github.com/vitejs/vite?sponsor=1" 2940 | }, 2941 | "optionalDependencies": { 2942 | "fsevents": "~2.3.3" 2943 | }, 2944 | "peerDependencies": { 2945 | "@types/node": "^20.19.0 || >=22.12.0", 2946 | "jiti": ">=1.21.0", 2947 | "less": "^4.0.0", 2948 | "lightningcss": "^1.21.0", 2949 | "sass": "^1.70.0", 2950 | "sass-embedded": "^1.70.0", 2951 | "stylus": ">=0.54.8", 2952 | "sugarss": "^5.0.0", 2953 | "terser": "^5.16.0", 2954 | "tsx": "^4.8.1", 2955 | "yaml": "^2.4.2" 2956 | }, 2957 | "peerDependenciesMeta": { 2958 | "@types/node": { 2959 | "optional": true 2960 | }, 2961 | "jiti": { 2962 | "optional": true 2963 | }, 2964 | "less": { 2965 | "optional": true 2966 | }, 2967 | "lightningcss": { 2968 | "optional": true 2969 | }, 2970 | "sass": { 2971 | "optional": true 2972 | }, 2973 | "sass-embedded": { 2974 | "optional": true 2975 | }, 2976 | "stylus": { 2977 | "optional": true 2978 | }, 2979 | "sugarss": { 2980 | "optional": true 2981 | }, 2982 | "terser": { 2983 | "optional": true 2984 | }, 2985 | "tsx": { 2986 | "optional": true 2987 | }, 2988 | "yaml": { 2989 | "optional": true 2990 | } 2991 | } 2992 | }, 2993 | "node_modules/which": { 2994 | "version": "1.3.1", 2995 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2996 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2997 | "dev": true, 2998 | "license": "ISC", 2999 | "dependencies": { 3000 | "isexe": "^2.0.0" 3001 | }, 3002 | "bin": { 3003 | "which": "bin/which" 3004 | } 3005 | }, 3006 | "node_modules/which-boxed-primitive": { 3007 | "version": "1.1.1", 3008 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", 3009 | "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", 3010 | "dev": true, 3011 | "license": "MIT", 3012 | "dependencies": { 3013 | "is-bigint": "^1.1.0", 3014 | "is-boolean-object": "^1.2.1", 3015 | "is-number-object": "^1.1.1", 3016 | "is-string": "^1.1.1", 3017 | "is-symbol": "^1.1.1" 3018 | }, 3019 | "engines": { 3020 | "node": ">= 0.4" 3021 | }, 3022 | "funding": { 3023 | "url": "https://github.com/sponsors/ljharb" 3024 | } 3025 | }, 3026 | "node_modules/which-builtin-type": { 3027 | "version": "1.2.1", 3028 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", 3029 | "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", 3030 | "dev": true, 3031 | "license": "MIT", 3032 | "dependencies": { 3033 | "call-bound": "^1.0.2", 3034 | "function.prototype.name": "^1.1.6", 3035 | "has-tostringtag": "^1.0.2", 3036 | "is-async-function": "^2.0.0", 3037 | "is-date-object": "^1.1.0", 3038 | "is-finalizationregistry": "^1.1.0", 3039 | "is-generator-function": "^1.0.10", 3040 | "is-regex": "^1.2.1", 3041 | "is-weakref": "^1.0.2", 3042 | "isarray": "^2.0.5", 3043 | "which-boxed-primitive": "^1.1.0", 3044 | "which-collection": "^1.0.2", 3045 | "which-typed-array": "^1.1.16" 3046 | }, 3047 | "engines": { 3048 | "node": ">= 0.4" 3049 | }, 3050 | "funding": { 3051 | "url": "https://github.com/sponsors/ljharb" 3052 | } 3053 | }, 3054 | "node_modules/which-collection": { 3055 | "version": "1.0.2", 3056 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 3057 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 3058 | "dev": true, 3059 | "license": "MIT", 3060 | "dependencies": { 3061 | "is-map": "^2.0.3", 3062 | "is-set": "^2.0.3", 3063 | "is-weakmap": "^2.0.2", 3064 | "is-weakset": "^2.0.3" 3065 | }, 3066 | "engines": { 3067 | "node": ">= 0.4" 3068 | }, 3069 | "funding": { 3070 | "url": "https://github.com/sponsors/ljharb" 3071 | } 3072 | }, 3073 | "node_modules/which-typed-array": { 3074 | "version": "1.1.19", 3075 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", 3076 | "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", 3077 | "dev": true, 3078 | "license": "MIT", 3079 | "dependencies": { 3080 | "available-typed-arrays": "^1.0.7", 3081 | "call-bind": "^1.0.8", 3082 | "call-bound": "^1.0.4", 3083 | "for-each": "^0.3.5", 3084 | "get-proto": "^1.0.1", 3085 | "gopd": "^1.2.0", 3086 | "has-tostringtag": "^1.0.2" 3087 | }, 3088 | "engines": { 3089 | "node": ">= 0.4" 3090 | }, 3091 | "funding": { 3092 | "url": "https://github.com/sponsors/ljharb" 3093 | } 3094 | } 3095 | } 3096 | } 3097 | --------------------------------------------------------------------------------