├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── eslint.config.js ├── example-app ├── client.js ├── index.html └── server.js ├── index.mjs ├── lib ├── channel.mjs └── wrapper.mjs ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .parcel-cache 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /example-app 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "semi": false, 4 | "trailingComma": "es5", 5 | "proseWrap": "always", 6 | } 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016-2017. Blake C. Miner 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ws-wrapper 2 | 3 | Lightweight and isomorphic [Web Socket](https://en.wikipedia.org/wiki/WebSocket) 4 | lib with socket.io-like event handling, Promise-based requests, and channels. 5 | 6 | ## What? 7 | 8 | Much like Socket.io, this library provides a protocol and API that sits on top 9 | of native WebSockets. Rather than passing raw messages through the WebSocket via 10 | [`WebSocket.send()`](), 11 | this library provides an RPC-like API that allows you to pass JSON data over 12 | WebSockets and trigger event handlers on the remote end. There is also a 13 | Promise-based request/response API, as well. 14 | 15 | This library is isomorphic, so it can wrap WebSockets on the client (i.e. 16 | browser) or on a Node.js server using the [ws](https://github.com/websockets/ws) 17 | library. You can get even fancier on the server side and utilize the 18 | [ws-server-wrapper](https://github.com/bminer/ws-server-wrapper) library 19 | (**recommended**). 20 | 21 | ## Why? 22 | 23 | Because lightweight is sometimes what you want. This library and its 24 | dependencies weigh under 3 KB when minified and gzipped! 25 | 26 | This lib might be useful if you want some [socket.io](http://socket.io/docs/) 27 | functionality (i.e. namespaces, event handling, etc.), but you don't want all of 28 | the [engine.io](https://github.com/socketio/engine.io) transports. When using 29 | this library in conjunction with a library like 30 | [ws](https://github.com/websockets/ws), your real-time web application can be 31 | pretty darn lightweight without giving up some nice bare-bones functionality. 32 | 33 | ## Install 34 | 35 | ``` 36 | npm install ws-wrapper 37 | ``` 38 | 39 | ## Usage 40 | 41 | WebSocketWrapper is a CommonJS module, so it works in Node.js and in the browser 42 | if you use a bundler like Browserify, Webpack, Parcel.js, or 43 | [module-concat](https://github.com/bminer/module-concat). 44 | 45 | Check out the 46 | [example-app](https://github.com/bminer/ws-wrapper/tree/master/example-app) for 47 | a sample chat application (**recommended**). 48 | 49 | Note: This module uses ES6 classes. If you need this to work in IE or another 50 | old, decrepit browser, try using a code transpiler like 51 | [Babel](https://babeljs.io/). 52 | 53 | Note: This module uses `JSON.stringify` to serialize data over the raw WebSocket 54 | connection. This means that serializing circular references is not supported out 55 | of the box. 56 | 57 | #### Client-side 58 | 59 | ```javascript 60 | // Use a bundler to make the next line of code "work" on the browser 61 | import WebSocketWrapper from "ws-wrapper" 62 | // Create a new socket 63 | var socket = new WebSocketWrapper(new WebSocket("ws://" + location.hostname)) 64 | // Now use the WebSocketWrapper API... `socket.emit` for example 65 | // See examples below... 66 | ``` 67 | 68 | #### Server-side (Node.js) 69 | 70 | Use [ws-server-wrapper](https://github.com/bminer/ws-server-wrapper) to wrap the 71 | WebSocketServer (**recommended**). See ws-server-wrapper README for more 72 | details. 73 | 74 | If you don't want to use ws-server-wrapper, you can wrap the WebSocket once a 75 | new WebSocket connects like this: 76 | 77 | ```javascript 78 | import { WebSocketServer } from "ws" 79 | import WebSocketWrapper from "ws-wrapper" 80 | var wss = new WebSocketServer({ port: 3000 }) 81 | wss.on("connection", (socket) => { 82 | socket = new WebSocketWrapper(socket) 83 | // ... 84 | }) 85 | ``` 86 | 87 | #### Server-side (Go) 88 | 89 | Use [ws-server-wrapper-go](https://github.com/bminer/ws-server-wrapper-go) to 90 | wrap your favorite WebSocket library. See 91 | [here for a complete example](https://pkg.go.dev/github.com/bminer/ws-server-wrapper-go@v0.0.0-20250119025659-ed3a0d67b7c5/adapters/coder#example-package) 92 | using the [coder/websocket](https://github.com/coder/websocket) library. 93 | 94 | #### Other servers 95 | 96 | No such libraries exist yet. :( Please create one, and let me know about it! 97 | I'll give you beer! 98 | 99 | ## Event Handling 100 | 101 | It's what you'd expect of an event handler API. 102 | 103 | Call `on` or `once` to bind an event handler to the `wrapper` or to a channel. 104 | Call `emit` to send an event. 105 | 106 | Server-side Example (_without using ws-server-wrapper_): 107 | 108 | ```javascript 109 | import { WebSocketServer } from "ws" 110 | import WebSocketWrapper from "ws-wrapper" 111 | var wss = new WebSocketServer({ port: 3000 }) 112 | var sockets = new Set() 113 | wss.on("connection", (socket) => { 114 | var socket = new WebSocketWrapper(socket) 115 | sockets.add(socket) 116 | socket.on("msg", function (from, msg) { 117 | // `this` refers to the WebSocketWrapper instance 118 | console.log(`Received message from ${from}: ${msg}`) 119 | // Relay message to all clients 120 | sockets.forEach((socket) => { 121 | socket.emit("msg", from, msg) 122 | }) 123 | }) 124 | socket.on("disconnect", () => { 125 | sockets.delete(socket) 126 | }) 127 | }) 128 | ``` 129 | 130 | Client-side Example: 131 | 132 | ```javascript 133 | // Use a bundler to make the next line of code "work" on the browser 134 | import WebSocketWrapper from "ws-wrapper" 135 | // Establish connection 136 | var socket = new WebSocketWrapper(new WebSocket("ws://" + location.host)) 137 | // Add "msg" event handler 138 | socket.on("msg", function (from, msg) { 139 | console.log(`Received message from ${from}: ${msg}`) 140 | }) 141 | // Emit "msg" event 142 | socket.emit("msg", "my_name", "This is a test message") 143 | ``` 144 | 145 | ## Channels 146 | 147 | Just like in socket.io, you can "namespace" your events using channels. When 148 | sending messages to multiple channels, the same WebSocket connection is reused, 149 | but the events are logically separated into their appropriate channels. 150 | 151 | By default, calling `emit` directly on a WebSocketWrapper instance will send the 152 | message over the "default" channel. To send a message over a channel named 153 | "foo", just call `socket.of("foo").emit("eventName", "yourData")`. 154 | 155 | ## Request / Response 156 | 157 | Event handlers can return values or 158 | [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) 159 | to respond to requests. The response is sent back to the remote end. 160 | 161 | The example below shows the client requesting data from the server, but 162 | ws-wrapper also allows servers to request data from the client. 163 | 164 | Server-side Example (_without using ws-server-wrapper_): 165 | 166 | ```javascript 167 | import fs from "node:fs" 168 | import { WebSocketServer } from "ws" 169 | import WebSocketWrapper from "ws-wrapper" 170 | var wss = new WebSocketServer({ port: 3000 }) 171 | var sockets = new Set() 172 | wss.on("connection", (socket) => { 173 | socket = new WebSocketWrapper(socket) 174 | sockets.add(socket) 175 | socket.on("userCount", () => { 176 | // Return value is sent back to the client 177 | return sockets.size 178 | }) 179 | socket.on("readFile", (path) => { 180 | // We can return a Promise that eventually resolves 181 | return new Promise((resolve, reject) => { 182 | // `path` should obviously be sanitized, but just go with it... 183 | fs.readFile(path, (err, data) => { 184 | // `err` or `data` are now sent back to the client 185 | if (err) reject(err) 186 | else resolve(data.toString("utf8")) 187 | }) 188 | }) 189 | }) 190 | socket.on("disconnect", () => { 191 | sockets.delete(socket) 192 | }) 193 | }) 194 | ``` 195 | 196 | Client-side Example: 197 | 198 | ```javascript 199 | // Assuming WebSocketWrapper is somehow available to this scope... 200 | var socket = new WebSocketWrapper(new WebSocket("ws://" + location.host)) 201 | var p = socket.request("userCount") 202 | // `p` is a Promise that will resolve when the server responds... 203 | p.then((count) => { 204 | console.log("User count: " + count) 205 | }).catch((err) => { 206 | console.error("An error occurred while getting the user count:", err) 207 | }) 208 | socket 209 | .request("readFile", "/etc/issue") 210 | .then((data) => { 211 | console.log("File contents:", data) 212 | }) 213 | .catch((err) => { 214 | console.error("Error reading file:", err) 215 | }) 216 | ``` 217 | 218 | ## API 219 | 220 | Class: WebSocketWrapper 221 | 222 | A WebSocketWrapper simply wraps around a WebSocket to give you well-deserved 223 | functionality. :) 224 | 225 | `socket = new WebSocketWrapper(webSocketInstance[, options]);` 226 | 227 | Constructs a new WebSocketWrapper, and binds it to the native WebSocket 228 | instance. 229 | 230 | - `webSocketInstance` - the native WebSocket instance 231 | - `options` 232 | - `debug` - set to `true` to print debugging messages to `console.log` 233 | - `errorToJSON` - function to serialize Errors over the WebSocket. In Node.js, 234 | the default is to send only the `message` property of the Error (for 235 | security reasons). Errors that occur on the browser include all properties. 236 | - `requestTimeout` - maximum delay in ms. that the WebSocketWrapper will wait 237 | until rejecting the Promise of a pending request. Defaults to `null`, which 238 | means that there will be no timeout. This option is recommended for servers 239 | because clients who do not fulfill pending requests can cause memory leaks. 240 | 241 | Events 242 | 243 | - Event: "open" / "connect" 244 | - `event` - The (worthless) event from the native WebSocket instance 245 | - Event: "error" 246 | - `event` - The Error event from the native WebSocket instance 247 | - Event: "message" 248 | - `event` - The 249 | [Message event](https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent) 250 | from the native WebSocket instance 251 | - `data` - The message data (same as `event.data`) 252 | - Event: "close" / "disconnect" 253 | - `event` - The 254 | [Close event](https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent) 255 | from the native WebSocket instance 256 | - `wasOpen` - `true` if the "open" event was fired on the native WebSocket 257 | instance before the "close" event was fired. 258 | 259 | _Note: The "special" events listed above are not sent over the WebSocket._ 260 | 261 | The EventEmitter-like API looks like this: 262 | 263 | - `socket.on(eventName, listener)` Adds the `listener` function to the end of 264 | the listeners array for the event named `eventName`. When an event or request 265 | matching the `eventName` is received by the WebSocket, the `listener` is 266 | called. 267 | 268 | Values returned by the `listener` callback are used to respond to requests 269 | (see `socket.request`). If the return value of the `listener` is a `Promise`, 270 | the response to the request will be sent once the Promise is resolved or 271 | rejected; otherwise, the return value of the `listener` is sent back to the 272 | remote end immediately. 273 | 274 | If the inbound message is a simple event (see `socket.emit`), the return value 275 | of the `listener` is ignored. It is also "safe" for the `listener` to return a 276 | `Promise` even if the inbound message is a "simple" event. If the returned 277 | `Promise` is rejected, an unhandled rejection will not occur; rather, the 278 | result of the Promise is just ignored. 279 | 280 | If the `listener` throws an Error, this Error will propagate up the stack as 281 | expected, and if the inbound message was a request, the Error is sent back to 282 | the remote end as a response rejection. 283 | 284 | - `socket.once(eventName, listener)` Adds a one time `listener` function for the 285 | event named `eventName`. 286 | - `socket.removeListener(eventName, listener)` Removes the specified `listener` 287 | from the listener array for the event named `eventName`. 288 | - `socket.removeAllListeners([eventName])` Removes all listeners, or those of 289 | the specified `eventName`. 290 | - `socket.eventNames()` Returns an array listing the events for which the 291 | emitter has registered listeners. 292 | - `socket.listeners(eventName)` Returns a copy of the array of listeners for the 293 | event named `eventName`. 294 | - `socket.emit(eventName[, ...args])` Sends an event down the WebSocket with the 295 | specified `eventName` calling all listeners for `eventName` on the remote end, 296 | in the order they were registered, passing the supplied arguments to each. 297 | - `socket.request(eventName[, ...args])` Sends a request down the WebSocket with 298 | the specified `eventName` and returns a 299 | [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) 300 | that will resolve once the remote event listener responds. 301 | 302 | **Note**: While it is common design for only one event listener to exist on 303 | the remote end, all listeners for `eventName` on the remote end are called, in 304 | the order they were registered, passing the supplied arguments to each. Since 305 | Promises can only be resolved or rejected once, only the data from the first 306 | event listener is used to generate the response for this request. 307 | 308 | **Note**: If a request is sent, but there is no remote event listener to 309 | respond to the request, a response rejection is immediately sent back by the 310 | remote end. 311 | 312 | - `socket.use(function fn(eventName, args, next) {...})` Adds a middleware 313 | function `fn` to receive all messages for the channel. The `eventName` 314 | indicates the name of the event or request, and the `args` are the arguments 315 | to be passed to the respective event handler. `next([err])` should be called 316 | to continue processing to the next middleware function. Once all middleware 317 | have processed the event and called `next`, the event is then processed by the 318 | event handler for the `eventName`. 319 | - `socket.timeout(tempTimeoutInMs)` Temporarily sets the `requestTimeout` to 320 | `tempTimeoutInMs` for the next request only. This returns `socket` to allow 321 | chaining. Typical usage: 322 | ```javascript 323 | // The next request will be rejected if there is no response for 5 secs. 324 | let promise = socket.timeout(5 * 1000).request("readFile", "/etc/issue") 325 | ``` 326 | 327 | The above EventEmitter functions like `on` and `once` are chainable (as 328 | appropriate). 329 | 330 | Channel API: 331 | 332 | - `socket.of(channelName)` Returns the channel with the specified `channelName`. 333 | Every channel has the same EventEmitter-like API as described above for 334 | sending and handling channel-specific events and requests. A channel also has 335 | a read-only `name` property. 336 | 337 | Other methods and properties: 338 | 339 | By default, the WebSocketWrapper provides a queue for data to be sent. Once the 340 | WebSocket is open, this queue is flushed until the connection is lost. The 341 | following methods allow one to re-bind a new WebSocket or clear the send queue. 342 | 343 | - `socket.abort()` Clears the send queue for this WebSocketWrapper and rejects 344 | all Promises for pending requests. 345 | - `socket.bind(nativeWebSocket)` Binds this WebSocketWrapper to a new WebSocket. 346 | This can be useful when socket reconnection logic needs to be implemented. 347 | Instead of creating a new WebSocketWrapper each time a WebSocket is 348 | disconnected, one can simply bind a new WebSocket to the WebSocketWrapper. In 349 | this way, data queued to be sent while the connection was dead will be sent 350 | over the new WebSocket passed to the `bind` function. 351 | - `socket.isConnecting` - checks the native WebSocket `readyState` and is `true` 352 | if and only if the state is CONNECTING. 353 | - `socket.isConnected` - checks the native WebSocket `readyState` is `true` if 354 | and only if the state is CONNECTED. 355 | - `socket.send(data)` If connected, calls the native WebSocket's `send` method; 356 | otherwise, the data is added to the WebSocketWrapper's send queue. 357 | - `socket.disconnect()` Closes the native WebSocket 358 | - `socket.set(key, value)` Saves user data specific to this WebSocketWrapper 359 | - `socket.get(key)` Retrieves user data. See `socket.set(key, value)` above. 360 | 361 | `WebSocketWrapper.MAX_SEND_QUEUE_SIZE` The maximum number of items allowed in 362 | the send queue. If a user tries to send more messages than this number while a 363 | WebSocket is not connected, errors will be thrown. Defaults to 10; changes 364 | affect all WebSocketWrapper instances. 365 | 366 | ## Protocol 367 | 368 | All data passed over the native WebSocket should be valid JSON, but this is not 369 | a hard requirement. [ws-wrapper](https://github.com/bminer/ws-wrapper/) will try 370 | to parse a JSON string and determine the message type based on the properties in 371 | the parsed Object. 372 | 373 | The following message types are defined by ws-wrapper: 374 | 375 | 1. **Event Dispatch** - Identified by an Object with `a` key but no `i` key. The 376 | channel name is optional. 377 | 378 | ```javascript 379 | { 380 | "c": "channel_name", 381 | "a": ["event_name", "first_arg", "second_arg", "last_arg"] 382 | } 383 | ``` 384 | 385 | The client or server can send events. Events are nothing more than an event 386 | name and some data, passed as arguments to the event handler. 387 | 388 | 1. **Request** - Identified by an Object with `a` and `i` keys where `i` refers 389 | to the unique request identifier. The channel name is optional. 390 | 391 | ```javascript 392 | { 393 | "i": 123, 394 | "c": "channel_name", 395 | "a": ["event_name", "first_arg", "second_arg", "last_arg"] 396 | } 397 | ``` 398 | 399 | The client or server can send a Request, which is essentially an Event that 400 | needs some sort of server Response. 401 | 402 | 1. **Response (Resolution)** - Identified by an Object with `i` and `d` keys 403 | where `i` is the request identifier and `d` is the response data. 404 | 405 | ```javascript 406 | { 407 | "i": 123, 408 | "d": {"resolved": "data", "hello": "world"} 409 | } 410 | ``` 411 | 412 | 1. **Response (Rejection)** - Identified by an Object with `i` and `e` keys 413 | where `i` is the request identifier and `e` is the error Object to be used 414 | when rejecting the response Promise. If `_` is set, the `e` Object is 415 | converted into an Error instance upon receipt. 416 | 417 | ```javascript 418 | { 419 | "i": 123, 420 | "e": {"message": "error message"}, 421 | "_": 1 422 | } 423 | ``` 424 | 425 | If the message received by the WebSocket is not valid JSON or if the parsed 426 | Object does not match one of the above message types, then the message is simply 427 | ignored by ws-wrapper. Also if the JSON message contains a `ws-wrapper` property 428 | with the value `false`, the message will be ignored. This allows other libraries 429 | to use the same WebSocket and send messages that will not be processed by 430 | ws-wrapper. 431 | 432 | ## Auto-Reconnect 433 | 434 | ws-wrapper does not implement auto-reconnect functionality out of the box. For 435 | those who want it (_almost_ everyone), I have written some sample code to show 436 | how easy it is to add. 437 | 438 | [How to implement auto-reconnect for ws-wrapper](https://github.com/bminer/ws-wrapper/wiki/Client-side-Auto-Reconnect) 439 | 440 | If someone wants to make an npm package for the auto-reconnect feature, I'd be 441 | happy to list it here, but it will probably never be a core ws-wrapper feature. 442 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from "@eslint/js" 2 | import globals from "globals" 3 | import prettierPlugin from "eslint-plugin-prettier/recommended" 4 | 5 | const nodeBuiltinSet = new Set(Object.keys(globals.nodeBuiltin)) 6 | // Compute the intersection of browser and nodeBuiltin globals 7 | const primaryGlobals = {} 8 | for (const g in globals.browser) { 9 | if (nodeBuiltinSet.has(g)) { 10 | primaryGlobals[g] = globals.browser[g] 11 | } 12 | } 13 | 14 | export default [ 15 | js.configs.recommended, 16 | prettierPlugin, 17 | { 18 | languageOptions: { 19 | ecmaVersion: 2018, 20 | sourceType: "module", 21 | globals: primaryGlobals, 22 | }, 23 | rules: { 24 | eqeqeq: ["error", "always", { null: "never" }], 25 | "no-unused-expressions": "error", 26 | "new-cap": "error", 27 | "no-nested-ternary": "error", 28 | "no-unused-vars": ["error", { args: "none" }], 29 | "no-var": "error", 30 | "no-template-curly-in-string": "error", 31 | "no-alert": "error", 32 | "spaced-comment": ["warn", "always"], 33 | "prefer-destructuring": [ 34 | "warn", 35 | { 36 | AssignmentExpression: { object: false, array: true }, 37 | VariableDeclarator: { object: true, array: true }, 38 | }, 39 | ], 40 | "prefer-const": [ 41 | "error", 42 | { 43 | destructuring: "all", 44 | ignoreReadBeforeAssign: false, 45 | }, 46 | ], 47 | "object-shorthand": ["warn", "always"], 48 | }, 49 | }, 50 | { 51 | files: ["example-app/client.js"], 52 | languageOptions: { 53 | globals: { 54 | ...globals.browser, 55 | $: false, 56 | }, 57 | }, 58 | }, 59 | { 60 | files: ["example-app/server.js"], 61 | languageOptions: { 62 | globals: { 63 | ...globals.node, 64 | }, 65 | }, 66 | }, 67 | ] 68 | -------------------------------------------------------------------------------- /example-app/client.js: -------------------------------------------------------------------------------- 1 | import WebSocketWrapper from "../lib/wrapper" 2 | 3 | // Create WebSocketWrapper 4 | const socket = new WebSocketWrapper(new WebSocket("ws://" + location.host)) 5 | socket.on("disconnect", function (wasOpen) { 6 | // Check `wasOpen` flag, so we don't try to logout on each disconnection 7 | if (wasOpen) { 8 | logout() 9 | } 10 | // Auto-reconnect 11 | console.log("Reconnecting in 5 secs...") 12 | setTimeout(() => { 13 | socket.bind(new WebSocket("ws://" + location.host)) 14 | }, 5000) 15 | }) 16 | socket.on("error", () => { 17 | socket.disconnect() 18 | }) 19 | socket.of("chat").on("message", addMessage) 20 | 21 | function addMessage(fromStr, msg) { 22 | // Add a message to the DOM 23 | const p = $('

') 24 | const from = $('') 25 | if (fromStr === "system") { 26 | from.addClass("system") 27 | } else if (fromStr === $("#username").val()) { 28 | from.addClass("me") 29 | } 30 | from.append(fromStr + ":") 31 | p.append(from) 32 | p.append(" " + msg) 33 | const list = $("#messageList").append(p).get(0) 34 | // Now scroll down automatically 35 | if (list.scrollHeight - list.scrollTop - list.clientHeight <= 30) { 36 | list.scrollTop = list.scrollHeight 37 | } 38 | } 39 | 40 | function login() { 41 | $("#loginButton").hide() 42 | $("#username").attr("disabled", "disabled") 43 | // Send request to login 44 | socket 45 | .of("chat") 46 | .request("login", $("#username").val()) 47 | .then(() => { 48 | // Login succeeded 49 | $("#logoutButton, #newMessage").show() 50 | addMessage("system", "You have been logged in") 51 | $("#message").val("").focus() 52 | }) 53 | .catch((err) => { 54 | // Login failed; just logout... 55 | // eslint-disable-next-line no-alert 56 | alert(err) 57 | logout() 58 | }) 59 | } 60 | 61 | function logout() { 62 | $("#logoutButton, #newMessage").hide() 63 | $("#loginButton").show() 64 | $("#username").removeAttr("disabled") 65 | // Send request to logout 66 | socket 67 | .of("chat") 68 | .request("logout") 69 | .then(() => { 70 | addMessage("system", "You have been logged out") 71 | }) 72 | .catch((err) => { 73 | console.error(err) 74 | }) 75 | } 76 | 77 | $(() => { 78 | $("#loginButton").on("click", login) 79 | $("#logoutButton").on("click", logout) 80 | $("#newMessage").on("submit", function sendMessage(e) { 81 | socket.of("chat").emit("message", $("#message").val()) 82 | $("#message").val("").focus() 83 | e.preventDefault() 84 | }) 85 | 86 | addMessage("system", "Welcome! Please pick a username and login.") 87 | }) 88 | -------------------------------------------------------------------------------- /example-app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ws-wrapper test 5 | 6 | 7 | 44 | 45 | 46 |

ws-wrapper test

47 |
48 | 49 | 50 | 51 |
52 |
53 |

Messages

54 |
55 |
56 |
57 | 58 | 59 |
60 | 61 | 62 | -------------------------------------------------------------------------------- /example-app/server.js: -------------------------------------------------------------------------------- 1 | /* This chat server uses "ws" for Node.js WebSockets and the "koa" web 2 | framework. "node-module-concat" is used to bundle the client-side code at 3 | run-time. 4 | 5 | This example does *NOT* use ws-server-wrapper. For an example using 6 | ws-server-wrapper, visit the ws-server-wrapper Github repo. 7 | */ 8 | import http from "node:http" 9 | import { WebSocketServer } from "ws" 10 | import WebSocketWrapper from "../lib/wrapper.mjs" 11 | import Koa from "koa" 12 | import serve from "koa-static" 13 | 14 | // Create new HTTP server using koa and a new WebSocketServer 15 | const app = new Koa(), 16 | server = http.createServer(app.callback()), 17 | socketServer = new WebSocketServer({ server }) 18 | 19 | // Save all connected `sockets` 20 | const sockets = [] 21 | // Save all logged in `users`; keys are usernames, values are the sockets 22 | const users = {} 23 | // Listen for a socket to connect 24 | socketServer.on("connection", function (socket) { 25 | // Upon connection, wrap the socket and save it in the `sockets` array 26 | socket = new WebSocketWrapper(socket) 27 | sockets.push(socket) 28 | // Setup event handlers on the socket 29 | socket.of("chat").on("login", (username) => { 30 | if ( 31 | username === "system" || 32 | (users[username] && users[username] !== socket) 33 | ) { 34 | // Error is sent back to the client 35 | throw new Error(`Username '${username}' is taken!`) 36 | } else { 37 | // Notify all other users 38 | for (const i in users) { 39 | users[i] 40 | .of("chat") 41 | .emit("message", "system", username + " has logged in") 42 | } 43 | // Save the username 44 | socket.set("username", username) 45 | users[username] = socket 46 | } 47 | }) 48 | socket.of("chat").on("message", (msg) => { 49 | const username = socket.get("username") 50 | if (username) { 51 | // We're logged in, so relay the message to all clients 52 | for (const i in users) { 53 | users[i].of("chat").emit("message", username, msg) 54 | } 55 | } else { 56 | throw new Error("Please log in first!") 57 | } 58 | }) 59 | socket.of("chat").on("logout", () => { 60 | const username = socket.get("username") 61 | if (users[username]) { 62 | delete users[username] 63 | // Notify all other users 64 | for (const i in users) { 65 | users[i] 66 | .of("chat") 67 | .emit("message", "system", username + " has logged out") 68 | } 69 | } 70 | }) 71 | // Upon disconnect, free resources 72 | socket.on("disconnect", () => { 73 | const idx = sockets.indexOf(socket) 74 | if (idx >= 0) { 75 | sockets.splice(idx, 1) 76 | } 77 | const username = socket.get("username") 78 | if (users[username]) { 79 | delete users[username] 80 | // Notify all other users 81 | for (const i in users) { 82 | users[i] 83 | .of("chat") 84 | .emit("message", "system", username + " has logged out") 85 | } 86 | } 87 | }) 88 | }) 89 | 90 | // Setup static file server 91 | app.use(serve("dist")) 92 | 93 | // Start the server after building client_build.js 94 | const { PORT = 3000 } = process.env 95 | server.listen(PORT, () => { 96 | console.log("Listening on port " + PORT) 97 | }) 98 | -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- 1 | import WebSocketWrapper from "./lib/wrapper.mjs" 2 | 3 | export default WebSocketWrapper 4 | -------------------------------------------------------------------------------- /lib/channel.mjs: -------------------------------------------------------------------------------- 1 | // TODO: Use native "events" module if in Node.js environment? 2 | import { EventEmitter } from "eventemitter3" 3 | 4 | /* A WebSocketChannel exposes an EventEmitter-like API for sending and handling 5 | events or requests over the channel through the attached WebSocketWrapper. 6 | 7 | `var channel = new WebSocketChannel(name, socketWrapper);` 8 | - `name` - the namespace for the channel 9 | - `socketWrapper` - the WebSocketWrapper instance to which data should 10 | be sent 11 | */ 12 | class WebSocketChannel { 13 | constructor(name, socketWrapper) { 14 | // Channel name; `null` only for the WebSocketWrapper instance 15 | this._name = name 16 | // Reference to WebSocketWrapper instance 17 | this._wrapper = socketWrapper 18 | // This channel's EventEmitter 19 | this._emitter = new EventEmitter() 20 | // WeakMap of wrapped event listeners 21 | this._wrappedListeners = new WeakMap() 22 | // Channel middleware added using `use()` method 23 | this._middleware = [] 24 | } 25 | 26 | // Retrieve channel name 27 | get name() { 28 | return this._name 29 | } 30 | 31 | // Changing the channel name after it's been created is a bad idea. 32 | set name(name) { 33 | throw new Error("Setting the channel name is not allowed") 34 | } 35 | 36 | /* Expose EventEmitter-like API 37 | When `eventName` is one of the `NO_WRAP_EVENTS`, the event handlers 38 | are left untouched, and the emitted events are just sent to the 39 | EventEmitter; otherwise, event listeners are wrapped to process the 40 | incoming request and the emitted events are sent to the WebSocketWrapper 41 | to be serialized and sent over the WebSocket. */ 42 | 43 | on(eventName, listener) { 44 | if ( 45 | this._name == null && 46 | WebSocketChannel.NO_WRAP_EVENTS.indexOf(eventName) >= 0 47 | ) { 48 | /* Note: The following is equivalent to: 49 | `this._emitter.on(eventName, listener.bind(this));` 50 | But thanks to eventemitter3, the following is a touch faster. */ 51 | this._emitter.on(eventName, listener, this) 52 | } else { 53 | this._emitter.on(eventName, this._wrapListener(listener)) 54 | } 55 | return this 56 | } 57 | 58 | once(eventName, listener) { 59 | if ( 60 | this._name == null && 61 | WebSocketChannel.NO_WRAP_EVENTS.indexOf(eventName) >= 0 62 | ) { 63 | this._emitter.once(eventName, listener, this) 64 | } else { 65 | this._emitter.once(eventName, this._wrapListener(listener)) 66 | } 67 | return this 68 | } 69 | 70 | removeListener(eventName, listener) { 71 | if ( 72 | this._name == null && 73 | WebSocketChannel.NO_WRAP_EVENTS.indexOf(eventName) >= 0 74 | ) { 75 | this._emitter.removeListener(eventName, listener) 76 | } else { 77 | this._emitter.removeListener( 78 | eventName, 79 | this._wrappedListeners.get(listener) 80 | ) 81 | } 82 | return this 83 | } 84 | 85 | removeAllListeners(eventName) { 86 | this._emitter.removeAllListeners(eventName) 87 | return this 88 | } 89 | 90 | eventNames() { 91 | return this._emitter.eventNames() 92 | } 93 | 94 | listeners(eventName) { 95 | if ( 96 | this._name == null && 97 | WebSocketChannel.NO_WRAP_EVENTS.indexOf(eventName) >= 0 98 | ) { 99 | return this._emitter.listeners(eventName) 100 | } else { 101 | return this._emitter 102 | .listeners(eventName) 103 | .map((wrapper) => wrapper._original) 104 | } 105 | } 106 | 107 | /* The following `emit` and `request` methods will serialize and send the 108 | event over the WebSocket using the WebSocketWrapper. */ 109 | emit(eventName) { 110 | if ( 111 | this._name == null && 112 | WebSocketChannel.NO_WRAP_EVENTS.indexOf(eventName) >= 0 113 | ) { 114 | return this._emitter.emit.apply(this._emitter, arguments) 115 | } else { 116 | return this._wrapper._sendEvent(this._name, eventName, arguments) 117 | } 118 | } 119 | 120 | /* Temporarily set the request timeout for the next request. */ 121 | timeout(tempTimeout) { 122 | this._tempTimeout = tempTimeout 123 | return this 124 | } 125 | 126 | request(eventName) { 127 | const oldTimeout = this._wrapper._requestTimeout 128 | if (this._tempTimeout !== undefined) { 129 | this._wrapper._requestTimeout = this._tempTimeout 130 | delete this._tempTimeout 131 | } 132 | const ret = this._wrapper._sendEvent(this._name, eventName, arguments, true) 133 | this._wrapper._requestTimeout = oldTimeout 134 | return ret 135 | } 136 | 137 | // Add middleware for this channel 138 | use(fn) { 139 | if (typeof fn !== "function") { 140 | throw new Error("Middleware must be a function") 141 | } 142 | this._middleware.push(fn) 143 | } 144 | 145 | // Receives an inbound message directed to this channel. Returns true if 146 | // and only if an event handler processed the inbound message. Events first 147 | // pass through all middleware and then to the event handler for `eventName` 148 | _runMiddleware(event) { 149 | const channel = this 150 | ;(function run(middleware) { 151 | let nextCalled = false 152 | const next = function (err) { 153 | // Ensure `next` is called exactly once 154 | if (nextCalled) { 155 | return 156 | } 157 | nextCalled = true 158 | 159 | if (err) { 160 | // Send request rejection if needed 161 | if (event.requestId >= 0) { 162 | channel._wrapper._sendReject(event.requestId, err) 163 | } 164 | channel._wrapper._debug(`channel: Event '${event.name}' dropped`) 165 | } else { 166 | // Run next middleware function 167 | run(middleware.slice(1)) 168 | } 169 | } 170 | 171 | const [fn] = middleware 172 | if (fn) { 173 | try { 174 | fn(event.name, event.args, next) 175 | } catch (err) { 176 | next(err) 177 | } 178 | } else { 179 | // No middleware remaining, so pass along to event handler 180 | if (channel._emitter.emit(event.name, event)) { 181 | channel._wrapper._debug( 182 | `channel: Event '${event.name}' sent to event listener` 183 | ) 184 | } else { 185 | next( 186 | new Error( 187 | `No event listener for '${event.name}'` + 188 | (channel._name ? " on channel '" + channel._name + "'" : "") 189 | ) 190 | ) 191 | } 192 | } 193 | })(this._middleware) 194 | } 195 | 196 | _wrapListener(listener) { 197 | if (typeof listener !== "function") { 198 | throw new TypeError('"listener" argument must be a function') 199 | } 200 | let wrapped = this._wrappedListeners.get(listener) 201 | if (!wrapped) { 202 | wrapped = function channelListenerWrapper(event) { 203 | /* This function is called when an event is emitted on this 204 | WebSocketChannel's `_emitter` when the WebSocketWrapper 205 | receives an incoming message for this channel. If this 206 | event is a request, special processing is needed to 207 | send the response back over the socket. Below we use 208 | the return value from the original `listener` to 209 | determine what response should be sent back. 210 | 211 | `this` refers to the WebSocketChannel instance 212 | `event` has the following properties: 213 | - `name` 214 | - `args` 215 | - `requestId` 216 | */ 217 | let returnVal 218 | try { 219 | returnVal = listener.apply(this, event.args) 220 | } catch (err) { 221 | if (event.requestId >= 0) { 222 | /* If event listener throws, pass that Error back 223 | as a response to the request */ 224 | this._wrapper._sendReject(event.requestId, err) 225 | } 226 | // Re-throw 227 | throw err 228 | } 229 | if (returnVal instanceof Promise) { 230 | /* If event listener returns a Promise, respond once 231 | the Promise resolves */ 232 | returnVal 233 | .then((data) => { 234 | if (event.requestId >= 0) { 235 | this._wrapper._sendResolve(event.requestId, data) 236 | } 237 | }) 238 | .catch((err) => { 239 | if (event.requestId >= 0) { 240 | this._wrapper._sendReject(event.requestId, err) 241 | } 242 | // else silently ignore error 243 | }) 244 | } else if (event.requestId >= 0) { 245 | /* Otherwise, assume that the `returnVal` is what 246 | should be passed back as the response */ 247 | this._wrapper._sendResolve(event.requestId, returnVal) 248 | } 249 | // else return value is ignored for simple events 250 | }.bind(this) // Bind the channel to the `channelListenerWrapper` 251 | // Add a reference back to the original listener 252 | wrapped._original = listener 253 | this._wrappedListeners.set(listener, wrapped) 254 | } 255 | // Finally, return the wrapped listener 256 | return wrapped 257 | } 258 | 259 | get(key) { 260 | return this._wrapper.get(key) 261 | } 262 | 263 | set(key, value) { 264 | this._wrapper.set(key, value) 265 | return this 266 | } 267 | } 268 | 269 | // Add aliases to existing methods 270 | WebSocketChannel.prototype.addListener = WebSocketChannel.prototype.on 271 | WebSocketChannel.prototype.off = WebSocketChannel.prototype.removeListener 272 | 273 | // List of "special" reserved events whose listeners don't need to be wrapped 274 | WebSocketChannel.NO_WRAP_EVENTS = [ 275 | "open", 276 | "connect", 277 | "message", 278 | "error", 279 | "close", 280 | "disconnect", 281 | ] 282 | 283 | // Expose the class 284 | export default WebSocketChannel 285 | -------------------------------------------------------------------------------- /lib/wrapper.mjs: -------------------------------------------------------------------------------- 1 | import WebSocketChannel from "./channel.mjs" 2 | 3 | class WebSocketWrapper extends WebSocketChannel { 4 | constructor(socket, options) { 5 | // Make `this` a WebSocketChannel 6 | super() 7 | this._wrapper = this 8 | options = options || {} 9 | if (typeof options.debug === "function") { 10 | this._debug = options.debug 11 | } else if (options.debug === true) { 12 | this._debug = console.log.bind(console) 13 | } else { 14 | this._debug = () => {} // no-op 15 | } 16 | if (typeof options.errorToJSON !== "function") { 17 | // Provide default error serialization 18 | this._errorToJSON = (err) => { 19 | if (typeof window === "undefined") { 20 | // Node.js environment only serializes `message` 21 | return JSON.stringify({ message: err.message }) 22 | } else { 23 | // Browser serializes all error properties 24 | return JSON.stringify(err, Object.getOwnPropertyNames(err)) 25 | } 26 | } 27 | } else { 28 | this._errorToJSON = options.errorToJSON 29 | } 30 | if (options.requestTimeout > 0) { 31 | this._requestTimeout = options.requestTimeout | 0 32 | } 33 | 34 | // Flag set once the socket is opened 35 | this._opened = false 36 | // Array of data to be sent once the connection is opened 37 | this._pendingSend = [] 38 | // Incrementing request ID counter for this WebSocket 39 | this._lastRequestId = 0 40 | /* Object of pending requests; keys are the request ID, values are 41 | Objects containing `resolve` and `reject` functions used to 42 | resolve the request's Promise. */ 43 | this._pendingRequests = {} 44 | /* Object of WebSocketChannels (except `this` associated with this 45 | WebSocket); keys are the channel name. */ 46 | this._channels = {} 47 | // Object containing user-assigned socket data 48 | this._data = {} 49 | // Bind this wrapper to the `socket` passed to the constructor 50 | this._socket = null 51 | if (socket && socket.constructor) { 52 | this.bind(socket) 53 | } 54 | } 55 | 56 | bind(socket) { 57 | // Clean up any event handlers on `this._socket` 58 | if (this._socket) { 59 | const s = this._socket 60 | s.onopen = s.onmessage = s.onerror = s.onclose = null 61 | } 62 | // Save the `socket` and add event listeners 63 | this._socket = socket 64 | socket.onopen = (event) => { 65 | this._opened = true 66 | this._debug("socket: onopen") 67 | // Send all pending messages 68 | let i 69 | for (i = 0; i < this._pendingSend.length; i++) { 70 | if (this.isConnected) { 71 | this._debug("wrapper: Sending pending message:", this._pendingSend[i]) 72 | try { 73 | this._socket.send(this._pendingSend[i]) 74 | } catch (e) { 75 | this._pendingSend = this._pendingSend.slice(i - 1) 76 | throw e 77 | } 78 | } else { 79 | break 80 | } 81 | } 82 | this._pendingSend = this._pendingSend.slice(i) 83 | this.emit("open", event) 84 | this.emit("connect", event) 85 | } 86 | socket.onmessage = (event) => { 87 | this._debug("socket: onmessage", event.data) 88 | this.emit("message", event, event.data) 89 | this._onMessage(event.data) 90 | } 91 | socket.onerror = (event) => { 92 | this._debug("socket: onerror", event) 93 | this.emit("error", event) 94 | } 95 | socket.onclose = (event) => { 96 | const opened = this._opened 97 | this._opened = false 98 | this._debug("socket: onclose", event) 99 | this.emit("close", event, opened) 100 | this.emit("disconnect", event, opened) 101 | } 102 | // If the socket is already open, send all pending messages now 103 | if (this.isConnected) { 104 | socket.onopen() 105 | } 106 | return this 107 | } 108 | 109 | get socket() { 110 | return this._socket 111 | } 112 | 113 | set socket(socket) { 114 | this.bind(socket) 115 | } 116 | 117 | // Rejects all pending requests and then clears the send queue 118 | abort() { 119 | for (const id in this._pendingRequests) { 120 | this._pendingRequests[id].reject(new Error("Request was aborted")) 121 | } 122 | this._pendingRequests = {} 123 | this._pendingSend = [] 124 | return this 125 | } 126 | 127 | // Returns a channel with the specified `namespace` 128 | of(namespace) { 129 | if (namespace == null) { 130 | return this 131 | } 132 | if (!this._channels[namespace]) { 133 | this._channels[namespace] = new WebSocketChannel(namespace, this) 134 | } 135 | return this._channels[namespace] 136 | } 137 | 138 | get isConnecting() { 139 | return ( 140 | this._socket && 141 | this._socket.readyState === this._socket.constructor.CONNECTING 142 | ) 143 | } 144 | 145 | get isConnected() { 146 | return ( 147 | this._socket && this._socket.readyState === this._socket.constructor.OPEN 148 | ) 149 | } 150 | 151 | send(data, ignoreMaxQueueSize) { 152 | if (this.isConnected) { 153 | this._debug("wrapper: Sending message:", data) 154 | this._socket.send(data) 155 | } else if ( 156 | ignoreMaxQueueSize || 157 | this._pendingSend.length < WebSocketWrapper.MAX_SEND_QUEUE_SIZE 158 | ) { 159 | this._debug("wrapper: Queuing message:", data) 160 | this._pendingSend.push(data) 161 | } else { 162 | throw new Error("WebSocket is not connected and send queue is full") 163 | } 164 | return this 165 | } 166 | 167 | disconnect() { 168 | if (this._socket) { 169 | this._socket.close.apply(this._socket, arguments) 170 | } 171 | return this 172 | } 173 | 174 | // Called whenever the bound Socket receives a message 175 | _onMessage(msg) { 176 | try { 177 | msg = JSON.parse(msg) 178 | // If `msg` contains special ignore property, we'll ignore it 179 | if (msg["ws-wrapper"] === false) { 180 | return 181 | } 182 | if (msg.a) { 183 | const argsArray = [] 184 | for (const i in msg.a) { 185 | argsArray[i] = msg.a[i] 186 | } 187 | msg.a = argsArray 188 | } 189 | /* If `msg` does not have an `a` Array with at least 1 element, 190 | ignore the message because it is not a valid event/request */ 191 | if ( 192 | msg.a instanceof Array && 193 | msg.a.length >= 1 && 194 | (msg.c || WebSocketChannel.NO_WRAP_EVENTS.indexOf(msg.a[0]) < 0) 195 | ) { 196 | // Process inbound event/request 197 | const event = { 198 | name: msg.a.shift(), 199 | args: msg.a, 200 | requestId: msg.i, 201 | } 202 | const channel = msg.c == null ? this : this._channels[msg.c] 203 | if (!channel) { 204 | if (msg.i >= 0) { 205 | this._sendReject( 206 | msg.i, 207 | new Error(`Channel '${msg.c}' does not exist`) 208 | ) 209 | } 210 | this._debug( 211 | `wrapper: Event '${event.name}' ignored ` + 212 | `because channel '${msg.c}' does not exist.` 213 | ) 214 | } else { 215 | channel._runMiddleware(event) 216 | } 217 | } else if (this._pendingRequests[msg.i]) { 218 | this._debug("wrapper: Processing response for request", msg.i) 219 | // Process response to prior request 220 | if (msg.e !== undefined) { 221 | let err = msg.e 222 | // `msg._` indicates that `msg.e` is an Error 223 | if (msg._ && err) { 224 | err = new Error(err.message) 225 | // Copy other properties to Error 226 | for (const key in msg.e) { 227 | err[key] = msg.e[key] 228 | } 229 | } else if (typeof err === "string") { 230 | err = new Error(err) 231 | } 232 | this._pendingRequests[msg.i].reject(err) 233 | } else { 234 | this._pendingRequests[msg.i].resolve(msg.d) 235 | } 236 | clearTimeout(this._pendingRequests[msg.i].timer) 237 | delete this._pendingRequests[msg.i] 238 | } 239 | // else ignore the message because it's not valid 240 | } catch (e) { 241 | // Non-JSON messages are ignored 242 | /* Note: It's also possible for uncaught exceptions from event 243 | handlers to end up here. */ 244 | } 245 | } 246 | 247 | /* The following methods are called by a WebSocketChannel to send data 248 | to the Socket. */ 249 | _sendEvent(channel, eventName, args, isRequest) { 250 | // Serialize data for sending over the socket 251 | const data = { a: Array.prototype.slice.call(args) } 252 | if (channel != null) { 253 | data.c = channel 254 | } 255 | let request 256 | if (isRequest) { 257 | /* Unless we send petabytes of data using the same socket, 258 | we won't worry about `_lastRequestId` getting too big. */ 259 | data.i = ++this._lastRequestId 260 | // Return a Promise to the caller to be resolved later 261 | request = new Promise((resolve, reject) => { 262 | const pendReq = (this._pendingRequests[data.i] = { 263 | resolve, 264 | reject, 265 | }) 266 | if (this._requestTimeout > 0) { 267 | pendReq.timer = setTimeout(() => { 268 | reject(new Error("Request timed out")) 269 | delete this._pendingRequests[data.i] 270 | }, this._requestTimeout) 271 | } 272 | }) 273 | } 274 | // Send the message 275 | this.send(JSON.stringify(data)) 276 | // Return the request, if needed 277 | return request 278 | } 279 | 280 | _sendResolve(id, data) { 281 | this.send( 282 | JSON.stringify({ 283 | i: id, 284 | d: data, 285 | }), 286 | true /* ignore max queue length */ 287 | ) 288 | } 289 | 290 | _sendReject(id, err) { 291 | const isError = err instanceof Error 292 | if (isError) { 293 | err = JSON.parse(this._errorToJSON(err)) 294 | } 295 | this.send( 296 | JSON.stringify({ 297 | i: id, 298 | e: err, 299 | _: isError ? 1 : undefined, 300 | }), 301 | true /* ignore max queue length */ 302 | ) 303 | } 304 | 305 | get(key) { 306 | return this._data[key] 307 | } 308 | 309 | set(key, value) { 310 | this._data[key] = value 311 | return this 312 | } 313 | } 314 | 315 | /* Maximum number of items in the send queue. If a user tries to send more 316 | messages than this number while a WebSocket is not connected, errors will 317 | be thrown. */ 318 | WebSocketWrapper.MAX_SEND_QUEUE_SIZE = 10 319 | 320 | export default WebSocketWrapper 321 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ws-wrapper", 3 | "version": "3.0.3", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "ws-wrapper", 9 | "version": "3.0.3", 10 | "license": "MIT", 11 | "dependencies": { 12 | "eventemitter3": "^5.0.1" 13 | }, 14 | "devDependencies": { 15 | "eslint": "^8.57.0", 16 | "eslint-config-prettier": "^9.1.0", 17 | "eslint-plugin-prettier": "^5.1.3", 18 | "koa": "^2.15.3", 19 | "koa-static": "^5.0.0", 20 | "parcel": "^2.13.3", 21 | "prettier": "^3.3.2", 22 | "ws": "^8.17.1" 23 | } 24 | }, 25 | "node_modules/@eslint-community/eslint-utils": { 26 | "version": "4.7.0", 27 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", 28 | "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", 29 | "dev": true, 30 | "license": "MIT", 31 | "dependencies": { 32 | "eslint-visitor-keys": "^3.4.3" 33 | }, 34 | "engines": { 35 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 36 | }, 37 | "funding": { 38 | "url": "https://opencollective.com/eslint" 39 | }, 40 | "peerDependencies": { 41 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 42 | } 43 | }, 44 | "node_modules/@eslint-community/regexpp": { 45 | "version": "4.12.1", 46 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 47 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 48 | "dev": true, 49 | "license": "MIT", 50 | "engines": { 51 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 52 | } 53 | }, 54 | "node_modules/@eslint/eslintrc": { 55 | "version": "2.1.4", 56 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 57 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 58 | "dev": true, 59 | "license": "MIT", 60 | "dependencies": { 61 | "ajv": "^6.12.4", 62 | "debug": "^4.3.2", 63 | "espree": "^9.6.0", 64 | "globals": "^13.19.0", 65 | "ignore": "^5.2.0", 66 | "import-fresh": "^3.2.1", 67 | "js-yaml": "^4.1.0", 68 | "minimatch": "^3.1.2", 69 | "strip-json-comments": "^3.1.1" 70 | }, 71 | "engines": { 72 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 73 | }, 74 | "funding": { 75 | "url": "https://opencollective.com/eslint" 76 | } 77 | }, 78 | "node_modules/@eslint/js": { 79 | "version": "8.57.1", 80 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 81 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 82 | "dev": true, 83 | "license": "MIT", 84 | "engines": { 85 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 86 | } 87 | }, 88 | "node_modules/@humanwhocodes/config-array": { 89 | "version": "0.13.0", 90 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 91 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 92 | "deprecated": "Use @eslint/config-array instead", 93 | "dev": true, 94 | "license": "Apache-2.0", 95 | "dependencies": { 96 | "@humanwhocodes/object-schema": "^2.0.3", 97 | "debug": "^4.3.1", 98 | "minimatch": "^3.0.5" 99 | }, 100 | "engines": { 101 | "node": ">=10.10.0" 102 | } 103 | }, 104 | "node_modules/@humanwhocodes/module-importer": { 105 | "version": "1.0.1", 106 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 107 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 108 | "dev": true, 109 | "license": "Apache-2.0", 110 | "engines": { 111 | "node": ">=12.22" 112 | }, 113 | "funding": { 114 | "type": "github", 115 | "url": "https://github.com/sponsors/nzakas" 116 | } 117 | }, 118 | "node_modules/@humanwhocodes/object-schema": { 119 | "version": "2.0.3", 120 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 121 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 122 | "deprecated": "Use @eslint/object-schema instead", 123 | "dev": true, 124 | "license": "BSD-3-Clause" 125 | }, 126 | "node_modules/@lezer/common": { 127 | "version": "1.2.3", 128 | "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz", 129 | "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==", 130 | "dev": true, 131 | "license": "MIT" 132 | }, 133 | "node_modules/@lezer/lr": { 134 | "version": "1.4.2", 135 | "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", 136 | "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", 137 | "dev": true, 138 | "license": "MIT", 139 | "dependencies": { 140 | "@lezer/common": "^1.0.0" 141 | } 142 | }, 143 | "node_modules/@lmdb/lmdb-darwin-arm64": { 144 | "version": "2.8.5", 145 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.8.5.tgz", 146 | "integrity": "sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==", 147 | "cpu": [ 148 | "arm64" 149 | ], 150 | "dev": true, 151 | "license": "MIT", 152 | "optional": true, 153 | "os": [ 154 | "darwin" 155 | ] 156 | }, 157 | "node_modules/@lmdb/lmdb-darwin-x64": { 158 | "version": "2.8.5", 159 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.8.5.tgz", 160 | "integrity": "sha512-w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug==", 161 | "cpu": [ 162 | "x64" 163 | ], 164 | "dev": true, 165 | "license": "MIT", 166 | "optional": true, 167 | "os": [ 168 | "darwin" 169 | ] 170 | }, 171 | "node_modules/@lmdb/lmdb-linux-arm": { 172 | "version": "2.8.5", 173 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.8.5.tgz", 174 | "integrity": "sha512-c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg==", 175 | "cpu": [ 176 | "arm" 177 | ], 178 | "dev": true, 179 | "license": "MIT", 180 | "optional": true, 181 | "os": [ 182 | "linux" 183 | ] 184 | }, 185 | "node_modules/@lmdb/lmdb-linux-arm64": { 186 | "version": "2.8.5", 187 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.8.5.tgz", 188 | "integrity": "sha512-vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww==", 189 | "cpu": [ 190 | "arm64" 191 | ], 192 | "dev": true, 193 | "license": "MIT", 194 | "optional": true, 195 | "os": [ 196 | "linux" 197 | ] 198 | }, 199 | "node_modules/@lmdb/lmdb-linux-x64": { 200 | "version": "2.8.5", 201 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.8.5.tgz", 202 | "integrity": "sha512-Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ==", 203 | "cpu": [ 204 | "x64" 205 | ], 206 | "dev": true, 207 | "license": "MIT", 208 | "optional": true, 209 | "os": [ 210 | "linux" 211 | ] 212 | }, 213 | "node_modules/@lmdb/lmdb-win32-x64": { 214 | "version": "2.8.5", 215 | "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.8.5.tgz", 216 | "integrity": "sha512-4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ==", 217 | "cpu": [ 218 | "x64" 219 | ], 220 | "dev": true, 221 | "license": "MIT", 222 | "optional": true, 223 | "os": [ 224 | "win32" 225 | ] 226 | }, 227 | "node_modules/@mischnic/json-sourcemap": { 228 | "version": "0.1.1", 229 | "resolved": "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz", 230 | "integrity": "sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==", 231 | "dev": true, 232 | "license": "MIT", 233 | "dependencies": { 234 | "@lezer/common": "^1.0.0", 235 | "@lezer/lr": "^1.0.0", 236 | "json5": "^2.2.1" 237 | }, 238 | "engines": { 239 | "node": ">=12.0.0" 240 | } 241 | }, 242 | "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { 243 | "version": "3.0.3", 244 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", 245 | "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", 246 | "cpu": [ 247 | "arm64" 248 | ], 249 | "dev": true, 250 | "license": "MIT", 251 | "optional": true, 252 | "os": [ 253 | "darwin" 254 | ] 255 | }, 256 | "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { 257 | "version": "3.0.3", 258 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", 259 | "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", 260 | "cpu": [ 261 | "x64" 262 | ], 263 | "dev": true, 264 | "license": "MIT", 265 | "optional": true, 266 | "os": [ 267 | "darwin" 268 | ] 269 | }, 270 | "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { 271 | "version": "3.0.3", 272 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", 273 | "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", 274 | "cpu": [ 275 | "arm" 276 | ], 277 | "dev": true, 278 | "license": "MIT", 279 | "optional": true, 280 | "os": [ 281 | "linux" 282 | ] 283 | }, 284 | "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { 285 | "version": "3.0.3", 286 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", 287 | "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", 288 | "cpu": [ 289 | "arm64" 290 | ], 291 | "dev": true, 292 | "license": "MIT", 293 | "optional": true, 294 | "os": [ 295 | "linux" 296 | ] 297 | }, 298 | "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { 299 | "version": "3.0.3", 300 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", 301 | "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", 302 | "cpu": [ 303 | "x64" 304 | ], 305 | "dev": true, 306 | "license": "MIT", 307 | "optional": true, 308 | "os": [ 309 | "linux" 310 | ] 311 | }, 312 | "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { 313 | "version": "3.0.3", 314 | "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", 315 | "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", 316 | "cpu": [ 317 | "x64" 318 | ], 319 | "dev": true, 320 | "license": "MIT", 321 | "optional": true, 322 | "os": [ 323 | "win32" 324 | ] 325 | }, 326 | "node_modules/@nodelib/fs.scandir": { 327 | "version": "2.1.5", 328 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 329 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 330 | "dev": true, 331 | "license": "MIT", 332 | "dependencies": { 333 | "@nodelib/fs.stat": "2.0.5", 334 | "run-parallel": "^1.1.9" 335 | }, 336 | "engines": { 337 | "node": ">= 8" 338 | } 339 | }, 340 | "node_modules/@nodelib/fs.stat": { 341 | "version": "2.0.5", 342 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 343 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 344 | "dev": true, 345 | "license": "MIT", 346 | "engines": { 347 | "node": ">= 8" 348 | } 349 | }, 350 | "node_modules/@nodelib/fs.walk": { 351 | "version": "1.2.8", 352 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 353 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 354 | "dev": true, 355 | "license": "MIT", 356 | "dependencies": { 357 | "@nodelib/fs.scandir": "2.1.5", 358 | "fastq": "^1.6.0" 359 | }, 360 | "engines": { 361 | "node": ">= 8" 362 | } 363 | }, 364 | "node_modules/@parcel/bundler-default": { 365 | "version": "2.15.1", 366 | "resolved": "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.15.1.tgz", 367 | "integrity": "sha512-AAOomjOWAhvwunN7hwxmYoAyePlDyOrd0HVUQBJyRhHb6udAPCoq0TDWZ98xybvfKjjbPidk/lVAVZf5A8TyQw==", 368 | "dev": true, 369 | "license": "MIT", 370 | "dependencies": { 371 | "@parcel/diagnostic": "2.15.1", 372 | "@parcel/graph": "3.5.1", 373 | "@parcel/plugin": "2.15.1", 374 | "@parcel/rust": "2.15.1", 375 | "@parcel/utils": "2.15.1", 376 | "nullthrows": "^1.1.1" 377 | }, 378 | "engines": { 379 | "node": ">= 16.0.0", 380 | "parcel": "^2.15.1" 381 | }, 382 | "funding": { 383 | "type": "opencollective", 384 | "url": "https://opencollective.com/parcel" 385 | } 386 | }, 387 | "node_modules/@parcel/cache": { 388 | "version": "2.15.1", 389 | "resolved": "https://registry.npmjs.org/@parcel/cache/-/cache-2.15.1.tgz", 390 | "integrity": "sha512-kj/yn21Fn4HBrQATLV6k18T3PJTzTiDMVVh0C/gd/21e0ApTlDgvpIw2tiGajZYTluiDEmAm05IqULGhupo9iw==", 391 | "dev": true, 392 | "license": "MIT", 393 | "dependencies": { 394 | "@parcel/fs": "2.15.1", 395 | "@parcel/logger": "2.15.1", 396 | "@parcel/utils": "2.15.1", 397 | "lmdb": "2.8.5" 398 | }, 399 | "engines": { 400 | "node": ">= 16.0.0" 401 | }, 402 | "funding": { 403 | "type": "opencollective", 404 | "url": "https://opencollective.com/parcel" 405 | }, 406 | "peerDependencies": { 407 | "@parcel/core": "^2.15.1" 408 | } 409 | }, 410 | "node_modules/@parcel/codeframe": { 411 | "version": "2.15.1", 412 | "resolved": "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.15.1.tgz", 413 | "integrity": "sha512-Ma4mGvecXh9bbpOKUFDLMjbTeEkPge233e4kEYEp0cU4MVnnUkohhEDUV8tE04wJ+sbyRF9MB4LvfYJEVdqc9A==", 414 | "dev": true, 415 | "license": "MIT", 416 | "dependencies": { 417 | "chalk": "^4.1.2" 418 | }, 419 | "engines": { 420 | "node": ">= 16.0.0" 421 | }, 422 | "funding": { 423 | "type": "opencollective", 424 | "url": "https://opencollective.com/parcel" 425 | } 426 | }, 427 | "node_modules/@parcel/compressor-raw": { 428 | "version": "2.15.1", 429 | "resolved": "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.15.1.tgz", 430 | "integrity": "sha512-OmQEVFlAX7480xQc6KgFf1R3kkv8o3vTHmHCGk6NIXvtmkxC5zzeYl9lEPPGl4hG3GRGw9CP7Kv0k+emUp1q2A==", 431 | "dev": true, 432 | "license": "MIT", 433 | "dependencies": { 434 | "@parcel/plugin": "2.15.1" 435 | }, 436 | "engines": { 437 | "node": ">= 16.0.0", 438 | "parcel": "^2.15.1" 439 | }, 440 | "funding": { 441 | "type": "opencollective", 442 | "url": "https://opencollective.com/parcel" 443 | } 444 | }, 445 | "node_modules/@parcel/config-default": { 446 | "version": "2.15.1", 447 | "resolved": "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.15.1.tgz", 448 | "integrity": "sha512-Ckm0LkNbzGmRNM9SU17rIowAEhSSL4MVXGO+pNCa6Eg2azwDKc7OUq8h9prCJ8rLaSAF0gvLQqhQdM9KBmwozw==", 449 | "dev": true, 450 | "license": "MIT", 451 | "dependencies": { 452 | "@parcel/bundler-default": "2.15.1", 453 | "@parcel/compressor-raw": "2.15.1", 454 | "@parcel/namer-default": "2.15.1", 455 | "@parcel/optimizer-css": "2.15.1", 456 | "@parcel/optimizer-html": "2.15.1", 457 | "@parcel/optimizer-image": "2.15.1", 458 | "@parcel/optimizer-svg": "2.15.1", 459 | "@parcel/optimizer-swc": "2.15.1", 460 | "@parcel/packager-css": "2.15.1", 461 | "@parcel/packager-html": "2.15.1", 462 | "@parcel/packager-js": "2.15.1", 463 | "@parcel/packager-raw": "2.15.1", 464 | "@parcel/packager-svg": "2.15.1", 465 | "@parcel/packager-wasm": "2.15.1", 466 | "@parcel/reporter-dev-server": "2.15.1", 467 | "@parcel/resolver-default": "2.15.1", 468 | "@parcel/runtime-browser-hmr": "2.15.1", 469 | "@parcel/runtime-js": "2.15.1", 470 | "@parcel/runtime-rsc": "2.15.1", 471 | "@parcel/runtime-service-worker": "2.15.1", 472 | "@parcel/transformer-babel": "2.15.1", 473 | "@parcel/transformer-css": "2.15.1", 474 | "@parcel/transformer-html": "2.15.1", 475 | "@parcel/transformer-image": "2.15.1", 476 | "@parcel/transformer-js": "2.15.1", 477 | "@parcel/transformer-json": "2.15.1", 478 | "@parcel/transformer-node": "2.15.1", 479 | "@parcel/transformer-postcss": "2.15.1", 480 | "@parcel/transformer-posthtml": "2.15.1", 481 | "@parcel/transformer-raw": "2.15.1", 482 | "@parcel/transformer-react-refresh-wrap": "2.15.1", 483 | "@parcel/transformer-svg": "2.15.1" 484 | }, 485 | "funding": { 486 | "type": "opencollective", 487 | "url": "https://opencollective.com/parcel" 488 | }, 489 | "peerDependencies": { 490 | "@parcel/core": "^2.15.1" 491 | } 492 | }, 493 | "node_modules/@parcel/core": { 494 | "version": "2.15.1", 495 | "resolved": "https://registry.npmjs.org/@parcel/core/-/core-2.15.1.tgz", 496 | "integrity": "sha512-GGx7ht8Qh2InXoBsfIzS6THKGtMREgUDKI2vlzJDnm7OxZdVHn7KdYzG4w6/UKA70lFVr3SMOCdyk2EfRE48CQ==", 497 | "dev": true, 498 | "license": "MIT", 499 | "dependencies": { 500 | "@mischnic/json-sourcemap": "^0.1.1", 501 | "@parcel/cache": "2.15.1", 502 | "@parcel/diagnostic": "2.15.1", 503 | "@parcel/events": "2.15.1", 504 | "@parcel/feature-flags": "2.15.1", 505 | "@parcel/fs": "2.15.1", 506 | "@parcel/graph": "3.5.1", 507 | "@parcel/logger": "2.15.1", 508 | "@parcel/package-manager": "2.15.1", 509 | "@parcel/plugin": "2.15.1", 510 | "@parcel/profiler": "2.15.1", 511 | "@parcel/rust": "2.15.1", 512 | "@parcel/source-map": "^2.1.1", 513 | "@parcel/types": "2.15.1", 514 | "@parcel/utils": "2.15.1", 515 | "@parcel/workers": "2.15.1", 516 | "base-x": "^3.0.11", 517 | "browserslist": "^4.24.5", 518 | "clone": "^2.1.2", 519 | "dotenv": "^16.5.0", 520 | "dotenv-expand": "^11.0.7", 521 | "json5": "^2.2.3", 522 | "msgpackr": "^1.11.2", 523 | "nullthrows": "^1.1.1", 524 | "semver": "^7.7.1" 525 | }, 526 | "engines": { 527 | "node": ">= 16.0.0" 528 | }, 529 | "funding": { 530 | "type": "opencollective", 531 | "url": "https://opencollective.com/parcel" 532 | } 533 | }, 534 | "node_modules/@parcel/diagnostic": { 535 | "version": "2.15.1", 536 | "resolved": "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.15.1.tgz", 537 | "integrity": "sha512-UJFMUUHuB0YMf9V3dIlsyf1iq4pK/28ryIrI5hK3OiRwrtV2J986ksMeHzUHK/XVtn/8OhFh5tjkQUzKdb8fCw==", 538 | "dev": true, 539 | "license": "MIT", 540 | "dependencies": { 541 | "@mischnic/json-sourcemap": "^0.1.1", 542 | "nullthrows": "^1.1.1" 543 | }, 544 | "engines": { 545 | "node": ">= 16.0.0" 546 | }, 547 | "funding": { 548 | "type": "opencollective", 549 | "url": "https://opencollective.com/parcel" 550 | } 551 | }, 552 | "node_modules/@parcel/error-overlay": { 553 | "version": "2.15.1", 554 | "resolved": "https://registry.npmjs.org/@parcel/error-overlay/-/error-overlay-2.15.1.tgz", 555 | "integrity": "sha512-ljuYuotFr+24r3m3x/xFUvKFudHtV1cPbhTGuzp3AnRFOk66nLXsAIso9Vmj57GdwYtzW2/b9J0OjC4lZB19sg==", 556 | "dev": true, 557 | "license": "MIT", 558 | "engines": { 559 | "node": ">= 16.0.0" 560 | }, 561 | "funding": { 562 | "type": "opencollective", 563 | "url": "https://opencollective.com/parcel" 564 | } 565 | }, 566 | "node_modules/@parcel/events": { 567 | "version": "2.15.1", 568 | "resolved": "https://registry.npmjs.org/@parcel/events/-/events-2.15.1.tgz", 569 | "integrity": "sha512-esCmICgD/OWUjqhgJv9bYDsIjpKP+Hcg0jIuJqY/M0PLnUn1+hg/v6BZ6IFQ56gh2F1ShORKVPcayF2Etn7dEQ==", 570 | "dev": true, 571 | "license": "MIT", 572 | "engines": { 573 | "node": ">= 16.0.0" 574 | }, 575 | "funding": { 576 | "type": "opencollective", 577 | "url": "https://opencollective.com/parcel" 578 | } 579 | }, 580 | "node_modules/@parcel/feature-flags": { 581 | "version": "2.15.1", 582 | "resolved": "https://registry.npmjs.org/@parcel/feature-flags/-/feature-flags-2.15.1.tgz", 583 | "integrity": "sha512-NdG5O8XJBFzeJXbjmt1JJjdQiCgNNfhoWlt5ZSyyrS5/5BgNQo0022XNidN1kEdSrcItvE4OPEd0NV5y/t7zNA==", 584 | "dev": true, 585 | "license": "MIT", 586 | "engines": { 587 | "node": ">= 16.0.0" 588 | }, 589 | "funding": { 590 | "type": "opencollective", 591 | "url": "https://opencollective.com/parcel" 592 | } 593 | }, 594 | "node_modules/@parcel/fs": { 595 | "version": "2.15.1", 596 | "resolved": "https://registry.npmjs.org/@parcel/fs/-/fs-2.15.1.tgz", 597 | "integrity": "sha512-ycm/MPTUM/RonuIqTHGrSxeIz6ZOPpyWzVXuc37dq9eR/kSIHLCAWxhtr7nVrZyrStX/ARUC6aQUqRBg6DDJMg==", 598 | "dev": true, 599 | "license": "MIT", 600 | "dependencies": { 601 | "@parcel/feature-flags": "2.15.1", 602 | "@parcel/rust": "2.15.1", 603 | "@parcel/types-internal": "2.15.1", 604 | "@parcel/utils": "2.15.1", 605 | "@parcel/watcher": "^2.0.7", 606 | "@parcel/workers": "2.15.1" 607 | }, 608 | "engines": { 609 | "node": ">= 16.0.0" 610 | }, 611 | "funding": { 612 | "type": "opencollective", 613 | "url": "https://opencollective.com/parcel" 614 | }, 615 | "peerDependencies": { 616 | "@parcel/core": "^2.15.1" 617 | } 618 | }, 619 | "node_modules/@parcel/graph": { 620 | "version": "3.5.1", 621 | "resolved": "https://registry.npmjs.org/@parcel/graph/-/graph-3.5.1.tgz", 622 | "integrity": "sha512-28mwhl5smB/G6bIIAtV/GHD98qAAKhm3gWkuwFua+gIhOscsiao0jIVHvYwfcQewbesJrvXa8Xr4Jwqkl+4dGw==", 623 | "dev": true, 624 | "license": "MIT", 625 | "dependencies": { 626 | "@parcel/feature-flags": "2.15.1", 627 | "nullthrows": "^1.1.1" 628 | }, 629 | "engines": { 630 | "node": ">= 16.0.0" 631 | }, 632 | "funding": { 633 | "type": "opencollective", 634 | "url": "https://opencollective.com/parcel" 635 | } 636 | }, 637 | "node_modules/@parcel/logger": { 638 | "version": "2.15.1", 639 | "resolved": "https://registry.npmjs.org/@parcel/logger/-/logger-2.15.1.tgz", 640 | "integrity": "sha512-oAmZDBiX8DmRWkxvNuEOGTcT0IQzlHvJCg+VtEHkprclAeHAzymT+uKfkvnjCfw3WRUdrrOqXPli3mfBqcHoQQ==", 641 | "dev": true, 642 | "license": "MIT", 643 | "dependencies": { 644 | "@parcel/diagnostic": "2.15.1", 645 | "@parcel/events": "2.15.1" 646 | }, 647 | "engines": { 648 | "node": ">= 16.0.0" 649 | }, 650 | "funding": { 651 | "type": "opencollective", 652 | "url": "https://opencollective.com/parcel" 653 | } 654 | }, 655 | "node_modules/@parcel/markdown-ansi": { 656 | "version": "2.15.1", 657 | "resolved": "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.15.1.tgz", 658 | "integrity": "sha512-Ja+N6B1/JABUiOMuCDFw/qZAiErJgNOyUR0dF7o32xbWsw+PQlRLSbhpaq/97YZCN6bit2BPQD6sfuIqFQHmfQ==", 659 | "dev": true, 660 | "license": "MIT", 661 | "dependencies": { 662 | "chalk": "^4.1.2" 663 | }, 664 | "engines": { 665 | "node": ">= 16.0.0" 666 | }, 667 | "funding": { 668 | "type": "opencollective", 669 | "url": "https://opencollective.com/parcel" 670 | } 671 | }, 672 | "node_modules/@parcel/namer-default": { 673 | "version": "2.15.1", 674 | "resolved": "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.15.1.tgz", 675 | "integrity": "sha512-yrx8TvyEhrqW+ioO7wZyN4BO0EBQdl5cOIzm/STYIlyQamikDAq8CCZ0ZCRdMNh4bm3K/l5gPY+On2t1SBZ1Ag==", 676 | "dev": true, 677 | "license": "MIT", 678 | "dependencies": { 679 | "@parcel/diagnostic": "2.15.1", 680 | "@parcel/plugin": "2.15.1", 681 | "nullthrows": "^1.1.1" 682 | }, 683 | "engines": { 684 | "node": ">= 16.0.0", 685 | "parcel": "^2.15.1" 686 | }, 687 | "funding": { 688 | "type": "opencollective", 689 | "url": "https://opencollective.com/parcel" 690 | } 691 | }, 692 | "node_modules/@parcel/node-resolver-core": { 693 | "version": "3.6.1", 694 | "resolved": "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-3.6.1.tgz", 695 | "integrity": "sha512-CwP01sMXn75GUmBSL+GdVlvhMWcjSr7vvARobG0vM8VYPduZet0AdqYYoZ0alkk43boDV/HmZJnoucKQIk75Tw==", 696 | "dev": true, 697 | "license": "MIT", 698 | "dependencies": { 699 | "@mischnic/json-sourcemap": "^0.1.1", 700 | "@parcel/diagnostic": "2.15.1", 701 | "@parcel/fs": "2.15.1", 702 | "@parcel/rust": "2.15.1", 703 | "@parcel/utils": "2.15.1", 704 | "nullthrows": "^1.1.1", 705 | "semver": "^7.7.1" 706 | }, 707 | "engines": { 708 | "node": ">= 16.0.0" 709 | }, 710 | "funding": { 711 | "type": "opencollective", 712 | "url": "https://opencollective.com/parcel" 713 | } 714 | }, 715 | "node_modules/@parcel/optimizer-css": { 716 | "version": "2.15.1", 717 | "resolved": "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.15.1.tgz", 718 | "integrity": "sha512-7fbw+GLIntxN73SadfBUr+Mc+K5EvOIAshkZmJ5ikKg6RAPpngI8v11AYWBIdfHheHPIopGbHgJjG45bzicxqg==", 719 | "dev": true, 720 | "license": "MIT", 721 | "dependencies": { 722 | "@parcel/diagnostic": "2.15.1", 723 | "@parcel/plugin": "2.15.1", 724 | "@parcel/source-map": "^2.1.1", 725 | "@parcel/utils": "2.15.1", 726 | "browserslist": "^4.24.5", 727 | "lightningcss": "^1.30.1", 728 | "nullthrows": "^1.1.1" 729 | }, 730 | "engines": { 731 | "node": ">= 16.0.0", 732 | "parcel": "^2.15.1" 733 | }, 734 | "funding": { 735 | "type": "opencollective", 736 | "url": "https://opencollective.com/parcel" 737 | } 738 | }, 739 | "node_modules/@parcel/optimizer-html": { 740 | "version": "2.15.1", 741 | "resolved": "https://registry.npmjs.org/@parcel/optimizer-html/-/optimizer-html-2.15.1.tgz", 742 | "integrity": "sha512-vdwql378Thzfg5S5KwfQcZbuZjmD9/NSg/vpfoYh27x9Mg7D1NSRo9NdUJtvflUqU4ukARW26Ab/S2ENZnNzbQ==", 743 | "dev": true, 744 | "license": "MIT", 745 | "dependencies": { 746 | "@parcel/plugin": "2.15.1", 747 | "@parcel/rust": "2.15.1", 748 | "@parcel/utils": "2.15.1" 749 | }, 750 | "engines": { 751 | "node": ">= 16.0.0", 752 | "parcel": "^2.15.1" 753 | }, 754 | "funding": { 755 | "type": "opencollective", 756 | "url": "https://opencollective.com/parcel" 757 | } 758 | }, 759 | "node_modules/@parcel/optimizer-image": { 760 | "version": "2.15.1", 761 | "resolved": "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.15.1.tgz", 762 | "integrity": "sha512-wBTuGYvDeGBsY2zrnILZGIhCaIWdcxrW5QdeJcE7U0t9Cf+ybw7Er2qoY1D+UFHTn65pv16WU5aXW6d6Jkczew==", 763 | "dev": true, 764 | "license": "MIT", 765 | "dependencies": { 766 | "@parcel/diagnostic": "2.15.1", 767 | "@parcel/plugin": "2.15.1", 768 | "@parcel/rust": "2.15.1", 769 | "@parcel/utils": "2.15.1", 770 | "@parcel/workers": "2.15.1" 771 | }, 772 | "engines": { 773 | "node": ">= 16.0.0", 774 | "parcel": "^2.15.1" 775 | }, 776 | "funding": { 777 | "type": "opencollective", 778 | "url": "https://opencollective.com/parcel" 779 | }, 780 | "peerDependencies": { 781 | "@parcel/core": "^2.15.1" 782 | } 783 | }, 784 | "node_modules/@parcel/optimizer-svg": { 785 | "version": "2.15.1", 786 | "resolved": "https://registry.npmjs.org/@parcel/optimizer-svg/-/optimizer-svg-2.15.1.tgz", 787 | "integrity": "sha512-SQkqec2jnvwRZfBG8s8V5/3BH31jzxCrT9tW9udP2oIx4bLPz4o3ksOCBCVBqdOk1irJiM8KbGr6pHh4YKHjpg==", 788 | "dev": true, 789 | "license": "MIT", 790 | "dependencies": { 791 | "@parcel/plugin": "2.15.1", 792 | "@parcel/rust": "2.15.1", 793 | "@parcel/utils": "2.15.1" 794 | }, 795 | "engines": { 796 | "node": ">= 16.0.0", 797 | "parcel": "^2.15.1" 798 | }, 799 | "funding": { 800 | "type": "opencollective", 801 | "url": "https://opencollective.com/parcel" 802 | } 803 | }, 804 | "node_modules/@parcel/optimizer-swc": { 805 | "version": "2.15.1", 806 | "resolved": "https://registry.npmjs.org/@parcel/optimizer-swc/-/optimizer-swc-2.15.1.tgz", 807 | "integrity": "sha512-4KssFZUza2wzD6xrPQAKcyfgPejIueNnfZKA0vlMCBru0uWXsDqvRgRqzNtNUYzDzIThTh5dU7dZP7V1Hy8GKQ==", 808 | "dev": true, 809 | "license": "MIT", 810 | "dependencies": { 811 | "@parcel/diagnostic": "2.15.1", 812 | "@parcel/plugin": "2.15.1", 813 | "@parcel/source-map": "^2.1.1", 814 | "@parcel/utils": "2.15.1", 815 | "@swc/core": "^1.11.24", 816 | "nullthrows": "^1.1.1" 817 | }, 818 | "engines": { 819 | "node": ">= 16.0.0", 820 | "parcel": "^2.15.1" 821 | }, 822 | "funding": { 823 | "type": "opencollective", 824 | "url": "https://opencollective.com/parcel" 825 | } 826 | }, 827 | "node_modules/@parcel/package-manager": { 828 | "version": "2.15.1", 829 | "resolved": "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.15.1.tgz", 830 | "integrity": "sha512-/B8Nk1md6eG7Z7MLzr+B1Z5Hne1ssNXaJVdhTyxN2FWmV+W7YfZId1Js6CZzQRUElLdFD5tOMcOKCCcNuVjjyw==", 831 | "dev": true, 832 | "license": "MIT", 833 | "dependencies": { 834 | "@parcel/diagnostic": "2.15.1", 835 | "@parcel/fs": "2.15.1", 836 | "@parcel/logger": "2.15.1", 837 | "@parcel/node-resolver-core": "3.6.1", 838 | "@parcel/types": "2.15.1", 839 | "@parcel/utils": "2.15.1", 840 | "@parcel/workers": "2.15.1", 841 | "@swc/core": "^1.11.24", 842 | "semver": "^7.7.1" 843 | }, 844 | "engines": { 845 | "node": ">= 16.0.0" 846 | }, 847 | "funding": { 848 | "type": "opencollective", 849 | "url": "https://opencollective.com/parcel" 850 | }, 851 | "peerDependencies": { 852 | "@parcel/core": "^2.15.1" 853 | } 854 | }, 855 | "node_modules/@parcel/packager-css": { 856 | "version": "2.15.1", 857 | "resolved": "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.15.1.tgz", 858 | "integrity": "sha512-ElwNtT/ZmamGqT0H6DuVeqs33pCj3HAiOKvwT7DRoErOH+W3PNOjpscr8zinnGJsK47ULpHZgvSq2prD6F3JpQ==", 859 | "dev": true, 860 | "license": "MIT", 861 | "dependencies": { 862 | "@parcel/diagnostic": "2.15.1", 863 | "@parcel/plugin": "2.15.1", 864 | "@parcel/source-map": "^2.1.1", 865 | "@parcel/utils": "2.15.1", 866 | "lightningcss": "^1.30.1", 867 | "nullthrows": "^1.1.1" 868 | }, 869 | "engines": { 870 | "node": ">= 16.0.0", 871 | "parcel": "^2.15.1" 872 | }, 873 | "funding": { 874 | "type": "opencollective", 875 | "url": "https://opencollective.com/parcel" 876 | } 877 | }, 878 | "node_modules/@parcel/packager-html": { 879 | "version": "2.15.1", 880 | "resolved": "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.15.1.tgz", 881 | "integrity": "sha512-TQrvsr00IjALV9bfAWYPjjf6Tii58XS7oEyrMayMfbem2uzFl6gY+Y4kDdaAKTRNZuJggb58ypsOG3OKLpkHhQ==", 882 | "dev": true, 883 | "license": "MIT", 884 | "dependencies": { 885 | "@parcel/plugin": "2.15.1", 886 | "@parcel/rust": "2.15.1", 887 | "@parcel/types": "2.15.1", 888 | "@parcel/utils": "2.15.1" 889 | }, 890 | "engines": { 891 | "node": ">= 16.0.0", 892 | "parcel": "^2.15.1" 893 | }, 894 | "funding": { 895 | "type": "opencollective", 896 | "url": "https://opencollective.com/parcel" 897 | } 898 | }, 899 | "node_modules/@parcel/packager-js": { 900 | "version": "2.15.1", 901 | "resolved": "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.15.1.tgz", 902 | "integrity": "sha512-afQThQpB3j+GLsRTsOABIi9QDBgGZfZQn4etMdFrnT9rSikRxFn5CStJnPc7jgnUf4deVOoODbVXF8VAYl1nUw==", 903 | "dev": true, 904 | "license": "MIT", 905 | "dependencies": { 906 | "@parcel/diagnostic": "2.15.1", 907 | "@parcel/plugin": "2.15.1", 908 | "@parcel/rust": "2.15.1", 909 | "@parcel/source-map": "^2.1.1", 910 | "@parcel/types": "2.15.1", 911 | "@parcel/utils": "2.15.1", 912 | "globals": "^13.24.0", 913 | "nullthrows": "^1.1.1" 914 | }, 915 | "engines": { 916 | "node": ">= 16.0.0", 917 | "parcel": "^2.15.1" 918 | }, 919 | "funding": { 920 | "type": "opencollective", 921 | "url": "https://opencollective.com/parcel" 922 | } 923 | }, 924 | "node_modules/@parcel/packager-raw": { 925 | "version": "2.15.1", 926 | "resolved": "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.15.1.tgz", 927 | "integrity": "sha512-MZWaEZ1EJAw5R5w1ZPeoDHcwtmYfAHBm89r0F9gkUAhAxvAzSUDoFt8Cnlfz4i+lQW5ZMhUtFXRnD9n9xSkfjw==", 928 | "dev": true, 929 | "license": "MIT", 930 | "dependencies": { 931 | "@parcel/plugin": "2.15.1" 932 | }, 933 | "engines": { 934 | "node": ">= 16.0.0", 935 | "parcel": "^2.15.1" 936 | }, 937 | "funding": { 938 | "type": "opencollective", 939 | "url": "https://opencollective.com/parcel" 940 | } 941 | }, 942 | "node_modules/@parcel/packager-svg": { 943 | "version": "2.15.1", 944 | "resolved": "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.15.1.tgz", 945 | "integrity": "sha512-LVof+T0UmrqM5GUdrUKyBTuYaPt6E1QmEk08QgcAWCDCjBN/xq9UDpSBSY+erOm7YIA0ad8YkyqANJMPP6o2pA==", 946 | "dev": true, 947 | "license": "MIT", 948 | "dependencies": { 949 | "@parcel/plugin": "2.15.1", 950 | "@parcel/rust": "2.15.1", 951 | "@parcel/types": "2.15.1", 952 | "@parcel/utils": "2.15.1" 953 | }, 954 | "engines": { 955 | "node": ">= 16.0.0", 956 | "parcel": "^2.15.1" 957 | }, 958 | "funding": { 959 | "type": "opencollective", 960 | "url": "https://opencollective.com/parcel" 961 | } 962 | }, 963 | "node_modules/@parcel/packager-wasm": { 964 | "version": "2.15.1", 965 | "resolved": "https://registry.npmjs.org/@parcel/packager-wasm/-/packager-wasm-2.15.1.tgz", 966 | "integrity": "sha512-n3ZCAep6cMhXxjunUytIMpaPR7+9GoB80RyYFQzRhSEorDYmgInDbvYjAFDtI4XHr3aRPLn67CTSMC0OQa6U5Q==", 967 | "dev": true, 968 | "license": "MIT", 969 | "dependencies": { 970 | "@parcel/plugin": "2.15.1" 971 | }, 972 | "engines": { 973 | "node": ">=16.0.0", 974 | "parcel": "^2.15.1" 975 | }, 976 | "funding": { 977 | "type": "opencollective", 978 | "url": "https://opencollective.com/parcel" 979 | } 980 | }, 981 | "node_modules/@parcel/plugin": { 982 | "version": "2.15.1", 983 | "resolved": "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.15.1.tgz", 984 | "integrity": "sha512-nlcmKLrEfV0ZJ6Ow6Wt7HlcSBXPd4o5h8u2VSHVapP/4ZfXUSi3RMELQ1vNuZH0+kWPPGCwRCjcDqMa7FZ5q7w==", 985 | "dev": true, 986 | "license": "MIT", 987 | "dependencies": { 988 | "@parcel/types": "2.15.1" 989 | }, 990 | "engines": { 991 | "node": ">= 16.0.0" 992 | }, 993 | "funding": { 994 | "type": "opencollective", 995 | "url": "https://opencollective.com/parcel" 996 | } 997 | }, 998 | "node_modules/@parcel/profiler": { 999 | "version": "2.15.1", 1000 | "resolved": "https://registry.npmjs.org/@parcel/profiler/-/profiler-2.15.1.tgz", 1001 | "integrity": "sha512-/FiXLrydaLO3RuzKsxCdNGekFPUmG7xCaseW9uDIraQJl39TD4Yxr8R8X3TOuxCvxNSfci87YSenQGXiOlqCMg==", 1002 | "dev": true, 1003 | "license": "MIT", 1004 | "dependencies": { 1005 | "@parcel/diagnostic": "2.15.1", 1006 | "@parcel/events": "2.15.1", 1007 | "@parcel/types-internal": "2.15.1", 1008 | "chrome-trace-event": "^1.0.2" 1009 | }, 1010 | "engines": { 1011 | "node": ">= 16.0.0" 1012 | }, 1013 | "funding": { 1014 | "type": "opencollective", 1015 | "url": "https://opencollective.com/parcel" 1016 | } 1017 | }, 1018 | "node_modules/@parcel/reporter-cli": { 1019 | "version": "2.15.1", 1020 | "resolved": "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.15.1.tgz", 1021 | "integrity": "sha512-w/xFyiQNx/PPREimNgA+ZzrubQmtU1nPqQzOtUwvIGdPsp2BMc6VuM1mmmO9On0awX1lfKlWJvj7A6CZ7ZOrAA==", 1022 | "dev": true, 1023 | "license": "MIT", 1024 | "dependencies": { 1025 | "@parcel/plugin": "2.15.1", 1026 | "@parcel/types": "2.15.1", 1027 | "@parcel/utils": "2.15.1", 1028 | "chalk": "^4.1.2", 1029 | "term-size": "^2.2.1" 1030 | }, 1031 | "engines": { 1032 | "node": ">= 16.0.0", 1033 | "parcel": "^2.15.1" 1034 | }, 1035 | "funding": { 1036 | "type": "opencollective", 1037 | "url": "https://opencollective.com/parcel" 1038 | } 1039 | }, 1040 | "node_modules/@parcel/reporter-dev-server": { 1041 | "version": "2.15.1", 1042 | "resolved": "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.15.1.tgz", 1043 | "integrity": "sha512-5b2ESpM6lgXSH+UIJKafLeOLsUkEtiUC3EMnvAS0frt4DyC5wtR4I9us+SO4OPm2ah7xkxDJI6mIjet5IBBioQ==", 1044 | "dev": true, 1045 | "license": "MIT", 1046 | "dependencies": { 1047 | "@parcel/codeframe": "2.15.1", 1048 | "@parcel/plugin": "2.15.1", 1049 | "@parcel/source-map": "^2.1.1", 1050 | "@parcel/utils": "2.15.1" 1051 | }, 1052 | "engines": { 1053 | "node": ">= 16.0.0", 1054 | "parcel": "^2.15.1" 1055 | }, 1056 | "funding": { 1057 | "type": "opencollective", 1058 | "url": "https://opencollective.com/parcel" 1059 | } 1060 | }, 1061 | "node_modules/@parcel/reporter-tracer": { 1062 | "version": "2.15.1", 1063 | "resolved": "https://registry.npmjs.org/@parcel/reporter-tracer/-/reporter-tracer-2.15.1.tgz", 1064 | "integrity": "sha512-Je2m/PMx3UJM+NZ1JFiMvwiZXSOmJ2jCvoy7y+kBAjZ95JZTjxK/dMrjMAJNG0iTPdrgfSOez/R131OdqbGOsg==", 1065 | "dev": true, 1066 | "license": "MIT", 1067 | "dependencies": { 1068 | "@parcel/plugin": "2.15.1", 1069 | "@parcel/utils": "2.15.1", 1070 | "chrome-trace-event": "^1.0.3", 1071 | "nullthrows": "^1.1.1" 1072 | }, 1073 | "engines": { 1074 | "node": ">= 16.0.0", 1075 | "parcel": "^2.15.1" 1076 | }, 1077 | "funding": { 1078 | "type": "opencollective", 1079 | "url": "https://opencollective.com/parcel" 1080 | } 1081 | }, 1082 | "node_modules/@parcel/resolver-default": { 1083 | "version": "2.15.1", 1084 | "resolved": "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.15.1.tgz", 1085 | "integrity": "sha512-32/hmXv+HZxM6Sr8/bxugCHXK5/za+sm8Jpni1hH24O1MN4sw/6lxRawOmshaifsHe634xi8JZRxKCby0CK8eQ==", 1086 | "dev": true, 1087 | "license": "MIT", 1088 | "dependencies": { 1089 | "@parcel/node-resolver-core": "3.6.1", 1090 | "@parcel/plugin": "2.15.1" 1091 | }, 1092 | "engines": { 1093 | "node": ">= 16.0.0", 1094 | "parcel": "^2.15.1" 1095 | }, 1096 | "funding": { 1097 | "type": "opencollective", 1098 | "url": "https://opencollective.com/parcel" 1099 | } 1100 | }, 1101 | "node_modules/@parcel/runtime-browser-hmr": { 1102 | "version": "2.15.1", 1103 | "resolved": "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.15.1.tgz", 1104 | "integrity": "sha512-XuhRY4eexys7H0186oiIfutrcGBHn//4pPXWCAd740A5PrgXfRezNG/aRQ8xSkZ9BwpshWfv1b9zyONHex5tdA==", 1105 | "dev": true, 1106 | "license": "MIT", 1107 | "dependencies": { 1108 | "@parcel/plugin": "2.15.1", 1109 | "@parcel/utils": "2.15.1" 1110 | }, 1111 | "engines": { 1112 | "node": ">= 16.0.0", 1113 | "parcel": "^2.15.1" 1114 | }, 1115 | "funding": { 1116 | "type": "opencollective", 1117 | "url": "https://opencollective.com/parcel" 1118 | } 1119 | }, 1120 | "node_modules/@parcel/runtime-js": { 1121 | "version": "2.15.1", 1122 | "resolved": "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.15.1.tgz", 1123 | "integrity": "sha512-hXbHXB7dgBQW6mxnGgkhtOt+pLnr1HXGitLGxaQZSX0sbepPK0uY8U959Wkxnw7Tu5ru76CSfnP+1ZyZGE6Z0A==", 1124 | "dev": true, 1125 | "license": "MIT", 1126 | "dependencies": { 1127 | "@parcel/diagnostic": "2.15.1", 1128 | "@parcel/plugin": "2.15.1", 1129 | "@parcel/utils": "2.15.1", 1130 | "nullthrows": "^1.1.1" 1131 | }, 1132 | "engines": { 1133 | "node": ">= 16.0.0", 1134 | "parcel": "^2.15.1" 1135 | }, 1136 | "funding": { 1137 | "type": "opencollective", 1138 | "url": "https://opencollective.com/parcel" 1139 | } 1140 | }, 1141 | "node_modules/@parcel/runtime-rsc": { 1142 | "version": "2.15.1", 1143 | "resolved": "https://registry.npmjs.org/@parcel/runtime-rsc/-/runtime-rsc-2.15.1.tgz", 1144 | "integrity": "sha512-5UIj09IUj0+v9uyQrIGPDTkM5RLJEOgGsS8sHtfDZ1SFOjIumbT4/J0tXF0QDNrsvBdDx9dxlxRvwyyEehUvkg==", 1145 | "dev": true, 1146 | "license": "MIT", 1147 | "dependencies": { 1148 | "@parcel/plugin": "2.15.1", 1149 | "@parcel/rust": "2.15.1", 1150 | "@parcel/utils": "2.15.1", 1151 | "nullthrows": "^1.1.1" 1152 | }, 1153 | "engines": { 1154 | "node": ">= 12.0.0", 1155 | "parcel": "^2.15.1" 1156 | }, 1157 | "funding": { 1158 | "type": "opencollective", 1159 | "url": "https://opencollective.com/parcel" 1160 | } 1161 | }, 1162 | "node_modules/@parcel/runtime-service-worker": { 1163 | "version": "2.15.1", 1164 | "resolved": "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.15.1.tgz", 1165 | "integrity": "sha512-SzoGHsHIp93FmGbs6R5IjSbGnIkPit9tbbV1wZPW7xzdO9vjOjcWN1pw2t0I5Pdm50b0uf3qEYyIcd+gfNidsA==", 1166 | "dev": true, 1167 | "license": "MIT", 1168 | "dependencies": { 1169 | "@parcel/plugin": "2.15.1", 1170 | "@parcel/utils": "2.15.1", 1171 | "nullthrows": "^1.1.1" 1172 | }, 1173 | "engines": { 1174 | "node": ">= 16.0.0", 1175 | "parcel": "^2.15.1" 1176 | }, 1177 | "funding": { 1178 | "type": "opencollective", 1179 | "url": "https://opencollective.com/parcel" 1180 | } 1181 | }, 1182 | "node_modules/@parcel/rust": { 1183 | "version": "2.15.1", 1184 | "resolved": "https://registry.npmjs.org/@parcel/rust/-/rust-2.15.1.tgz", 1185 | "integrity": "sha512-1YRgpvSFDJPvybC2YWQrcYzHz8gvb3SajsbriZETdvUu6N1OfG75UJHfJ8Mb+NokOrQNhVRrrGX5Q3ELEMuaxg==", 1186 | "dev": true, 1187 | "license": "MIT", 1188 | "engines": { 1189 | "node": ">= 16.0.0" 1190 | }, 1191 | "funding": { 1192 | "type": "opencollective", 1193 | "url": "https://opencollective.com/parcel" 1194 | }, 1195 | "optionalDependencies": { 1196 | "@parcel/rust-darwin-arm64": "2.15.1", 1197 | "@parcel/rust-darwin-x64": "2.15.1", 1198 | "@parcel/rust-linux-arm-gnueabihf": "2.15.1", 1199 | "@parcel/rust-linux-arm64-gnu": "2.15.1", 1200 | "@parcel/rust-linux-arm64-musl": "2.15.1", 1201 | "@parcel/rust-linux-x64-gnu": "2.15.1", 1202 | "@parcel/rust-linux-x64-musl": "2.15.1", 1203 | "@parcel/rust-win32-x64-msvc": "2.15.1" 1204 | }, 1205 | "peerDependencies": { 1206 | "napi-wasm": "^1.1.2" 1207 | }, 1208 | "peerDependenciesMeta": { 1209 | "napi-wasm": { 1210 | "optional": true 1211 | } 1212 | } 1213 | }, 1214 | "node_modules/@parcel/rust-darwin-arm64": { 1215 | "version": "2.15.1", 1216 | "resolved": "https://registry.npmjs.org/@parcel/rust-darwin-arm64/-/rust-darwin-arm64-2.15.1.tgz", 1217 | "integrity": "sha512-QkAnDhoc44gMLzI7o3S5y7kmZBdAQHvR2WyroE6ROrbu/ErR2dHwUenFKMLO297H7rb4LvckAbAHt5OqeS/Mww==", 1218 | "cpu": [ 1219 | "arm64" 1220 | ], 1221 | "dev": true, 1222 | "license": "MIT", 1223 | "optional": true, 1224 | "os": [ 1225 | "darwin" 1226 | ], 1227 | "engines": { 1228 | "node": ">= 10" 1229 | }, 1230 | "funding": { 1231 | "type": "opencollective", 1232 | "url": "https://opencollective.com/parcel" 1233 | } 1234 | }, 1235 | "node_modules/@parcel/rust-darwin-x64": { 1236 | "version": "2.15.1", 1237 | "resolved": "https://registry.npmjs.org/@parcel/rust-darwin-x64/-/rust-darwin-x64-2.15.1.tgz", 1238 | "integrity": "sha512-brd9Y+UdSXOoOmP9QEQQ/mMWSF57gozlyZPdPkpSgfoCVWSF3/9WANumL8dCGve+JlbMF95eg2H9hcXdMubfaw==", 1239 | "cpu": [ 1240 | "x64" 1241 | ], 1242 | "dev": true, 1243 | "license": "MIT", 1244 | "optional": true, 1245 | "os": [ 1246 | "darwin" 1247 | ], 1248 | "engines": { 1249 | "node": ">= 10" 1250 | }, 1251 | "funding": { 1252 | "type": "opencollective", 1253 | "url": "https://opencollective.com/parcel" 1254 | } 1255 | }, 1256 | "node_modules/@parcel/rust-linux-arm-gnueabihf": { 1257 | "version": "2.15.1", 1258 | "resolved": "https://registry.npmjs.org/@parcel/rust-linux-arm-gnueabihf/-/rust-linux-arm-gnueabihf-2.15.1.tgz", 1259 | "integrity": "sha512-06G8pXdpkPZ3zOhHMWoGBU5v/iV9ucKEtNA6NCA48M4t9nQP0HkcUjAulrflq4B5HsAYkG4691Dw52znXWISDQ==", 1260 | "cpu": [ 1261 | "arm" 1262 | ], 1263 | "dev": true, 1264 | "license": "MIT", 1265 | "optional": true, 1266 | "os": [ 1267 | "linux" 1268 | ], 1269 | "engines": { 1270 | "node": ">= 10" 1271 | }, 1272 | "funding": { 1273 | "type": "opencollective", 1274 | "url": "https://opencollective.com/parcel" 1275 | } 1276 | }, 1277 | "node_modules/@parcel/rust-linux-arm64-gnu": { 1278 | "version": "2.15.1", 1279 | "resolved": "https://registry.npmjs.org/@parcel/rust-linux-arm64-gnu/-/rust-linux-arm64-gnu-2.15.1.tgz", 1280 | "integrity": "sha512-BMEmCkWzHSaLwfY2Mcsi/eXWvSqQf3IOKll2jRVuS2cZQambyggunXD5prrvj++gXN1cwpGmno2BLDoA08Vwzg==", 1281 | "cpu": [ 1282 | "arm64" 1283 | ], 1284 | "dev": true, 1285 | "license": "MIT", 1286 | "optional": true, 1287 | "os": [ 1288 | "linux" 1289 | ], 1290 | "engines": { 1291 | "node": ">= 10" 1292 | }, 1293 | "funding": { 1294 | "type": "opencollective", 1295 | "url": "https://opencollective.com/parcel" 1296 | } 1297 | }, 1298 | "node_modules/@parcel/rust-linux-arm64-musl": { 1299 | "version": "2.15.1", 1300 | "resolved": "https://registry.npmjs.org/@parcel/rust-linux-arm64-musl/-/rust-linux-arm64-musl-2.15.1.tgz", 1301 | "integrity": "sha512-6FfxmBUFIRFJpHghx+ybghFaxKtKgwDX/9NUYYrqdv83snT9aEkYU0pJqfRyrdz2Wkr1tkOeIhgtvo53CksD1w==", 1302 | "cpu": [ 1303 | "arm64" 1304 | ], 1305 | "dev": true, 1306 | "license": "MIT", 1307 | "optional": true, 1308 | "os": [ 1309 | "linux" 1310 | ], 1311 | "engines": { 1312 | "node": ">= 10" 1313 | }, 1314 | "funding": { 1315 | "type": "opencollective", 1316 | "url": "https://opencollective.com/parcel" 1317 | } 1318 | }, 1319 | "node_modules/@parcel/rust-linux-x64-gnu": { 1320 | "version": "2.15.1", 1321 | "resolved": "https://registry.npmjs.org/@parcel/rust-linux-x64-gnu/-/rust-linux-x64-gnu-2.15.1.tgz", 1322 | "integrity": "sha512-EV0ATUcUP3XY2ej0f+T/YJVMMpgCS/ppGuoykqv1VmopNz4mhXQIFezF6QnI9WUOJDgFUg/S9lC4GJGfmy0Dzg==", 1323 | "cpu": [ 1324 | "x64" 1325 | ], 1326 | "dev": true, 1327 | "license": "MIT", 1328 | "optional": true, 1329 | "os": [ 1330 | "linux" 1331 | ], 1332 | "engines": { 1333 | "node": ">= 10" 1334 | }, 1335 | "funding": { 1336 | "type": "opencollective", 1337 | "url": "https://opencollective.com/parcel" 1338 | } 1339 | }, 1340 | "node_modules/@parcel/rust-linux-x64-musl": { 1341 | "version": "2.15.1", 1342 | "resolved": "https://registry.npmjs.org/@parcel/rust-linux-x64-musl/-/rust-linux-x64-musl-2.15.1.tgz", 1343 | "integrity": "sha512-PffkN//0SZsAd7VM3Ywr7DMw22Fg7S//rn7e/DjZG6llCYYwQLjQOcZXb/B8NdzfNs3cp1L6U2muwYxMpPOfOQ==", 1344 | "cpu": [ 1345 | "x64" 1346 | ], 1347 | "dev": true, 1348 | "license": "MIT", 1349 | "optional": true, 1350 | "os": [ 1351 | "linux" 1352 | ], 1353 | "engines": { 1354 | "node": ">= 10" 1355 | }, 1356 | "funding": { 1357 | "type": "opencollective", 1358 | "url": "https://opencollective.com/parcel" 1359 | } 1360 | }, 1361 | "node_modules/@parcel/rust-win32-x64-msvc": { 1362 | "version": "2.15.1", 1363 | "resolved": "https://registry.npmjs.org/@parcel/rust-win32-x64-msvc/-/rust-win32-x64-msvc-2.15.1.tgz", 1364 | "integrity": "sha512-CX/SgV2jdkJT+ySZpq1UDkhwI7Sg1qUTWvSrD+ApPcYoO9dqDd+Amqr3XIUyyNfSlqnHvDsGtQNBVjkHBrPzdw==", 1365 | "cpu": [ 1366 | "x64" 1367 | ], 1368 | "dev": true, 1369 | "license": "MIT", 1370 | "optional": true, 1371 | "os": [ 1372 | "win32" 1373 | ], 1374 | "engines": { 1375 | "node": ">= 10" 1376 | }, 1377 | "funding": { 1378 | "type": "opencollective", 1379 | "url": "https://opencollective.com/parcel" 1380 | } 1381 | }, 1382 | "node_modules/@parcel/source-map": { 1383 | "version": "2.1.1", 1384 | "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz", 1385 | "integrity": "sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==", 1386 | "dev": true, 1387 | "license": "MIT", 1388 | "dependencies": { 1389 | "detect-libc": "^1.0.3" 1390 | }, 1391 | "engines": { 1392 | "node": "^12.18.3 || >=14" 1393 | } 1394 | }, 1395 | "node_modules/@parcel/transformer-babel": { 1396 | "version": "2.15.1", 1397 | "resolved": "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.15.1.tgz", 1398 | "integrity": "sha512-VXMOYfy1/VkQxZP3wbkHbqRXrVEA0yWLNWGxND8MhCdIyEb/ry0J+RZLBB+fa/uBV5S8HI3VYFtVRKExrdKYPg==", 1399 | "dev": true, 1400 | "license": "MIT", 1401 | "dependencies": { 1402 | "@parcel/diagnostic": "2.15.1", 1403 | "@parcel/plugin": "2.15.1", 1404 | "@parcel/source-map": "^2.1.1", 1405 | "@parcel/utils": "2.15.1", 1406 | "browserslist": "^4.24.5", 1407 | "json5": "^2.2.3", 1408 | "nullthrows": "^1.1.1", 1409 | "semver": "^7.7.1" 1410 | }, 1411 | "engines": { 1412 | "node": ">= 16.0.0", 1413 | "parcel": "^2.15.1" 1414 | }, 1415 | "funding": { 1416 | "type": "opencollective", 1417 | "url": "https://opencollective.com/parcel" 1418 | } 1419 | }, 1420 | "node_modules/@parcel/transformer-css": { 1421 | "version": "2.15.1", 1422 | "resolved": "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.15.1.tgz", 1423 | "integrity": "sha512-vI6JO/+qyAjL0ah+J8tZrGHMf82PC98+iTRzEFCBrexwICHrfiYkJH8bTRDYQPCsFcK8GZNGnLV6QyRkKQyqzg==", 1424 | "dev": true, 1425 | "license": "MIT", 1426 | "dependencies": { 1427 | "@parcel/diagnostic": "2.15.1", 1428 | "@parcel/plugin": "2.15.1", 1429 | "@parcel/source-map": "^2.1.1", 1430 | "@parcel/utils": "2.15.1", 1431 | "browserslist": "^4.24.5", 1432 | "lightningcss": "^1.30.1", 1433 | "nullthrows": "^1.1.1" 1434 | }, 1435 | "engines": { 1436 | "node": ">= 16.0.0", 1437 | "parcel": "^2.15.1" 1438 | }, 1439 | "funding": { 1440 | "type": "opencollective", 1441 | "url": "https://opencollective.com/parcel" 1442 | } 1443 | }, 1444 | "node_modules/@parcel/transformer-html": { 1445 | "version": "2.15.1", 1446 | "resolved": "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.15.1.tgz", 1447 | "integrity": "sha512-c9k6NO3DpVughTTbYcWy8DIABezlYYhi274mKnIaT0t3ETZ9UBepyY1KhNU++imhk64hfvUAvJ/ZwWRpYGnV3g==", 1448 | "dev": true, 1449 | "license": "MIT", 1450 | "dependencies": { 1451 | "@parcel/diagnostic": "2.15.1", 1452 | "@parcel/plugin": "2.15.1", 1453 | "@parcel/rust": "2.15.1" 1454 | }, 1455 | "engines": { 1456 | "node": ">= 16.0.0", 1457 | "parcel": "^2.15.1" 1458 | }, 1459 | "funding": { 1460 | "type": "opencollective", 1461 | "url": "https://opencollective.com/parcel" 1462 | } 1463 | }, 1464 | "node_modules/@parcel/transformer-image": { 1465 | "version": "2.15.1", 1466 | "resolved": "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.15.1.tgz", 1467 | "integrity": "sha512-S5dsK/w3aS0u0jAMqWiadqjxa/Zl8dW0DDlNwPq7LOnvlcgPnbXrbYVzbmF0ylMtY+ZE0FUHsKAO8zmZe8vi0Q==", 1468 | "dev": true, 1469 | "license": "MIT", 1470 | "dependencies": { 1471 | "@parcel/plugin": "2.15.1", 1472 | "@parcel/utils": "2.15.1", 1473 | "@parcel/workers": "2.15.1", 1474 | "nullthrows": "^1.1.1" 1475 | }, 1476 | "engines": { 1477 | "node": ">= 16.0.0", 1478 | "parcel": "^2.15.1" 1479 | }, 1480 | "peerDependencies": { 1481 | "@parcel/core": "^2.15.1" 1482 | } 1483 | }, 1484 | "node_modules/@parcel/transformer-js": { 1485 | "version": "2.15.1", 1486 | "resolved": "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.15.1.tgz", 1487 | "integrity": "sha512-2rxuc9kvGhkhsEabHUKkxlsYsrquhAmwdgpiAjGYMMzLIRR/xyc6dJWoDEBmrARUrw6XBRBMz61rlVhtwM+nBw==", 1488 | "dev": true, 1489 | "license": "MIT", 1490 | "dependencies": { 1491 | "@parcel/diagnostic": "2.15.1", 1492 | "@parcel/plugin": "2.15.1", 1493 | "@parcel/rust": "2.15.1", 1494 | "@parcel/source-map": "^2.1.1", 1495 | "@parcel/utils": "2.15.1", 1496 | "@parcel/workers": "2.15.1", 1497 | "@swc/helpers": "^0.5.0", 1498 | "browserslist": "^4.24.5", 1499 | "nullthrows": "^1.1.1", 1500 | "regenerator-runtime": "^0.14.1", 1501 | "semver": "^7.7.1" 1502 | }, 1503 | "engines": { 1504 | "node": ">= 16.0.0", 1505 | "parcel": "^2.15.1" 1506 | }, 1507 | "funding": { 1508 | "type": "opencollective", 1509 | "url": "https://opencollective.com/parcel" 1510 | }, 1511 | "peerDependencies": { 1512 | "@parcel/core": "^2.15.1" 1513 | } 1514 | }, 1515 | "node_modules/@parcel/transformer-json": { 1516 | "version": "2.15.1", 1517 | "resolved": "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.15.1.tgz", 1518 | "integrity": "sha512-UCL8RSn+BTT2j6vEKvQ022s5zNzSPwkFFVUY26zMcrcx6MQXKZMGa5AGAJqfzM5s2kYBx8kTx3CmCwMbwfcWEw==", 1519 | "dev": true, 1520 | "license": "MIT", 1521 | "dependencies": { 1522 | "@parcel/plugin": "2.15.1", 1523 | "json5": "^2.2.3" 1524 | }, 1525 | "engines": { 1526 | "node": ">= 16.0.0", 1527 | "parcel": "^2.15.1" 1528 | }, 1529 | "funding": { 1530 | "type": "opencollective", 1531 | "url": "https://opencollective.com/parcel" 1532 | } 1533 | }, 1534 | "node_modules/@parcel/transformer-node": { 1535 | "version": "2.15.1", 1536 | "resolved": "https://registry.npmjs.org/@parcel/transformer-node/-/transformer-node-2.15.1.tgz", 1537 | "integrity": "sha512-tnzEJyt3BfRmIikAPxNeXgjcuQwkY9gJuIa0dhHm1PlCPwQEAA8Kg0xNS8TiXCubFNIrVs3eAB23IzRjiQQ2iQ==", 1538 | "dev": true, 1539 | "license": "MIT", 1540 | "dependencies": { 1541 | "@parcel/plugin": "2.15.1" 1542 | }, 1543 | "engines": { 1544 | "node": ">= 16.0.0", 1545 | "parcel": "^2.15.1" 1546 | }, 1547 | "funding": { 1548 | "type": "opencollective", 1549 | "url": "https://opencollective.com/parcel" 1550 | } 1551 | }, 1552 | "node_modules/@parcel/transformer-postcss": { 1553 | "version": "2.15.1", 1554 | "resolved": "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.15.1.tgz", 1555 | "integrity": "sha512-lFkE8mOWJP3uWAcMUB2I7gjCNdmSnRSZQEgjFE1b26WbmJPTi95IIKrgu1dw6EOhvitRkuHHPWaSb/ekdFbTdA==", 1556 | "dev": true, 1557 | "license": "MIT", 1558 | "dependencies": { 1559 | "@parcel/diagnostic": "2.15.1", 1560 | "@parcel/plugin": "2.15.1", 1561 | "@parcel/rust": "2.15.1", 1562 | "@parcel/utils": "2.15.1", 1563 | "clone": "^2.1.2", 1564 | "nullthrows": "^1.1.1", 1565 | "postcss-value-parser": "^4.2.0", 1566 | "semver": "^7.7.1" 1567 | }, 1568 | "engines": { 1569 | "node": ">= 16.0.0", 1570 | "parcel": "^2.15.1" 1571 | }, 1572 | "funding": { 1573 | "type": "opencollective", 1574 | "url": "https://opencollective.com/parcel" 1575 | } 1576 | }, 1577 | "node_modules/@parcel/transformer-posthtml": { 1578 | "version": "2.15.1", 1579 | "resolved": "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.15.1.tgz", 1580 | "integrity": "sha512-zgWq1sx4Brzzk87bYqkbOSZSNM58UKsyNr1t7JfQtXdTkswumtDysDvx/88bqTyDkuNRP+Iowmch9Ui3q9AbTw==", 1581 | "dev": true, 1582 | "license": "MIT", 1583 | "dependencies": { 1584 | "@parcel/plugin": "2.15.1", 1585 | "@parcel/utils": "2.15.1" 1586 | }, 1587 | "engines": { 1588 | "node": ">= 16.0.0", 1589 | "parcel": "^2.15.1" 1590 | }, 1591 | "funding": { 1592 | "type": "opencollective", 1593 | "url": "https://opencollective.com/parcel" 1594 | } 1595 | }, 1596 | "node_modules/@parcel/transformer-raw": { 1597 | "version": "2.15.1", 1598 | "resolved": "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.15.1.tgz", 1599 | "integrity": "sha512-2fh6ud2lD/RxYdhhKo8tbMBOWLfTP2w5RtijBdLRkJ/3dF7Wu+xejhYu9ks3iWA4RQxcxg7Gj1EADFBgyffKFg==", 1600 | "dev": true, 1601 | "license": "MIT", 1602 | "dependencies": { 1603 | "@parcel/plugin": "2.15.1" 1604 | }, 1605 | "engines": { 1606 | "node": ">= 16.0.0", 1607 | "parcel": "^2.15.1" 1608 | }, 1609 | "funding": { 1610 | "type": "opencollective", 1611 | "url": "https://opencollective.com/parcel" 1612 | } 1613 | }, 1614 | "node_modules/@parcel/transformer-react-refresh-wrap": { 1615 | "version": "2.15.1", 1616 | "resolved": "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.15.1.tgz", 1617 | "integrity": "sha512-+Q7TjbMOJ7P64S8NPaoBSrD4ixp+Qgr41SOZvEUx/5WKx7R1d7dhUyKTz/61q7kVj1OmVlSv3UpasBCAVa259A==", 1618 | "dev": true, 1619 | "license": "MIT", 1620 | "dependencies": { 1621 | "@parcel/error-overlay": "2.15.1", 1622 | "@parcel/plugin": "2.15.1", 1623 | "@parcel/utils": "2.15.1", 1624 | "react-refresh": "^0.16.0" 1625 | }, 1626 | "engines": { 1627 | "node": ">= 16.0.0", 1628 | "parcel": "^2.15.1" 1629 | }, 1630 | "funding": { 1631 | "type": "opencollective", 1632 | "url": "https://opencollective.com/parcel" 1633 | } 1634 | }, 1635 | "node_modules/@parcel/transformer-svg": { 1636 | "version": "2.15.1", 1637 | "resolved": "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.15.1.tgz", 1638 | "integrity": "sha512-nTz27tXVPYHfcMyxdOlYNOe005egEiMK7Ldx04K/GqDZi5W3/aZeofhSdqzQlYyzA/gwu7iVDbsGcOPpBtuOlw==", 1639 | "dev": true, 1640 | "license": "MIT", 1641 | "dependencies": { 1642 | "@parcel/diagnostic": "2.15.1", 1643 | "@parcel/plugin": "2.15.1", 1644 | "@parcel/rust": "2.15.1" 1645 | }, 1646 | "engines": { 1647 | "node": ">= 16.0.0", 1648 | "parcel": "^2.15.1" 1649 | }, 1650 | "funding": { 1651 | "type": "opencollective", 1652 | "url": "https://opencollective.com/parcel" 1653 | } 1654 | }, 1655 | "node_modules/@parcel/types": { 1656 | "version": "2.15.1", 1657 | "resolved": "https://registry.npmjs.org/@parcel/types/-/types-2.15.1.tgz", 1658 | "integrity": "sha512-55TJE7tC8hhRPhs4Ki4H5xakGJBMTtLiew8eAQx7lKajG4tc9ohneGGTqKmojzId3YzTua5KARnoUjmH/eoC4Q==", 1659 | "dev": true, 1660 | "license": "MIT", 1661 | "dependencies": { 1662 | "@parcel/types-internal": "2.15.1", 1663 | "@parcel/workers": "2.15.1" 1664 | } 1665 | }, 1666 | "node_modules/@parcel/types-internal": { 1667 | "version": "2.15.1", 1668 | "resolved": "https://registry.npmjs.org/@parcel/types-internal/-/types-internal-2.15.1.tgz", 1669 | "integrity": "sha512-+dsY64R8tP77384vDaathn90w5yLGH40NTpFFYhaYgNCfA1aPCiVjI04htgEspFAyAniCsd9fZQvvtJWZ8diag==", 1670 | "dev": true, 1671 | "license": "MIT", 1672 | "dependencies": { 1673 | "@parcel/diagnostic": "2.15.1", 1674 | "@parcel/feature-flags": "2.15.1", 1675 | "@parcel/source-map": "^2.1.1", 1676 | "utility-types": "^3.11.0" 1677 | } 1678 | }, 1679 | "node_modules/@parcel/utils": { 1680 | "version": "2.15.1", 1681 | "resolved": "https://registry.npmjs.org/@parcel/utils/-/utils-2.15.1.tgz", 1682 | "integrity": "sha512-H6v0AsKU/OKeDW0deQlZyCy5IwcKQlQBxUp0cNksPLrH+PtgWtiO+ttCJFAYhaFAve5jW9oPSefbjZILp/cplQ==", 1683 | "dev": true, 1684 | "license": "MIT", 1685 | "dependencies": { 1686 | "@parcel/codeframe": "2.15.1", 1687 | "@parcel/diagnostic": "2.15.1", 1688 | "@parcel/logger": "2.15.1", 1689 | "@parcel/markdown-ansi": "2.15.1", 1690 | "@parcel/rust": "2.15.1", 1691 | "@parcel/source-map": "^2.1.1", 1692 | "chalk": "^4.1.2", 1693 | "nullthrows": "^1.1.1" 1694 | }, 1695 | "engines": { 1696 | "node": ">= 16.0.0" 1697 | }, 1698 | "funding": { 1699 | "type": "opencollective", 1700 | "url": "https://opencollective.com/parcel" 1701 | } 1702 | }, 1703 | "node_modules/@parcel/watcher": { 1704 | "version": "2.5.1", 1705 | "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", 1706 | "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", 1707 | "dev": true, 1708 | "hasInstallScript": true, 1709 | "license": "MIT", 1710 | "dependencies": { 1711 | "detect-libc": "^1.0.3", 1712 | "is-glob": "^4.0.3", 1713 | "micromatch": "^4.0.5", 1714 | "node-addon-api": "^7.0.0" 1715 | }, 1716 | "engines": { 1717 | "node": ">= 10.0.0" 1718 | }, 1719 | "funding": { 1720 | "type": "opencollective", 1721 | "url": "https://opencollective.com/parcel" 1722 | }, 1723 | "optionalDependencies": { 1724 | "@parcel/watcher-android-arm64": "2.5.1", 1725 | "@parcel/watcher-darwin-arm64": "2.5.1", 1726 | "@parcel/watcher-darwin-x64": "2.5.1", 1727 | "@parcel/watcher-freebsd-x64": "2.5.1", 1728 | "@parcel/watcher-linux-arm-glibc": "2.5.1", 1729 | "@parcel/watcher-linux-arm-musl": "2.5.1", 1730 | "@parcel/watcher-linux-arm64-glibc": "2.5.1", 1731 | "@parcel/watcher-linux-arm64-musl": "2.5.1", 1732 | "@parcel/watcher-linux-x64-glibc": "2.5.1", 1733 | "@parcel/watcher-linux-x64-musl": "2.5.1", 1734 | "@parcel/watcher-win32-arm64": "2.5.1", 1735 | "@parcel/watcher-win32-ia32": "2.5.1", 1736 | "@parcel/watcher-win32-x64": "2.5.1" 1737 | } 1738 | }, 1739 | "node_modules/@parcel/watcher-android-arm64": { 1740 | "version": "2.5.1", 1741 | "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", 1742 | "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", 1743 | "cpu": [ 1744 | "arm64" 1745 | ], 1746 | "dev": true, 1747 | "license": "MIT", 1748 | "optional": true, 1749 | "os": [ 1750 | "android" 1751 | ], 1752 | "engines": { 1753 | "node": ">= 10.0.0" 1754 | }, 1755 | "funding": { 1756 | "type": "opencollective", 1757 | "url": "https://opencollective.com/parcel" 1758 | } 1759 | }, 1760 | "node_modules/@parcel/watcher-darwin-arm64": { 1761 | "version": "2.5.1", 1762 | "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", 1763 | "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", 1764 | "cpu": [ 1765 | "arm64" 1766 | ], 1767 | "dev": true, 1768 | "license": "MIT", 1769 | "optional": true, 1770 | "os": [ 1771 | "darwin" 1772 | ], 1773 | "engines": { 1774 | "node": ">= 10.0.0" 1775 | }, 1776 | "funding": { 1777 | "type": "opencollective", 1778 | "url": "https://opencollective.com/parcel" 1779 | } 1780 | }, 1781 | "node_modules/@parcel/watcher-darwin-x64": { 1782 | "version": "2.5.1", 1783 | "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", 1784 | "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", 1785 | "cpu": [ 1786 | "x64" 1787 | ], 1788 | "dev": true, 1789 | "license": "MIT", 1790 | "optional": true, 1791 | "os": [ 1792 | "darwin" 1793 | ], 1794 | "engines": { 1795 | "node": ">= 10.0.0" 1796 | }, 1797 | "funding": { 1798 | "type": "opencollective", 1799 | "url": "https://opencollective.com/parcel" 1800 | } 1801 | }, 1802 | "node_modules/@parcel/watcher-freebsd-x64": { 1803 | "version": "2.5.1", 1804 | "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", 1805 | "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", 1806 | "cpu": [ 1807 | "x64" 1808 | ], 1809 | "dev": true, 1810 | "license": "MIT", 1811 | "optional": true, 1812 | "os": [ 1813 | "freebsd" 1814 | ], 1815 | "engines": { 1816 | "node": ">= 10.0.0" 1817 | }, 1818 | "funding": { 1819 | "type": "opencollective", 1820 | "url": "https://opencollective.com/parcel" 1821 | } 1822 | }, 1823 | "node_modules/@parcel/watcher-linux-arm-glibc": { 1824 | "version": "2.5.1", 1825 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", 1826 | "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", 1827 | "cpu": [ 1828 | "arm" 1829 | ], 1830 | "dev": true, 1831 | "license": "MIT", 1832 | "optional": true, 1833 | "os": [ 1834 | "linux" 1835 | ], 1836 | "engines": { 1837 | "node": ">= 10.0.0" 1838 | }, 1839 | "funding": { 1840 | "type": "opencollective", 1841 | "url": "https://opencollective.com/parcel" 1842 | } 1843 | }, 1844 | "node_modules/@parcel/watcher-linux-arm-musl": { 1845 | "version": "2.5.1", 1846 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", 1847 | "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", 1848 | "cpu": [ 1849 | "arm" 1850 | ], 1851 | "dev": true, 1852 | "license": "MIT", 1853 | "optional": true, 1854 | "os": [ 1855 | "linux" 1856 | ], 1857 | "engines": { 1858 | "node": ">= 10.0.0" 1859 | }, 1860 | "funding": { 1861 | "type": "opencollective", 1862 | "url": "https://opencollective.com/parcel" 1863 | } 1864 | }, 1865 | "node_modules/@parcel/watcher-linux-arm64-glibc": { 1866 | "version": "2.5.1", 1867 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", 1868 | "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", 1869 | "cpu": [ 1870 | "arm64" 1871 | ], 1872 | "dev": true, 1873 | "license": "MIT", 1874 | "optional": true, 1875 | "os": [ 1876 | "linux" 1877 | ], 1878 | "engines": { 1879 | "node": ">= 10.0.0" 1880 | }, 1881 | "funding": { 1882 | "type": "opencollective", 1883 | "url": "https://opencollective.com/parcel" 1884 | } 1885 | }, 1886 | "node_modules/@parcel/watcher-linux-arm64-musl": { 1887 | "version": "2.5.1", 1888 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", 1889 | "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", 1890 | "cpu": [ 1891 | "arm64" 1892 | ], 1893 | "dev": true, 1894 | "license": "MIT", 1895 | "optional": true, 1896 | "os": [ 1897 | "linux" 1898 | ], 1899 | "engines": { 1900 | "node": ">= 10.0.0" 1901 | }, 1902 | "funding": { 1903 | "type": "opencollective", 1904 | "url": "https://opencollective.com/parcel" 1905 | } 1906 | }, 1907 | "node_modules/@parcel/watcher-linux-x64-glibc": { 1908 | "version": "2.5.1", 1909 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", 1910 | "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", 1911 | "cpu": [ 1912 | "x64" 1913 | ], 1914 | "dev": true, 1915 | "license": "MIT", 1916 | "optional": true, 1917 | "os": [ 1918 | "linux" 1919 | ], 1920 | "engines": { 1921 | "node": ">= 10.0.0" 1922 | }, 1923 | "funding": { 1924 | "type": "opencollective", 1925 | "url": "https://opencollective.com/parcel" 1926 | } 1927 | }, 1928 | "node_modules/@parcel/watcher-linux-x64-musl": { 1929 | "version": "2.5.1", 1930 | "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", 1931 | "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", 1932 | "cpu": [ 1933 | "x64" 1934 | ], 1935 | "dev": true, 1936 | "license": "MIT", 1937 | "optional": true, 1938 | "os": [ 1939 | "linux" 1940 | ], 1941 | "engines": { 1942 | "node": ">= 10.0.0" 1943 | }, 1944 | "funding": { 1945 | "type": "opencollective", 1946 | "url": "https://opencollective.com/parcel" 1947 | } 1948 | }, 1949 | "node_modules/@parcel/watcher-win32-arm64": { 1950 | "version": "2.5.1", 1951 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", 1952 | "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", 1953 | "cpu": [ 1954 | "arm64" 1955 | ], 1956 | "dev": true, 1957 | "license": "MIT", 1958 | "optional": true, 1959 | "os": [ 1960 | "win32" 1961 | ], 1962 | "engines": { 1963 | "node": ">= 10.0.0" 1964 | }, 1965 | "funding": { 1966 | "type": "opencollective", 1967 | "url": "https://opencollective.com/parcel" 1968 | } 1969 | }, 1970 | "node_modules/@parcel/watcher-win32-ia32": { 1971 | "version": "2.5.1", 1972 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", 1973 | "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", 1974 | "cpu": [ 1975 | "ia32" 1976 | ], 1977 | "dev": true, 1978 | "license": "MIT", 1979 | "optional": true, 1980 | "os": [ 1981 | "win32" 1982 | ], 1983 | "engines": { 1984 | "node": ">= 10.0.0" 1985 | }, 1986 | "funding": { 1987 | "type": "opencollective", 1988 | "url": "https://opencollective.com/parcel" 1989 | } 1990 | }, 1991 | "node_modules/@parcel/watcher-win32-x64": { 1992 | "version": "2.5.1", 1993 | "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", 1994 | "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", 1995 | "cpu": [ 1996 | "x64" 1997 | ], 1998 | "dev": true, 1999 | "license": "MIT", 2000 | "optional": true, 2001 | "os": [ 2002 | "win32" 2003 | ], 2004 | "engines": { 2005 | "node": ">= 10.0.0" 2006 | }, 2007 | "funding": { 2008 | "type": "opencollective", 2009 | "url": "https://opencollective.com/parcel" 2010 | } 2011 | }, 2012 | "node_modules/@parcel/workers": { 2013 | "version": "2.15.1", 2014 | "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.15.1.tgz", 2015 | "integrity": "sha512-WBuNTLWK2Y0ghhA8I/DwMReURS+sTat5pFbkxqTdznsrq+MVJTDnp54YzEYryLhaca8vhFZediIh159msGB6PQ==", 2016 | "dev": true, 2017 | "license": "MIT", 2018 | "dependencies": { 2019 | "@parcel/diagnostic": "2.15.1", 2020 | "@parcel/logger": "2.15.1", 2021 | "@parcel/profiler": "2.15.1", 2022 | "@parcel/types-internal": "2.15.1", 2023 | "@parcel/utils": "2.15.1", 2024 | "nullthrows": "^1.1.1" 2025 | }, 2026 | "engines": { 2027 | "node": ">= 16.0.0" 2028 | }, 2029 | "funding": { 2030 | "type": "opencollective", 2031 | "url": "https://opencollective.com/parcel" 2032 | }, 2033 | "peerDependencies": { 2034 | "@parcel/core": "^2.15.1" 2035 | } 2036 | }, 2037 | "node_modules/@pkgr/core": { 2038 | "version": "0.2.4", 2039 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", 2040 | "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", 2041 | "dev": true, 2042 | "license": "MIT", 2043 | "engines": { 2044 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 2045 | }, 2046 | "funding": { 2047 | "url": "https://opencollective.com/pkgr" 2048 | } 2049 | }, 2050 | "node_modules/@swc/core": { 2051 | "version": "1.11.24", 2052 | "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.11.24.tgz", 2053 | "integrity": "sha512-MaQEIpfcEMzx3VWWopbofKJvaraqmL6HbLlw2bFZ7qYqYw3rkhM0cQVEgyzbHtTWwCwPMFZSC2DUbhlZgrMfLg==", 2054 | "dev": true, 2055 | "hasInstallScript": true, 2056 | "license": "Apache-2.0", 2057 | "dependencies": { 2058 | "@swc/counter": "^0.1.3", 2059 | "@swc/types": "^0.1.21" 2060 | }, 2061 | "engines": { 2062 | "node": ">=10" 2063 | }, 2064 | "funding": { 2065 | "type": "opencollective", 2066 | "url": "https://opencollective.com/swc" 2067 | }, 2068 | "optionalDependencies": { 2069 | "@swc/core-darwin-arm64": "1.11.24", 2070 | "@swc/core-darwin-x64": "1.11.24", 2071 | "@swc/core-linux-arm-gnueabihf": "1.11.24", 2072 | "@swc/core-linux-arm64-gnu": "1.11.24", 2073 | "@swc/core-linux-arm64-musl": "1.11.24", 2074 | "@swc/core-linux-x64-gnu": "1.11.24", 2075 | "@swc/core-linux-x64-musl": "1.11.24", 2076 | "@swc/core-win32-arm64-msvc": "1.11.24", 2077 | "@swc/core-win32-ia32-msvc": "1.11.24", 2078 | "@swc/core-win32-x64-msvc": "1.11.24" 2079 | }, 2080 | "peerDependencies": { 2081 | "@swc/helpers": ">=0.5.17" 2082 | }, 2083 | "peerDependenciesMeta": { 2084 | "@swc/helpers": { 2085 | "optional": true 2086 | } 2087 | } 2088 | }, 2089 | "node_modules/@swc/core-darwin-arm64": { 2090 | "version": "1.11.24", 2091 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.11.24.tgz", 2092 | "integrity": "sha512-dhtVj0PC1APOF4fl5qT2neGjRLgHAAYfiVP8poJelhzhB/318bO+QCFWAiimcDoyMgpCXOhTp757gnoJJrheWA==", 2093 | "cpu": [ 2094 | "arm64" 2095 | ], 2096 | "dev": true, 2097 | "license": "Apache-2.0 AND MIT", 2098 | "optional": true, 2099 | "os": [ 2100 | "darwin" 2101 | ], 2102 | "engines": { 2103 | "node": ">=10" 2104 | } 2105 | }, 2106 | "node_modules/@swc/core-darwin-x64": { 2107 | "version": "1.11.24", 2108 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.11.24.tgz", 2109 | "integrity": "sha512-H/3cPs8uxcj2Fe3SoLlofN5JG6Ny5bl8DuZ6Yc2wr7gQFBmyBkbZEz+sPVgsID7IXuz7vTP95kMm1VL74SO5AQ==", 2110 | "cpu": [ 2111 | "x64" 2112 | ], 2113 | "dev": true, 2114 | "license": "Apache-2.0 AND MIT", 2115 | "optional": true, 2116 | "os": [ 2117 | "darwin" 2118 | ], 2119 | "engines": { 2120 | "node": ">=10" 2121 | } 2122 | }, 2123 | "node_modules/@swc/core-linux-arm-gnueabihf": { 2124 | "version": "1.11.24", 2125 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.11.24.tgz", 2126 | "integrity": "sha512-PHJgWEpCsLo/NGj+A2lXZ2mgGjsr96ULNW3+T3Bj2KTc8XtMUkE8tmY2Da20ItZOvPNC/69KroU7edyo1Flfbw==", 2127 | "cpu": [ 2128 | "arm" 2129 | ], 2130 | "dev": true, 2131 | "license": "Apache-2.0", 2132 | "optional": true, 2133 | "os": [ 2134 | "linux" 2135 | ], 2136 | "engines": { 2137 | "node": ">=10" 2138 | } 2139 | }, 2140 | "node_modules/@swc/core-linux-arm64-gnu": { 2141 | "version": "1.11.24", 2142 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.11.24.tgz", 2143 | "integrity": "sha512-C2FJb08+n5SD4CYWCTZx1uR88BN41ZieoHvI8A55hfVf2woT8+6ZiBzt74qW2g+ntZ535Jts5VwXAKdu41HpBg==", 2144 | "cpu": [ 2145 | "arm64" 2146 | ], 2147 | "dev": true, 2148 | "license": "Apache-2.0 AND MIT", 2149 | "optional": true, 2150 | "os": [ 2151 | "linux" 2152 | ], 2153 | "engines": { 2154 | "node": ">=10" 2155 | } 2156 | }, 2157 | "node_modules/@swc/core-linux-arm64-musl": { 2158 | "version": "1.11.24", 2159 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.11.24.tgz", 2160 | "integrity": "sha512-ypXLIdszRo0re7PNNaXN0+2lD454G8l9LPK/rbfRXnhLWDBPURxzKlLlU/YGd2zP98wPcVooMmegRSNOKfvErw==", 2161 | "cpu": [ 2162 | "arm64" 2163 | ], 2164 | "dev": true, 2165 | "license": "Apache-2.0 AND MIT", 2166 | "optional": true, 2167 | "os": [ 2168 | "linux" 2169 | ], 2170 | "engines": { 2171 | "node": ">=10" 2172 | } 2173 | }, 2174 | "node_modules/@swc/core-linux-x64-gnu": { 2175 | "version": "1.11.24", 2176 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.11.24.tgz", 2177 | "integrity": "sha512-IM7d+STVZD48zxcgo69L0yYptfhaaE9cMZ+9OoMxirNafhKKXwoZuufol1+alEFKc+Wbwp+aUPe/DeWC/Lh3dg==", 2178 | "cpu": [ 2179 | "x64" 2180 | ], 2181 | "dev": true, 2182 | "license": "Apache-2.0 AND MIT", 2183 | "optional": true, 2184 | "os": [ 2185 | "linux" 2186 | ], 2187 | "engines": { 2188 | "node": ">=10" 2189 | } 2190 | }, 2191 | "node_modules/@swc/core-linux-x64-musl": { 2192 | "version": "1.11.24", 2193 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.11.24.tgz", 2194 | "integrity": "sha512-DZByJaMVzSfjQKKQn3cqSeqwy6lpMaQDQQ4HPlch9FWtDx/dLcpdIhxssqZXcR2rhaQVIaRQsCqwV6orSDGAGw==", 2195 | "cpu": [ 2196 | "x64" 2197 | ], 2198 | "dev": true, 2199 | "license": "Apache-2.0 AND MIT", 2200 | "optional": true, 2201 | "os": [ 2202 | "linux" 2203 | ], 2204 | "engines": { 2205 | "node": ">=10" 2206 | } 2207 | }, 2208 | "node_modules/@swc/core-win32-arm64-msvc": { 2209 | "version": "1.11.24", 2210 | "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.11.24.tgz", 2211 | "integrity": "sha512-Q64Ytn23y9aVDKN5iryFi8mRgyHw3/kyjTjT4qFCa8AEb5sGUuSj//AUZ6c0J7hQKMHlg9do5Etvoe61V98/JQ==", 2212 | "cpu": [ 2213 | "arm64" 2214 | ], 2215 | "dev": true, 2216 | "license": "Apache-2.0 AND MIT", 2217 | "optional": true, 2218 | "os": [ 2219 | "win32" 2220 | ], 2221 | "engines": { 2222 | "node": ">=10" 2223 | } 2224 | }, 2225 | "node_modules/@swc/core-win32-ia32-msvc": { 2226 | "version": "1.11.24", 2227 | "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.11.24.tgz", 2228 | "integrity": "sha512-9pKLIisE/Hh2vJhGIPvSoTK4uBSPxNVyXHmOrtdDot4E1FUUI74Vi8tFdlwNbaj8/vusVnb8xPXsxF1uB0VgiQ==", 2229 | "cpu": [ 2230 | "ia32" 2231 | ], 2232 | "dev": true, 2233 | "license": "Apache-2.0 AND MIT", 2234 | "optional": true, 2235 | "os": [ 2236 | "win32" 2237 | ], 2238 | "engines": { 2239 | "node": ">=10" 2240 | } 2241 | }, 2242 | "node_modules/@swc/core-win32-x64-msvc": { 2243 | "version": "1.11.24", 2244 | "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.11.24.tgz", 2245 | "integrity": "sha512-sybnXtOsdB+XvzVFlBVGgRHLqp3yRpHK7CrmpuDKszhj/QhmsaZzY/GHSeALlMtLup13M0gqbcQvsTNlAHTg3w==", 2246 | "cpu": [ 2247 | "x64" 2248 | ], 2249 | "dev": true, 2250 | "license": "Apache-2.0 AND MIT", 2251 | "optional": true, 2252 | "os": [ 2253 | "win32" 2254 | ], 2255 | "engines": { 2256 | "node": ">=10" 2257 | } 2258 | }, 2259 | "node_modules/@swc/counter": { 2260 | "version": "0.1.3", 2261 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", 2262 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", 2263 | "dev": true, 2264 | "license": "Apache-2.0" 2265 | }, 2266 | "node_modules/@swc/helpers": { 2267 | "version": "0.5.17", 2268 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", 2269 | "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==", 2270 | "dev": true, 2271 | "license": "Apache-2.0", 2272 | "dependencies": { 2273 | "tslib": "^2.8.0" 2274 | } 2275 | }, 2276 | "node_modules/@swc/types": { 2277 | "version": "0.1.21", 2278 | "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.21.tgz", 2279 | "integrity": "sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ==", 2280 | "dev": true, 2281 | "license": "Apache-2.0", 2282 | "dependencies": { 2283 | "@swc/counter": "^0.1.3" 2284 | } 2285 | }, 2286 | "node_modules/@ungap/structured-clone": { 2287 | "version": "1.3.0", 2288 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 2289 | "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 2290 | "dev": true, 2291 | "license": "ISC" 2292 | }, 2293 | "node_modules/accepts": { 2294 | "version": "1.3.8", 2295 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 2296 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 2297 | "dev": true, 2298 | "license": "MIT", 2299 | "dependencies": { 2300 | "mime-types": "~2.1.34", 2301 | "negotiator": "0.6.3" 2302 | }, 2303 | "engines": { 2304 | "node": ">= 0.6" 2305 | } 2306 | }, 2307 | "node_modules/acorn": { 2308 | "version": "8.14.1", 2309 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 2310 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 2311 | "dev": true, 2312 | "license": "MIT", 2313 | "bin": { 2314 | "acorn": "bin/acorn" 2315 | }, 2316 | "engines": { 2317 | "node": ">=0.4.0" 2318 | } 2319 | }, 2320 | "node_modules/acorn-jsx": { 2321 | "version": "5.3.2", 2322 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2323 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2324 | "dev": true, 2325 | "license": "MIT", 2326 | "peerDependencies": { 2327 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 2328 | } 2329 | }, 2330 | "node_modules/ajv": { 2331 | "version": "6.12.6", 2332 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 2333 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 2334 | "dev": true, 2335 | "license": "MIT", 2336 | "dependencies": { 2337 | "fast-deep-equal": "^3.1.1", 2338 | "fast-json-stable-stringify": "^2.0.0", 2339 | "json-schema-traverse": "^0.4.1", 2340 | "uri-js": "^4.2.2" 2341 | }, 2342 | "funding": { 2343 | "type": "github", 2344 | "url": "https://github.com/sponsors/epoberezkin" 2345 | } 2346 | }, 2347 | "node_modules/ansi-regex": { 2348 | "version": "5.0.1", 2349 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2350 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2351 | "dev": true, 2352 | "license": "MIT", 2353 | "engines": { 2354 | "node": ">=8" 2355 | } 2356 | }, 2357 | "node_modules/ansi-styles": { 2358 | "version": "4.3.0", 2359 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2360 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2361 | "dev": true, 2362 | "license": "MIT", 2363 | "dependencies": { 2364 | "color-convert": "^2.0.1" 2365 | }, 2366 | "engines": { 2367 | "node": ">=8" 2368 | }, 2369 | "funding": { 2370 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2371 | } 2372 | }, 2373 | "node_modules/argparse": { 2374 | "version": "2.0.1", 2375 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2376 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2377 | "dev": true, 2378 | "license": "Python-2.0" 2379 | }, 2380 | "node_modules/balanced-match": { 2381 | "version": "1.0.2", 2382 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 2383 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 2384 | "dev": true, 2385 | "license": "MIT" 2386 | }, 2387 | "node_modules/base-x": { 2388 | "version": "3.0.11", 2389 | "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.11.tgz", 2390 | "integrity": "sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==", 2391 | "dev": true, 2392 | "license": "MIT", 2393 | "dependencies": { 2394 | "safe-buffer": "^5.0.1" 2395 | } 2396 | }, 2397 | "node_modules/brace-expansion": { 2398 | "version": "1.1.11", 2399 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2400 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2401 | "dev": true, 2402 | "license": "MIT", 2403 | "dependencies": { 2404 | "balanced-match": "^1.0.0", 2405 | "concat-map": "0.0.1" 2406 | } 2407 | }, 2408 | "node_modules/braces": { 2409 | "version": "3.0.3", 2410 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 2411 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 2412 | "dev": true, 2413 | "license": "MIT", 2414 | "dependencies": { 2415 | "fill-range": "^7.1.1" 2416 | }, 2417 | "engines": { 2418 | "node": ">=8" 2419 | } 2420 | }, 2421 | "node_modules/browserslist": { 2422 | "version": "4.24.5", 2423 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz", 2424 | "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==", 2425 | "dev": true, 2426 | "funding": [ 2427 | { 2428 | "type": "opencollective", 2429 | "url": "https://opencollective.com/browserslist" 2430 | }, 2431 | { 2432 | "type": "tidelift", 2433 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2434 | }, 2435 | { 2436 | "type": "github", 2437 | "url": "https://github.com/sponsors/ai" 2438 | } 2439 | ], 2440 | "license": "MIT", 2441 | "dependencies": { 2442 | "caniuse-lite": "^1.0.30001716", 2443 | "electron-to-chromium": "^1.5.149", 2444 | "node-releases": "^2.0.19", 2445 | "update-browserslist-db": "^1.1.3" 2446 | }, 2447 | "bin": { 2448 | "browserslist": "cli.js" 2449 | }, 2450 | "engines": { 2451 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 2452 | } 2453 | }, 2454 | "node_modules/cache-content-type": { 2455 | "version": "1.0.1", 2456 | "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", 2457 | "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", 2458 | "dev": true, 2459 | "license": "MIT", 2460 | "dependencies": { 2461 | "mime-types": "^2.1.18", 2462 | "ylru": "^1.2.0" 2463 | }, 2464 | "engines": { 2465 | "node": ">= 6.0.0" 2466 | } 2467 | }, 2468 | "node_modules/call-bind-apply-helpers": { 2469 | "version": "1.0.2", 2470 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 2471 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 2472 | "dev": true, 2473 | "license": "MIT", 2474 | "dependencies": { 2475 | "es-errors": "^1.3.0", 2476 | "function-bind": "^1.1.2" 2477 | }, 2478 | "engines": { 2479 | "node": ">= 0.4" 2480 | } 2481 | }, 2482 | "node_modules/call-bound": { 2483 | "version": "1.0.4", 2484 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 2485 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 2486 | "dev": true, 2487 | "license": "MIT", 2488 | "dependencies": { 2489 | "call-bind-apply-helpers": "^1.0.2", 2490 | "get-intrinsic": "^1.3.0" 2491 | }, 2492 | "engines": { 2493 | "node": ">= 0.4" 2494 | }, 2495 | "funding": { 2496 | "url": "https://github.com/sponsors/ljharb" 2497 | } 2498 | }, 2499 | "node_modules/callsites": { 2500 | "version": "3.1.0", 2501 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2502 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2503 | "dev": true, 2504 | "license": "MIT", 2505 | "engines": { 2506 | "node": ">=6" 2507 | } 2508 | }, 2509 | "node_modules/caniuse-lite": { 2510 | "version": "1.0.30001718", 2511 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz", 2512 | "integrity": "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==", 2513 | "dev": true, 2514 | "funding": [ 2515 | { 2516 | "type": "opencollective", 2517 | "url": "https://opencollective.com/browserslist" 2518 | }, 2519 | { 2520 | "type": "tidelift", 2521 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2522 | }, 2523 | { 2524 | "type": "github", 2525 | "url": "https://github.com/sponsors/ai" 2526 | } 2527 | ], 2528 | "license": "CC-BY-4.0" 2529 | }, 2530 | "node_modules/chalk": { 2531 | "version": "4.1.2", 2532 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2533 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2534 | "dev": true, 2535 | "license": "MIT", 2536 | "dependencies": { 2537 | "ansi-styles": "^4.1.0", 2538 | "supports-color": "^7.1.0" 2539 | }, 2540 | "engines": { 2541 | "node": ">=10" 2542 | }, 2543 | "funding": { 2544 | "url": "https://github.com/chalk/chalk?sponsor=1" 2545 | } 2546 | }, 2547 | "node_modules/chrome-trace-event": { 2548 | "version": "1.0.4", 2549 | "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", 2550 | "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", 2551 | "dev": true, 2552 | "license": "MIT", 2553 | "engines": { 2554 | "node": ">=6.0" 2555 | } 2556 | }, 2557 | "node_modules/clone": { 2558 | "version": "2.1.2", 2559 | "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 2560 | "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", 2561 | "dev": true, 2562 | "license": "MIT", 2563 | "engines": { 2564 | "node": ">=0.8" 2565 | } 2566 | }, 2567 | "node_modules/co": { 2568 | "version": "4.6.0", 2569 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 2570 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 2571 | "dev": true, 2572 | "license": "MIT", 2573 | "engines": { 2574 | "iojs": ">= 1.0.0", 2575 | "node": ">= 0.12.0" 2576 | } 2577 | }, 2578 | "node_modules/color-convert": { 2579 | "version": "2.0.1", 2580 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2581 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2582 | "dev": true, 2583 | "license": "MIT", 2584 | "dependencies": { 2585 | "color-name": "~1.1.4" 2586 | }, 2587 | "engines": { 2588 | "node": ">=7.0.0" 2589 | } 2590 | }, 2591 | "node_modules/color-name": { 2592 | "version": "1.1.4", 2593 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2594 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2595 | "dev": true, 2596 | "license": "MIT" 2597 | }, 2598 | "node_modules/commander": { 2599 | "version": "12.1.0", 2600 | "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", 2601 | "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", 2602 | "dev": true, 2603 | "license": "MIT", 2604 | "engines": { 2605 | "node": ">=18" 2606 | } 2607 | }, 2608 | "node_modules/concat-map": { 2609 | "version": "0.0.1", 2610 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2611 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2612 | "dev": true, 2613 | "license": "MIT" 2614 | }, 2615 | "node_modules/content-disposition": { 2616 | "version": "0.5.4", 2617 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 2618 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 2619 | "dev": true, 2620 | "license": "MIT", 2621 | "dependencies": { 2622 | "safe-buffer": "5.2.1" 2623 | }, 2624 | "engines": { 2625 | "node": ">= 0.6" 2626 | } 2627 | }, 2628 | "node_modules/content-type": { 2629 | "version": "1.0.5", 2630 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 2631 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 2632 | "dev": true, 2633 | "license": "MIT", 2634 | "engines": { 2635 | "node": ">= 0.6" 2636 | } 2637 | }, 2638 | "node_modules/cookies": { 2639 | "version": "0.9.1", 2640 | "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.9.1.tgz", 2641 | "integrity": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==", 2642 | "dev": true, 2643 | "license": "MIT", 2644 | "dependencies": { 2645 | "depd": "~2.0.0", 2646 | "keygrip": "~1.1.0" 2647 | }, 2648 | "engines": { 2649 | "node": ">= 0.8" 2650 | } 2651 | }, 2652 | "node_modules/cross-spawn": { 2653 | "version": "7.0.6", 2654 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2655 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2656 | "dev": true, 2657 | "license": "MIT", 2658 | "dependencies": { 2659 | "path-key": "^3.1.0", 2660 | "shebang-command": "^2.0.0", 2661 | "which": "^2.0.1" 2662 | }, 2663 | "engines": { 2664 | "node": ">= 8" 2665 | } 2666 | }, 2667 | "node_modules/debug": { 2668 | "version": "4.4.1", 2669 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", 2670 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", 2671 | "dev": true, 2672 | "license": "MIT", 2673 | "dependencies": { 2674 | "ms": "^2.1.3" 2675 | }, 2676 | "engines": { 2677 | "node": ">=6.0" 2678 | }, 2679 | "peerDependenciesMeta": { 2680 | "supports-color": { 2681 | "optional": true 2682 | } 2683 | } 2684 | }, 2685 | "node_modules/deep-equal": { 2686 | "version": "1.0.1", 2687 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", 2688 | "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", 2689 | "dev": true, 2690 | "license": "MIT" 2691 | }, 2692 | "node_modules/deep-is": { 2693 | "version": "0.1.4", 2694 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2695 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2696 | "dev": true, 2697 | "license": "MIT" 2698 | }, 2699 | "node_modules/delegates": { 2700 | "version": "1.0.0", 2701 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 2702 | "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", 2703 | "dev": true, 2704 | "license": "MIT" 2705 | }, 2706 | "node_modules/depd": { 2707 | "version": "2.0.0", 2708 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 2709 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 2710 | "dev": true, 2711 | "license": "MIT", 2712 | "engines": { 2713 | "node": ">= 0.8" 2714 | } 2715 | }, 2716 | "node_modules/destroy": { 2717 | "version": "1.2.0", 2718 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 2719 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 2720 | "dev": true, 2721 | "license": "MIT", 2722 | "engines": { 2723 | "node": ">= 0.8", 2724 | "npm": "1.2.8000 || >= 1.4.16" 2725 | } 2726 | }, 2727 | "node_modules/detect-libc": { 2728 | "version": "1.0.3", 2729 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 2730 | "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", 2731 | "dev": true, 2732 | "license": "Apache-2.0", 2733 | "bin": { 2734 | "detect-libc": "bin/detect-libc.js" 2735 | }, 2736 | "engines": { 2737 | "node": ">=0.10" 2738 | } 2739 | }, 2740 | "node_modules/doctrine": { 2741 | "version": "3.0.0", 2742 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 2743 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 2744 | "dev": true, 2745 | "license": "Apache-2.0", 2746 | "dependencies": { 2747 | "esutils": "^2.0.2" 2748 | }, 2749 | "engines": { 2750 | "node": ">=6.0.0" 2751 | } 2752 | }, 2753 | "node_modules/dotenv": { 2754 | "version": "16.5.0", 2755 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.5.0.tgz", 2756 | "integrity": "sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==", 2757 | "dev": true, 2758 | "license": "BSD-2-Clause", 2759 | "engines": { 2760 | "node": ">=12" 2761 | }, 2762 | "funding": { 2763 | "url": "https://dotenvx.com" 2764 | } 2765 | }, 2766 | "node_modules/dotenv-expand": { 2767 | "version": "11.0.7", 2768 | "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz", 2769 | "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==", 2770 | "dev": true, 2771 | "license": "BSD-2-Clause", 2772 | "dependencies": { 2773 | "dotenv": "^16.4.5" 2774 | }, 2775 | "engines": { 2776 | "node": ">=12" 2777 | }, 2778 | "funding": { 2779 | "url": "https://dotenvx.com" 2780 | } 2781 | }, 2782 | "node_modules/dunder-proto": { 2783 | "version": "1.0.1", 2784 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 2785 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 2786 | "dev": true, 2787 | "license": "MIT", 2788 | "dependencies": { 2789 | "call-bind-apply-helpers": "^1.0.1", 2790 | "es-errors": "^1.3.0", 2791 | "gopd": "^1.2.0" 2792 | }, 2793 | "engines": { 2794 | "node": ">= 0.4" 2795 | } 2796 | }, 2797 | "node_modules/ee-first": { 2798 | "version": "1.1.1", 2799 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 2800 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 2801 | "dev": true, 2802 | "license": "MIT" 2803 | }, 2804 | "node_modules/electron-to-chromium": { 2805 | "version": "1.5.155", 2806 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.155.tgz", 2807 | "integrity": "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng==", 2808 | "dev": true, 2809 | "license": "ISC" 2810 | }, 2811 | "node_modules/encodeurl": { 2812 | "version": "1.0.2", 2813 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 2814 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 2815 | "dev": true, 2816 | "license": "MIT", 2817 | "engines": { 2818 | "node": ">= 0.8" 2819 | } 2820 | }, 2821 | "node_modules/es-define-property": { 2822 | "version": "1.0.1", 2823 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 2824 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 2825 | "dev": true, 2826 | "license": "MIT", 2827 | "engines": { 2828 | "node": ">= 0.4" 2829 | } 2830 | }, 2831 | "node_modules/es-errors": { 2832 | "version": "1.3.0", 2833 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 2834 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 2835 | "dev": true, 2836 | "license": "MIT", 2837 | "engines": { 2838 | "node": ">= 0.4" 2839 | } 2840 | }, 2841 | "node_modules/es-object-atoms": { 2842 | "version": "1.1.1", 2843 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 2844 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 2845 | "dev": true, 2846 | "license": "MIT", 2847 | "dependencies": { 2848 | "es-errors": "^1.3.0" 2849 | }, 2850 | "engines": { 2851 | "node": ">= 0.4" 2852 | } 2853 | }, 2854 | "node_modules/escalade": { 2855 | "version": "3.2.0", 2856 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2857 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2858 | "dev": true, 2859 | "license": "MIT", 2860 | "engines": { 2861 | "node": ">=6" 2862 | } 2863 | }, 2864 | "node_modules/escape-html": { 2865 | "version": "1.0.3", 2866 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 2867 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 2868 | "dev": true, 2869 | "license": "MIT" 2870 | }, 2871 | "node_modules/escape-string-regexp": { 2872 | "version": "4.0.0", 2873 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2874 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2875 | "dev": true, 2876 | "license": "MIT", 2877 | "engines": { 2878 | "node": ">=10" 2879 | }, 2880 | "funding": { 2881 | "url": "https://github.com/sponsors/sindresorhus" 2882 | } 2883 | }, 2884 | "node_modules/eslint": { 2885 | "version": "8.57.1", 2886 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 2887 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 2888 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 2889 | "dev": true, 2890 | "license": "MIT", 2891 | "dependencies": { 2892 | "@eslint-community/eslint-utils": "^4.2.0", 2893 | "@eslint-community/regexpp": "^4.6.1", 2894 | "@eslint/eslintrc": "^2.1.4", 2895 | "@eslint/js": "8.57.1", 2896 | "@humanwhocodes/config-array": "^0.13.0", 2897 | "@humanwhocodes/module-importer": "^1.0.1", 2898 | "@nodelib/fs.walk": "^1.2.8", 2899 | "@ungap/structured-clone": "^1.2.0", 2900 | "ajv": "^6.12.4", 2901 | "chalk": "^4.0.0", 2902 | "cross-spawn": "^7.0.2", 2903 | "debug": "^4.3.2", 2904 | "doctrine": "^3.0.0", 2905 | "escape-string-regexp": "^4.0.0", 2906 | "eslint-scope": "^7.2.2", 2907 | "eslint-visitor-keys": "^3.4.3", 2908 | "espree": "^9.6.1", 2909 | "esquery": "^1.4.2", 2910 | "esutils": "^2.0.2", 2911 | "fast-deep-equal": "^3.1.3", 2912 | "file-entry-cache": "^6.0.1", 2913 | "find-up": "^5.0.0", 2914 | "glob-parent": "^6.0.2", 2915 | "globals": "^13.19.0", 2916 | "graphemer": "^1.4.0", 2917 | "ignore": "^5.2.0", 2918 | "imurmurhash": "^0.1.4", 2919 | "is-glob": "^4.0.0", 2920 | "is-path-inside": "^3.0.3", 2921 | "js-yaml": "^4.1.0", 2922 | "json-stable-stringify-without-jsonify": "^1.0.1", 2923 | "levn": "^0.4.1", 2924 | "lodash.merge": "^4.6.2", 2925 | "minimatch": "^3.1.2", 2926 | "natural-compare": "^1.4.0", 2927 | "optionator": "^0.9.3", 2928 | "strip-ansi": "^6.0.1", 2929 | "text-table": "^0.2.0" 2930 | }, 2931 | "bin": { 2932 | "eslint": "bin/eslint.js" 2933 | }, 2934 | "engines": { 2935 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2936 | }, 2937 | "funding": { 2938 | "url": "https://opencollective.com/eslint" 2939 | } 2940 | }, 2941 | "node_modules/eslint-config-prettier": { 2942 | "version": "9.1.0", 2943 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 2944 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 2945 | "dev": true, 2946 | "license": "MIT", 2947 | "bin": { 2948 | "eslint-config-prettier": "bin/cli.js" 2949 | }, 2950 | "peerDependencies": { 2951 | "eslint": ">=7.0.0" 2952 | } 2953 | }, 2954 | "node_modules/eslint-plugin-prettier": { 2955 | "version": "5.4.0", 2956 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz", 2957 | "integrity": "sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==", 2958 | "dev": true, 2959 | "license": "MIT", 2960 | "dependencies": { 2961 | "prettier-linter-helpers": "^1.0.0", 2962 | "synckit": "^0.11.0" 2963 | }, 2964 | "engines": { 2965 | "node": "^14.18.0 || >=16.0.0" 2966 | }, 2967 | "funding": { 2968 | "url": "https://opencollective.com/eslint-plugin-prettier" 2969 | }, 2970 | "peerDependencies": { 2971 | "@types/eslint": ">=8.0.0", 2972 | "eslint": ">=8.0.0", 2973 | "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", 2974 | "prettier": ">=3.0.0" 2975 | }, 2976 | "peerDependenciesMeta": { 2977 | "@types/eslint": { 2978 | "optional": true 2979 | }, 2980 | "eslint-config-prettier": { 2981 | "optional": true 2982 | } 2983 | } 2984 | }, 2985 | "node_modules/eslint-scope": { 2986 | "version": "7.2.2", 2987 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 2988 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 2989 | "dev": true, 2990 | "license": "BSD-2-Clause", 2991 | "dependencies": { 2992 | "esrecurse": "^4.3.0", 2993 | "estraverse": "^5.2.0" 2994 | }, 2995 | "engines": { 2996 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2997 | }, 2998 | "funding": { 2999 | "url": "https://opencollective.com/eslint" 3000 | } 3001 | }, 3002 | "node_modules/eslint-visitor-keys": { 3003 | "version": "3.4.3", 3004 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 3005 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 3006 | "dev": true, 3007 | "license": "Apache-2.0", 3008 | "engines": { 3009 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3010 | }, 3011 | "funding": { 3012 | "url": "https://opencollective.com/eslint" 3013 | } 3014 | }, 3015 | "node_modules/espree": { 3016 | "version": "9.6.1", 3017 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 3018 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 3019 | "dev": true, 3020 | "license": "BSD-2-Clause", 3021 | "dependencies": { 3022 | "acorn": "^8.9.0", 3023 | "acorn-jsx": "^5.3.2", 3024 | "eslint-visitor-keys": "^3.4.1" 3025 | }, 3026 | "engines": { 3027 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 3028 | }, 3029 | "funding": { 3030 | "url": "https://opencollective.com/eslint" 3031 | } 3032 | }, 3033 | "node_modules/esquery": { 3034 | "version": "1.6.0", 3035 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 3036 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 3037 | "dev": true, 3038 | "license": "BSD-3-Clause", 3039 | "dependencies": { 3040 | "estraverse": "^5.1.0" 3041 | }, 3042 | "engines": { 3043 | "node": ">=0.10" 3044 | } 3045 | }, 3046 | "node_modules/esrecurse": { 3047 | "version": "4.3.0", 3048 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 3049 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 3050 | "dev": true, 3051 | "license": "BSD-2-Clause", 3052 | "dependencies": { 3053 | "estraverse": "^5.2.0" 3054 | }, 3055 | "engines": { 3056 | "node": ">=4.0" 3057 | } 3058 | }, 3059 | "node_modules/estraverse": { 3060 | "version": "5.3.0", 3061 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 3062 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 3063 | "dev": true, 3064 | "license": "BSD-2-Clause", 3065 | "engines": { 3066 | "node": ">=4.0" 3067 | } 3068 | }, 3069 | "node_modules/esutils": { 3070 | "version": "2.0.3", 3071 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 3072 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 3073 | "dev": true, 3074 | "license": "BSD-2-Clause", 3075 | "engines": { 3076 | "node": ">=0.10.0" 3077 | } 3078 | }, 3079 | "node_modules/eventemitter3": { 3080 | "version": "5.0.1", 3081 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", 3082 | "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", 3083 | "license": "MIT" 3084 | }, 3085 | "node_modules/fast-deep-equal": { 3086 | "version": "3.1.3", 3087 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 3088 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 3089 | "dev": true, 3090 | "license": "MIT" 3091 | }, 3092 | "node_modules/fast-diff": { 3093 | "version": "1.3.0", 3094 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 3095 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 3096 | "dev": true, 3097 | "license": "Apache-2.0" 3098 | }, 3099 | "node_modules/fast-json-stable-stringify": { 3100 | "version": "2.1.0", 3101 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 3102 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 3103 | "dev": true, 3104 | "license": "MIT" 3105 | }, 3106 | "node_modules/fast-levenshtein": { 3107 | "version": "2.0.6", 3108 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 3109 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 3110 | "dev": true, 3111 | "license": "MIT" 3112 | }, 3113 | "node_modules/fastq": { 3114 | "version": "1.19.1", 3115 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 3116 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 3117 | "dev": true, 3118 | "license": "ISC", 3119 | "dependencies": { 3120 | "reusify": "^1.0.4" 3121 | } 3122 | }, 3123 | "node_modules/file-entry-cache": { 3124 | "version": "6.0.1", 3125 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 3126 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 3127 | "dev": true, 3128 | "license": "MIT", 3129 | "dependencies": { 3130 | "flat-cache": "^3.0.4" 3131 | }, 3132 | "engines": { 3133 | "node": "^10.12.0 || >=12.0.0" 3134 | } 3135 | }, 3136 | "node_modules/fill-range": { 3137 | "version": "7.1.1", 3138 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 3139 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 3140 | "dev": true, 3141 | "license": "MIT", 3142 | "dependencies": { 3143 | "to-regex-range": "^5.0.1" 3144 | }, 3145 | "engines": { 3146 | "node": ">=8" 3147 | } 3148 | }, 3149 | "node_modules/find-up": { 3150 | "version": "5.0.0", 3151 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 3152 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 3153 | "dev": true, 3154 | "license": "MIT", 3155 | "dependencies": { 3156 | "locate-path": "^6.0.0", 3157 | "path-exists": "^4.0.0" 3158 | }, 3159 | "engines": { 3160 | "node": ">=10" 3161 | }, 3162 | "funding": { 3163 | "url": "https://github.com/sponsors/sindresorhus" 3164 | } 3165 | }, 3166 | "node_modules/flat-cache": { 3167 | "version": "3.2.0", 3168 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 3169 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 3170 | "dev": true, 3171 | "license": "MIT", 3172 | "dependencies": { 3173 | "flatted": "^3.2.9", 3174 | "keyv": "^4.5.3", 3175 | "rimraf": "^3.0.2" 3176 | }, 3177 | "engines": { 3178 | "node": "^10.12.0 || >=12.0.0" 3179 | } 3180 | }, 3181 | "node_modules/flatted": { 3182 | "version": "3.3.3", 3183 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 3184 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 3185 | "dev": true, 3186 | "license": "ISC" 3187 | }, 3188 | "node_modules/fresh": { 3189 | "version": "0.5.2", 3190 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 3191 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 3192 | "dev": true, 3193 | "license": "MIT", 3194 | "engines": { 3195 | "node": ">= 0.6" 3196 | } 3197 | }, 3198 | "node_modules/fs.realpath": { 3199 | "version": "1.0.0", 3200 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 3201 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 3202 | "dev": true, 3203 | "license": "ISC" 3204 | }, 3205 | "node_modules/function-bind": { 3206 | "version": "1.1.2", 3207 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 3208 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 3209 | "dev": true, 3210 | "license": "MIT", 3211 | "funding": { 3212 | "url": "https://github.com/sponsors/ljharb" 3213 | } 3214 | }, 3215 | "node_modules/get-intrinsic": { 3216 | "version": "1.3.0", 3217 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 3218 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 3219 | "dev": true, 3220 | "license": "MIT", 3221 | "dependencies": { 3222 | "call-bind-apply-helpers": "^1.0.2", 3223 | "es-define-property": "^1.0.1", 3224 | "es-errors": "^1.3.0", 3225 | "es-object-atoms": "^1.1.1", 3226 | "function-bind": "^1.1.2", 3227 | "get-proto": "^1.0.1", 3228 | "gopd": "^1.2.0", 3229 | "has-symbols": "^1.1.0", 3230 | "hasown": "^2.0.2", 3231 | "math-intrinsics": "^1.1.0" 3232 | }, 3233 | "engines": { 3234 | "node": ">= 0.4" 3235 | }, 3236 | "funding": { 3237 | "url": "https://github.com/sponsors/ljharb" 3238 | } 3239 | }, 3240 | "node_modules/get-port": { 3241 | "version": "4.2.0", 3242 | "resolved": "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz", 3243 | "integrity": "sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw==", 3244 | "dev": true, 3245 | "license": "MIT", 3246 | "engines": { 3247 | "node": ">=6" 3248 | } 3249 | }, 3250 | "node_modules/get-proto": { 3251 | "version": "1.0.1", 3252 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 3253 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 3254 | "dev": true, 3255 | "license": "MIT", 3256 | "dependencies": { 3257 | "dunder-proto": "^1.0.1", 3258 | "es-object-atoms": "^1.0.0" 3259 | }, 3260 | "engines": { 3261 | "node": ">= 0.4" 3262 | } 3263 | }, 3264 | "node_modules/glob": { 3265 | "version": "7.2.3", 3266 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 3267 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 3268 | "deprecated": "Glob versions prior to v9 are no longer supported", 3269 | "dev": true, 3270 | "license": "ISC", 3271 | "dependencies": { 3272 | "fs.realpath": "^1.0.0", 3273 | "inflight": "^1.0.4", 3274 | "inherits": "2", 3275 | "minimatch": "^3.1.1", 3276 | "once": "^1.3.0", 3277 | "path-is-absolute": "^1.0.0" 3278 | }, 3279 | "engines": { 3280 | "node": "*" 3281 | }, 3282 | "funding": { 3283 | "url": "https://github.com/sponsors/isaacs" 3284 | } 3285 | }, 3286 | "node_modules/glob-parent": { 3287 | "version": "6.0.2", 3288 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 3289 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 3290 | "dev": true, 3291 | "license": "ISC", 3292 | "dependencies": { 3293 | "is-glob": "^4.0.3" 3294 | }, 3295 | "engines": { 3296 | "node": ">=10.13.0" 3297 | } 3298 | }, 3299 | "node_modules/globals": { 3300 | "version": "13.24.0", 3301 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 3302 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 3303 | "dev": true, 3304 | "license": "MIT", 3305 | "dependencies": { 3306 | "type-fest": "^0.20.2" 3307 | }, 3308 | "engines": { 3309 | "node": ">=8" 3310 | }, 3311 | "funding": { 3312 | "url": "https://github.com/sponsors/sindresorhus" 3313 | } 3314 | }, 3315 | "node_modules/gopd": { 3316 | "version": "1.2.0", 3317 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 3318 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 3319 | "dev": true, 3320 | "license": "MIT", 3321 | "engines": { 3322 | "node": ">= 0.4" 3323 | }, 3324 | "funding": { 3325 | "url": "https://github.com/sponsors/ljharb" 3326 | } 3327 | }, 3328 | "node_modules/graphemer": { 3329 | "version": "1.4.0", 3330 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 3331 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 3332 | "dev": true, 3333 | "license": "MIT" 3334 | }, 3335 | "node_modules/has-flag": { 3336 | "version": "4.0.0", 3337 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3338 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3339 | "dev": true, 3340 | "license": "MIT", 3341 | "engines": { 3342 | "node": ">=8" 3343 | } 3344 | }, 3345 | "node_modules/has-symbols": { 3346 | "version": "1.1.0", 3347 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 3348 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 3349 | "dev": true, 3350 | "license": "MIT", 3351 | "engines": { 3352 | "node": ">= 0.4" 3353 | }, 3354 | "funding": { 3355 | "url": "https://github.com/sponsors/ljharb" 3356 | } 3357 | }, 3358 | "node_modules/has-tostringtag": { 3359 | "version": "1.0.2", 3360 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 3361 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 3362 | "dev": true, 3363 | "license": "MIT", 3364 | "dependencies": { 3365 | "has-symbols": "^1.0.3" 3366 | }, 3367 | "engines": { 3368 | "node": ">= 0.4" 3369 | }, 3370 | "funding": { 3371 | "url": "https://github.com/sponsors/ljharb" 3372 | } 3373 | }, 3374 | "node_modules/hasown": { 3375 | "version": "2.0.2", 3376 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 3377 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 3378 | "dev": true, 3379 | "license": "MIT", 3380 | "dependencies": { 3381 | "function-bind": "^1.1.2" 3382 | }, 3383 | "engines": { 3384 | "node": ">= 0.4" 3385 | } 3386 | }, 3387 | "node_modules/http-assert": { 3388 | "version": "1.5.0", 3389 | "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", 3390 | "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", 3391 | "dev": true, 3392 | "license": "MIT", 3393 | "dependencies": { 3394 | "deep-equal": "~1.0.1", 3395 | "http-errors": "~1.8.0" 3396 | }, 3397 | "engines": { 3398 | "node": ">= 0.8" 3399 | } 3400 | }, 3401 | "node_modules/http-errors": { 3402 | "version": "1.8.1", 3403 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", 3404 | "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", 3405 | "dev": true, 3406 | "license": "MIT", 3407 | "dependencies": { 3408 | "depd": "~1.1.2", 3409 | "inherits": "2.0.4", 3410 | "setprototypeof": "1.2.0", 3411 | "statuses": ">= 1.5.0 < 2", 3412 | "toidentifier": "1.0.1" 3413 | }, 3414 | "engines": { 3415 | "node": ">= 0.6" 3416 | } 3417 | }, 3418 | "node_modules/http-errors/node_modules/depd": { 3419 | "version": "1.1.2", 3420 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 3421 | "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 3422 | "dev": true, 3423 | "license": "MIT", 3424 | "engines": { 3425 | "node": ">= 0.6" 3426 | } 3427 | }, 3428 | "node_modules/ignore": { 3429 | "version": "5.3.2", 3430 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 3431 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 3432 | "dev": true, 3433 | "license": "MIT", 3434 | "engines": { 3435 | "node": ">= 4" 3436 | } 3437 | }, 3438 | "node_modules/import-fresh": { 3439 | "version": "3.3.1", 3440 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 3441 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 3442 | "dev": true, 3443 | "license": "MIT", 3444 | "dependencies": { 3445 | "parent-module": "^1.0.0", 3446 | "resolve-from": "^4.0.0" 3447 | }, 3448 | "engines": { 3449 | "node": ">=6" 3450 | }, 3451 | "funding": { 3452 | "url": "https://github.com/sponsors/sindresorhus" 3453 | } 3454 | }, 3455 | "node_modules/imurmurhash": { 3456 | "version": "0.1.4", 3457 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 3458 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 3459 | "dev": true, 3460 | "license": "MIT", 3461 | "engines": { 3462 | "node": ">=0.8.19" 3463 | } 3464 | }, 3465 | "node_modules/inflight": { 3466 | "version": "1.0.6", 3467 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 3468 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 3469 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 3470 | "dev": true, 3471 | "license": "ISC", 3472 | "dependencies": { 3473 | "once": "^1.3.0", 3474 | "wrappy": "1" 3475 | } 3476 | }, 3477 | "node_modules/inherits": { 3478 | "version": "2.0.4", 3479 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 3480 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 3481 | "dev": true, 3482 | "license": "ISC" 3483 | }, 3484 | "node_modules/is-extglob": { 3485 | "version": "2.1.1", 3486 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 3487 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 3488 | "dev": true, 3489 | "license": "MIT", 3490 | "engines": { 3491 | "node": ">=0.10.0" 3492 | } 3493 | }, 3494 | "node_modules/is-generator-function": { 3495 | "version": "1.1.0", 3496 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", 3497 | "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", 3498 | "dev": true, 3499 | "license": "MIT", 3500 | "dependencies": { 3501 | "call-bound": "^1.0.3", 3502 | "get-proto": "^1.0.0", 3503 | "has-tostringtag": "^1.0.2", 3504 | "safe-regex-test": "^1.1.0" 3505 | }, 3506 | "engines": { 3507 | "node": ">= 0.4" 3508 | }, 3509 | "funding": { 3510 | "url": "https://github.com/sponsors/ljharb" 3511 | } 3512 | }, 3513 | "node_modules/is-glob": { 3514 | "version": "4.0.3", 3515 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3516 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3517 | "dev": true, 3518 | "license": "MIT", 3519 | "dependencies": { 3520 | "is-extglob": "^2.1.1" 3521 | }, 3522 | "engines": { 3523 | "node": ">=0.10.0" 3524 | } 3525 | }, 3526 | "node_modules/is-number": { 3527 | "version": "7.0.0", 3528 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 3529 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 3530 | "dev": true, 3531 | "license": "MIT", 3532 | "engines": { 3533 | "node": ">=0.12.0" 3534 | } 3535 | }, 3536 | "node_modules/is-path-inside": { 3537 | "version": "3.0.3", 3538 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 3539 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 3540 | "dev": true, 3541 | "license": "MIT", 3542 | "engines": { 3543 | "node": ">=8" 3544 | } 3545 | }, 3546 | "node_modules/is-regex": { 3547 | "version": "1.2.1", 3548 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", 3549 | "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", 3550 | "dev": true, 3551 | "license": "MIT", 3552 | "dependencies": { 3553 | "call-bound": "^1.0.2", 3554 | "gopd": "^1.2.0", 3555 | "has-tostringtag": "^1.0.2", 3556 | "hasown": "^2.0.2" 3557 | }, 3558 | "engines": { 3559 | "node": ">= 0.4" 3560 | }, 3561 | "funding": { 3562 | "url": "https://github.com/sponsors/ljharb" 3563 | } 3564 | }, 3565 | "node_modules/isexe": { 3566 | "version": "2.0.0", 3567 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3568 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3569 | "dev": true, 3570 | "license": "ISC" 3571 | }, 3572 | "node_modules/js-yaml": { 3573 | "version": "4.1.0", 3574 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3575 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3576 | "dev": true, 3577 | "license": "MIT", 3578 | "dependencies": { 3579 | "argparse": "^2.0.1" 3580 | }, 3581 | "bin": { 3582 | "js-yaml": "bin/js-yaml.js" 3583 | } 3584 | }, 3585 | "node_modules/json-buffer": { 3586 | "version": "3.0.1", 3587 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 3588 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 3589 | "dev": true, 3590 | "license": "MIT" 3591 | }, 3592 | "node_modules/json-schema-traverse": { 3593 | "version": "0.4.1", 3594 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3595 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3596 | "dev": true, 3597 | "license": "MIT" 3598 | }, 3599 | "node_modules/json-stable-stringify-without-jsonify": { 3600 | "version": "1.0.1", 3601 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3602 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3603 | "dev": true, 3604 | "license": "MIT" 3605 | }, 3606 | "node_modules/json5": { 3607 | "version": "2.2.3", 3608 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3609 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3610 | "dev": true, 3611 | "license": "MIT", 3612 | "bin": { 3613 | "json5": "lib/cli.js" 3614 | }, 3615 | "engines": { 3616 | "node": ">=6" 3617 | } 3618 | }, 3619 | "node_modules/keygrip": { 3620 | "version": "1.1.0", 3621 | "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", 3622 | "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", 3623 | "dev": true, 3624 | "license": "MIT", 3625 | "dependencies": { 3626 | "tsscmp": "1.0.6" 3627 | }, 3628 | "engines": { 3629 | "node": ">= 0.6" 3630 | } 3631 | }, 3632 | "node_modules/keyv": { 3633 | "version": "4.5.4", 3634 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 3635 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 3636 | "dev": true, 3637 | "license": "MIT", 3638 | "dependencies": { 3639 | "json-buffer": "3.0.1" 3640 | } 3641 | }, 3642 | "node_modules/koa": { 3643 | "version": "2.16.1", 3644 | "resolved": "https://registry.npmjs.org/koa/-/koa-2.16.1.tgz", 3645 | "integrity": "sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==", 3646 | "dev": true, 3647 | "license": "MIT", 3648 | "dependencies": { 3649 | "accepts": "^1.3.5", 3650 | "cache-content-type": "^1.0.0", 3651 | "content-disposition": "~0.5.2", 3652 | "content-type": "^1.0.4", 3653 | "cookies": "~0.9.0", 3654 | "debug": "^4.3.2", 3655 | "delegates": "^1.0.0", 3656 | "depd": "^2.0.0", 3657 | "destroy": "^1.0.4", 3658 | "encodeurl": "^1.0.2", 3659 | "escape-html": "^1.0.3", 3660 | "fresh": "~0.5.2", 3661 | "http-assert": "^1.3.0", 3662 | "http-errors": "^1.6.3", 3663 | "is-generator-function": "^1.0.7", 3664 | "koa-compose": "^4.1.0", 3665 | "koa-convert": "^2.0.0", 3666 | "on-finished": "^2.3.0", 3667 | "only": "~0.0.2", 3668 | "parseurl": "^1.3.2", 3669 | "statuses": "^1.5.0", 3670 | "type-is": "^1.6.16", 3671 | "vary": "^1.1.2" 3672 | }, 3673 | "engines": { 3674 | "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" 3675 | } 3676 | }, 3677 | "node_modules/koa-compose": { 3678 | "version": "4.1.0", 3679 | "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", 3680 | "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", 3681 | "dev": true, 3682 | "license": "MIT" 3683 | }, 3684 | "node_modules/koa-convert": { 3685 | "version": "2.0.0", 3686 | "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", 3687 | "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", 3688 | "dev": true, 3689 | "license": "MIT", 3690 | "dependencies": { 3691 | "co": "^4.6.0", 3692 | "koa-compose": "^4.1.0" 3693 | }, 3694 | "engines": { 3695 | "node": ">= 10" 3696 | } 3697 | }, 3698 | "node_modules/koa-send": { 3699 | "version": "5.0.1", 3700 | "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", 3701 | "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", 3702 | "dev": true, 3703 | "license": "MIT", 3704 | "dependencies": { 3705 | "debug": "^4.1.1", 3706 | "http-errors": "^1.7.3", 3707 | "resolve-path": "^1.4.0" 3708 | }, 3709 | "engines": { 3710 | "node": ">= 8" 3711 | } 3712 | }, 3713 | "node_modules/koa-static": { 3714 | "version": "5.0.0", 3715 | "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", 3716 | "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", 3717 | "dev": true, 3718 | "license": "MIT", 3719 | "dependencies": { 3720 | "debug": "^3.1.0", 3721 | "koa-send": "^5.0.0" 3722 | }, 3723 | "engines": { 3724 | "node": ">= 7.6.0" 3725 | } 3726 | }, 3727 | "node_modules/koa-static/node_modules/debug": { 3728 | "version": "3.2.7", 3729 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 3730 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 3731 | "dev": true, 3732 | "license": "MIT", 3733 | "dependencies": { 3734 | "ms": "^2.1.1" 3735 | } 3736 | }, 3737 | "node_modules/levn": { 3738 | "version": "0.4.1", 3739 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3740 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3741 | "dev": true, 3742 | "license": "MIT", 3743 | "dependencies": { 3744 | "prelude-ls": "^1.2.1", 3745 | "type-check": "~0.4.0" 3746 | }, 3747 | "engines": { 3748 | "node": ">= 0.8.0" 3749 | } 3750 | }, 3751 | "node_modules/lightningcss": { 3752 | "version": "1.30.1", 3753 | "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz", 3754 | "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==", 3755 | "dev": true, 3756 | "license": "MPL-2.0", 3757 | "dependencies": { 3758 | "detect-libc": "^2.0.3" 3759 | }, 3760 | "engines": { 3761 | "node": ">= 12.0.0" 3762 | }, 3763 | "funding": { 3764 | "type": "opencollective", 3765 | "url": "https://opencollective.com/parcel" 3766 | }, 3767 | "optionalDependencies": { 3768 | "lightningcss-darwin-arm64": "1.30.1", 3769 | "lightningcss-darwin-x64": "1.30.1", 3770 | "lightningcss-freebsd-x64": "1.30.1", 3771 | "lightningcss-linux-arm-gnueabihf": "1.30.1", 3772 | "lightningcss-linux-arm64-gnu": "1.30.1", 3773 | "lightningcss-linux-arm64-musl": "1.30.1", 3774 | "lightningcss-linux-x64-gnu": "1.30.1", 3775 | "lightningcss-linux-x64-musl": "1.30.1", 3776 | "lightningcss-win32-arm64-msvc": "1.30.1", 3777 | "lightningcss-win32-x64-msvc": "1.30.1" 3778 | } 3779 | }, 3780 | "node_modules/lightningcss-darwin-arm64": { 3781 | "version": "1.30.1", 3782 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz", 3783 | "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==", 3784 | "cpu": [ 3785 | "arm64" 3786 | ], 3787 | "dev": true, 3788 | "license": "MPL-2.0", 3789 | "optional": true, 3790 | "os": [ 3791 | "darwin" 3792 | ], 3793 | "engines": { 3794 | "node": ">= 12.0.0" 3795 | }, 3796 | "funding": { 3797 | "type": "opencollective", 3798 | "url": "https://opencollective.com/parcel" 3799 | } 3800 | }, 3801 | "node_modules/lightningcss-darwin-x64": { 3802 | "version": "1.30.1", 3803 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz", 3804 | "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==", 3805 | "cpu": [ 3806 | "x64" 3807 | ], 3808 | "dev": true, 3809 | "license": "MPL-2.0", 3810 | "optional": true, 3811 | "os": [ 3812 | "darwin" 3813 | ], 3814 | "engines": { 3815 | "node": ">= 12.0.0" 3816 | }, 3817 | "funding": { 3818 | "type": "opencollective", 3819 | "url": "https://opencollective.com/parcel" 3820 | } 3821 | }, 3822 | "node_modules/lightningcss-freebsd-x64": { 3823 | "version": "1.30.1", 3824 | "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz", 3825 | "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==", 3826 | "cpu": [ 3827 | "x64" 3828 | ], 3829 | "dev": true, 3830 | "license": "MPL-2.0", 3831 | "optional": true, 3832 | "os": [ 3833 | "freebsd" 3834 | ], 3835 | "engines": { 3836 | "node": ">= 12.0.0" 3837 | }, 3838 | "funding": { 3839 | "type": "opencollective", 3840 | "url": "https://opencollective.com/parcel" 3841 | } 3842 | }, 3843 | "node_modules/lightningcss-linux-arm-gnueabihf": { 3844 | "version": "1.30.1", 3845 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz", 3846 | "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==", 3847 | "cpu": [ 3848 | "arm" 3849 | ], 3850 | "dev": true, 3851 | "license": "MPL-2.0", 3852 | "optional": true, 3853 | "os": [ 3854 | "linux" 3855 | ], 3856 | "engines": { 3857 | "node": ">= 12.0.0" 3858 | }, 3859 | "funding": { 3860 | "type": "opencollective", 3861 | "url": "https://opencollective.com/parcel" 3862 | } 3863 | }, 3864 | "node_modules/lightningcss-linux-arm64-gnu": { 3865 | "version": "1.30.1", 3866 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz", 3867 | "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==", 3868 | "cpu": [ 3869 | "arm64" 3870 | ], 3871 | "dev": true, 3872 | "license": "MPL-2.0", 3873 | "optional": true, 3874 | "os": [ 3875 | "linux" 3876 | ], 3877 | "engines": { 3878 | "node": ">= 12.0.0" 3879 | }, 3880 | "funding": { 3881 | "type": "opencollective", 3882 | "url": "https://opencollective.com/parcel" 3883 | } 3884 | }, 3885 | "node_modules/lightningcss-linux-arm64-musl": { 3886 | "version": "1.30.1", 3887 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz", 3888 | "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==", 3889 | "cpu": [ 3890 | "arm64" 3891 | ], 3892 | "dev": true, 3893 | "license": "MPL-2.0", 3894 | "optional": true, 3895 | "os": [ 3896 | "linux" 3897 | ], 3898 | "engines": { 3899 | "node": ">= 12.0.0" 3900 | }, 3901 | "funding": { 3902 | "type": "opencollective", 3903 | "url": "https://opencollective.com/parcel" 3904 | } 3905 | }, 3906 | "node_modules/lightningcss-linux-x64-gnu": { 3907 | "version": "1.30.1", 3908 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz", 3909 | "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==", 3910 | "cpu": [ 3911 | "x64" 3912 | ], 3913 | "dev": true, 3914 | "license": "MPL-2.0", 3915 | "optional": true, 3916 | "os": [ 3917 | "linux" 3918 | ], 3919 | "engines": { 3920 | "node": ">= 12.0.0" 3921 | }, 3922 | "funding": { 3923 | "type": "opencollective", 3924 | "url": "https://opencollective.com/parcel" 3925 | } 3926 | }, 3927 | "node_modules/lightningcss-linux-x64-musl": { 3928 | "version": "1.30.1", 3929 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz", 3930 | "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==", 3931 | "cpu": [ 3932 | "x64" 3933 | ], 3934 | "dev": true, 3935 | "license": "MPL-2.0", 3936 | "optional": true, 3937 | "os": [ 3938 | "linux" 3939 | ], 3940 | "engines": { 3941 | "node": ">= 12.0.0" 3942 | }, 3943 | "funding": { 3944 | "type": "opencollective", 3945 | "url": "https://opencollective.com/parcel" 3946 | } 3947 | }, 3948 | "node_modules/lightningcss-win32-arm64-msvc": { 3949 | "version": "1.30.1", 3950 | "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz", 3951 | "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==", 3952 | "cpu": [ 3953 | "arm64" 3954 | ], 3955 | "dev": true, 3956 | "license": "MPL-2.0", 3957 | "optional": true, 3958 | "os": [ 3959 | "win32" 3960 | ], 3961 | "engines": { 3962 | "node": ">= 12.0.0" 3963 | }, 3964 | "funding": { 3965 | "type": "opencollective", 3966 | "url": "https://opencollective.com/parcel" 3967 | } 3968 | }, 3969 | "node_modules/lightningcss-win32-x64-msvc": { 3970 | "version": "1.30.1", 3971 | "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz", 3972 | "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==", 3973 | "cpu": [ 3974 | "x64" 3975 | ], 3976 | "dev": true, 3977 | "license": "MPL-2.0", 3978 | "optional": true, 3979 | "os": [ 3980 | "win32" 3981 | ], 3982 | "engines": { 3983 | "node": ">= 12.0.0" 3984 | }, 3985 | "funding": { 3986 | "type": "opencollective", 3987 | "url": "https://opencollective.com/parcel" 3988 | } 3989 | }, 3990 | "node_modules/lightningcss/node_modules/detect-libc": { 3991 | "version": "2.0.4", 3992 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", 3993 | "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", 3994 | "dev": true, 3995 | "license": "Apache-2.0", 3996 | "engines": { 3997 | "node": ">=8" 3998 | } 3999 | }, 4000 | "node_modules/lmdb": { 4001 | "version": "2.8.5", 4002 | "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-2.8.5.tgz", 4003 | "integrity": "sha512-9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==", 4004 | "dev": true, 4005 | "hasInstallScript": true, 4006 | "license": "MIT", 4007 | "dependencies": { 4008 | "msgpackr": "^1.9.5", 4009 | "node-addon-api": "^6.1.0", 4010 | "node-gyp-build-optional-packages": "5.1.1", 4011 | "ordered-binary": "^1.4.1", 4012 | "weak-lru-cache": "^1.2.2" 4013 | }, 4014 | "bin": { 4015 | "download-lmdb-prebuilds": "bin/download-prebuilds.js" 4016 | }, 4017 | "optionalDependencies": { 4018 | "@lmdb/lmdb-darwin-arm64": "2.8.5", 4019 | "@lmdb/lmdb-darwin-x64": "2.8.5", 4020 | "@lmdb/lmdb-linux-arm": "2.8.5", 4021 | "@lmdb/lmdb-linux-arm64": "2.8.5", 4022 | "@lmdb/lmdb-linux-x64": "2.8.5", 4023 | "@lmdb/lmdb-win32-x64": "2.8.5" 4024 | } 4025 | }, 4026 | "node_modules/lmdb/node_modules/node-addon-api": { 4027 | "version": "6.1.0", 4028 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", 4029 | "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", 4030 | "dev": true, 4031 | "license": "MIT" 4032 | }, 4033 | "node_modules/locate-path": { 4034 | "version": "6.0.0", 4035 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 4036 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 4037 | "dev": true, 4038 | "license": "MIT", 4039 | "dependencies": { 4040 | "p-locate": "^5.0.0" 4041 | }, 4042 | "engines": { 4043 | "node": ">=10" 4044 | }, 4045 | "funding": { 4046 | "url": "https://github.com/sponsors/sindresorhus" 4047 | } 4048 | }, 4049 | "node_modules/lodash.merge": { 4050 | "version": "4.6.2", 4051 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 4052 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 4053 | "dev": true, 4054 | "license": "MIT" 4055 | }, 4056 | "node_modules/math-intrinsics": { 4057 | "version": "1.1.0", 4058 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 4059 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 4060 | "dev": true, 4061 | "license": "MIT", 4062 | "engines": { 4063 | "node": ">= 0.4" 4064 | } 4065 | }, 4066 | "node_modules/media-typer": { 4067 | "version": "0.3.0", 4068 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 4069 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 4070 | "dev": true, 4071 | "license": "MIT", 4072 | "engines": { 4073 | "node": ">= 0.6" 4074 | } 4075 | }, 4076 | "node_modules/micromatch": { 4077 | "version": "4.0.8", 4078 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 4079 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 4080 | "dev": true, 4081 | "license": "MIT", 4082 | "dependencies": { 4083 | "braces": "^3.0.3", 4084 | "picomatch": "^2.3.1" 4085 | }, 4086 | "engines": { 4087 | "node": ">=8.6" 4088 | } 4089 | }, 4090 | "node_modules/mime-db": { 4091 | "version": "1.52.0", 4092 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 4093 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 4094 | "dev": true, 4095 | "license": "MIT", 4096 | "engines": { 4097 | "node": ">= 0.6" 4098 | } 4099 | }, 4100 | "node_modules/mime-types": { 4101 | "version": "2.1.35", 4102 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 4103 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 4104 | "dev": true, 4105 | "license": "MIT", 4106 | "dependencies": { 4107 | "mime-db": "1.52.0" 4108 | }, 4109 | "engines": { 4110 | "node": ">= 0.6" 4111 | } 4112 | }, 4113 | "node_modules/minimatch": { 4114 | "version": "3.1.2", 4115 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 4116 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 4117 | "dev": true, 4118 | "license": "ISC", 4119 | "dependencies": { 4120 | "brace-expansion": "^1.1.7" 4121 | }, 4122 | "engines": { 4123 | "node": "*" 4124 | } 4125 | }, 4126 | "node_modules/ms": { 4127 | "version": "2.1.3", 4128 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 4129 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 4130 | "dev": true, 4131 | "license": "MIT" 4132 | }, 4133 | "node_modules/msgpackr": { 4134 | "version": "1.11.4", 4135 | "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.4.tgz", 4136 | "integrity": "sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg==", 4137 | "dev": true, 4138 | "license": "MIT", 4139 | "optionalDependencies": { 4140 | "msgpackr-extract": "^3.0.2" 4141 | } 4142 | }, 4143 | "node_modules/msgpackr-extract": { 4144 | "version": "3.0.3", 4145 | "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", 4146 | "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", 4147 | "dev": true, 4148 | "hasInstallScript": true, 4149 | "license": "MIT", 4150 | "optional": true, 4151 | "dependencies": { 4152 | "node-gyp-build-optional-packages": "5.2.2" 4153 | }, 4154 | "bin": { 4155 | "download-msgpackr-prebuilds": "bin/download-prebuilds.js" 4156 | }, 4157 | "optionalDependencies": { 4158 | "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", 4159 | "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", 4160 | "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", 4161 | "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", 4162 | "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", 4163 | "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" 4164 | } 4165 | }, 4166 | "node_modules/msgpackr-extract/node_modules/detect-libc": { 4167 | "version": "2.0.4", 4168 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", 4169 | "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", 4170 | "dev": true, 4171 | "license": "Apache-2.0", 4172 | "optional": true, 4173 | "engines": { 4174 | "node": ">=8" 4175 | } 4176 | }, 4177 | "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { 4178 | "version": "5.2.2", 4179 | "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", 4180 | "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", 4181 | "dev": true, 4182 | "license": "MIT", 4183 | "optional": true, 4184 | "dependencies": { 4185 | "detect-libc": "^2.0.1" 4186 | }, 4187 | "bin": { 4188 | "node-gyp-build-optional-packages": "bin.js", 4189 | "node-gyp-build-optional-packages-optional": "optional.js", 4190 | "node-gyp-build-optional-packages-test": "build-test.js" 4191 | } 4192 | }, 4193 | "node_modules/natural-compare": { 4194 | "version": "1.4.0", 4195 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 4196 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 4197 | "dev": true, 4198 | "license": "MIT" 4199 | }, 4200 | "node_modules/negotiator": { 4201 | "version": "0.6.3", 4202 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 4203 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 4204 | "dev": true, 4205 | "license": "MIT", 4206 | "engines": { 4207 | "node": ">= 0.6" 4208 | } 4209 | }, 4210 | "node_modules/node-addon-api": { 4211 | "version": "7.1.1", 4212 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", 4213 | "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", 4214 | "dev": true, 4215 | "license": "MIT" 4216 | }, 4217 | "node_modules/node-gyp-build-optional-packages": { 4218 | "version": "5.1.1", 4219 | "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz", 4220 | "integrity": "sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==", 4221 | "dev": true, 4222 | "license": "MIT", 4223 | "dependencies": { 4224 | "detect-libc": "^2.0.1" 4225 | }, 4226 | "bin": { 4227 | "node-gyp-build-optional-packages": "bin.js", 4228 | "node-gyp-build-optional-packages-optional": "optional.js", 4229 | "node-gyp-build-optional-packages-test": "build-test.js" 4230 | } 4231 | }, 4232 | "node_modules/node-gyp-build-optional-packages/node_modules/detect-libc": { 4233 | "version": "2.0.4", 4234 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", 4235 | "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", 4236 | "dev": true, 4237 | "license": "Apache-2.0", 4238 | "engines": { 4239 | "node": ">=8" 4240 | } 4241 | }, 4242 | "node_modules/node-releases": { 4243 | "version": "2.0.19", 4244 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 4245 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 4246 | "dev": true, 4247 | "license": "MIT" 4248 | }, 4249 | "node_modules/nullthrows": { 4250 | "version": "1.1.1", 4251 | "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", 4252 | "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", 4253 | "dev": true, 4254 | "license": "MIT" 4255 | }, 4256 | "node_modules/on-finished": { 4257 | "version": "2.4.1", 4258 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 4259 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 4260 | "dev": true, 4261 | "license": "MIT", 4262 | "dependencies": { 4263 | "ee-first": "1.1.1" 4264 | }, 4265 | "engines": { 4266 | "node": ">= 0.8" 4267 | } 4268 | }, 4269 | "node_modules/once": { 4270 | "version": "1.4.0", 4271 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 4272 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 4273 | "dev": true, 4274 | "license": "ISC", 4275 | "dependencies": { 4276 | "wrappy": "1" 4277 | } 4278 | }, 4279 | "node_modules/only": { 4280 | "version": "0.0.2", 4281 | "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", 4282 | "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==", 4283 | "dev": true 4284 | }, 4285 | "node_modules/optionator": { 4286 | "version": "0.9.4", 4287 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 4288 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 4289 | "dev": true, 4290 | "license": "MIT", 4291 | "dependencies": { 4292 | "deep-is": "^0.1.3", 4293 | "fast-levenshtein": "^2.0.6", 4294 | "levn": "^0.4.1", 4295 | "prelude-ls": "^1.2.1", 4296 | "type-check": "^0.4.0", 4297 | "word-wrap": "^1.2.5" 4298 | }, 4299 | "engines": { 4300 | "node": ">= 0.8.0" 4301 | } 4302 | }, 4303 | "node_modules/ordered-binary": { 4304 | "version": "1.5.3", 4305 | "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.3.tgz", 4306 | "integrity": "sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==", 4307 | "dev": true, 4308 | "license": "MIT" 4309 | }, 4310 | "node_modules/p-limit": { 4311 | "version": "3.1.0", 4312 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 4313 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 4314 | "dev": true, 4315 | "license": "MIT", 4316 | "dependencies": { 4317 | "yocto-queue": "^0.1.0" 4318 | }, 4319 | "engines": { 4320 | "node": ">=10" 4321 | }, 4322 | "funding": { 4323 | "url": "https://github.com/sponsors/sindresorhus" 4324 | } 4325 | }, 4326 | "node_modules/p-locate": { 4327 | "version": "5.0.0", 4328 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 4329 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 4330 | "dev": true, 4331 | "license": "MIT", 4332 | "dependencies": { 4333 | "p-limit": "^3.0.2" 4334 | }, 4335 | "engines": { 4336 | "node": ">=10" 4337 | }, 4338 | "funding": { 4339 | "url": "https://github.com/sponsors/sindresorhus" 4340 | } 4341 | }, 4342 | "node_modules/parcel": { 4343 | "version": "2.15.1", 4344 | "resolved": "https://registry.npmjs.org/parcel/-/parcel-2.15.1.tgz", 4345 | "integrity": "sha512-sDj8BgTLRsTLwbBnxTKiHB6R9lE0eNHz3umKZkbkVyYI9SgFJU4G5rGaJ5fClEHDYcFFSkBb6iKOk3PqPAWKxw==", 4346 | "dev": true, 4347 | "license": "MIT", 4348 | "dependencies": { 4349 | "@parcel/config-default": "2.15.1", 4350 | "@parcel/core": "2.15.1", 4351 | "@parcel/diagnostic": "2.15.1", 4352 | "@parcel/events": "2.15.1", 4353 | "@parcel/feature-flags": "2.15.1", 4354 | "@parcel/fs": "2.15.1", 4355 | "@parcel/logger": "2.15.1", 4356 | "@parcel/package-manager": "2.15.1", 4357 | "@parcel/reporter-cli": "2.15.1", 4358 | "@parcel/reporter-dev-server": "2.15.1", 4359 | "@parcel/reporter-tracer": "2.15.1", 4360 | "@parcel/utils": "2.15.1", 4361 | "chalk": "^4.1.2", 4362 | "commander": "^12.1.0", 4363 | "get-port": "^4.2.0" 4364 | }, 4365 | "bin": { 4366 | "parcel": "lib/bin.js" 4367 | }, 4368 | "engines": { 4369 | "node": ">= 16.0.0" 4370 | }, 4371 | "funding": { 4372 | "type": "opencollective", 4373 | "url": "https://opencollective.com/parcel" 4374 | } 4375 | }, 4376 | "node_modules/parent-module": { 4377 | "version": "1.0.1", 4378 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 4379 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 4380 | "dev": true, 4381 | "license": "MIT", 4382 | "dependencies": { 4383 | "callsites": "^3.0.0" 4384 | }, 4385 | "engines": { 4386 | "node": ">=6" 4387 | } 4388 | }, 4389 | "node_modules/parseurl": { 4390 | "version": "1.3.3", 4391 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 4392 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 4393 | "dev": true, 4394 | "license": "MIT", 4395 | "engines": { 4396 | "node": ">= 0.8" 4397 | } 4398 | }, 4399 | "node_modules/path-exists": { 4400 | "version": "4.0.0", 4401 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 4402 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 4403 | "dev": true, 4404 | "license": "MIT", 4405 | "engines": { 4406 | "node": ">=8" 4407 | } 4408 | }, 4409 | "node_modules/path-is-absolute": { 4410 | "version": "1.0.1", 4411 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 4412 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 4413 | "dev": true, 4414 | "license": "MIT", 4415 | "engines": { 4416 | "node": ">=0.10.0" 4417 | } 4418 | }, 4419 | "node_modules/path-key": { 4420 | "version": "3.1.1", 4421 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 4422 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 4423 | "dev": true, 4424 | "license": "MIT", 4425 | "engines": { 4426 | "node": ">=8" 4427 | } 4428 | }, 4429 | "node_modules/picocolors": { 4430 | "version": "1.1.1", 4431 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 4432 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 4433 | "dev": true, 4434 | "license": "ISC" 4435 | }, 4436 | "node_modules/picomatch": { 4437 | "version": "2.3.1", 4438 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 4439 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 4440 | "dev": true, 4441 | "license": "MIT", 4442 | "engines": { 4443 | "node": ">=8.6" 4444 | }, 4445 | "funding": { 4446 | "url": "https://github.com/sponsors/jonschlinkert" 4447 | } 4448 | }, 4449 | "node_modules/postcss-value-parser": { 4450 | "version": "4.2.0", 4451 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 4452 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 4453 | "dev": true, 4454 | "license": "MIT" 4455 | }, 4456 | "node_modules/prelude-ls": { 4457 | "version": "1.2.1", 4458 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 4459 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 4460 | "dev": true, 4461 | "license": "MIT", 4462 | "engines": { 4463 | "node": ">= 0.8.0" 4464 | } 4465 | }, 4466 | "node_modules/prettier": { 4467 | "version": "3.5.3", 4468 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", 4469 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", 4470 | "dev": true, 4471 | "license": "MIT", 4472 | "bin": { 4473 | "prettier": "bin/prettier.cjs" 4474 | }, 4475 | "engines": { 4476 | "node": ">=14" 4477 | }, 4478 | "funding": { 4479 | "url": "https://github.com/prettier/prettier?sponsor=1" 4480 | } 4481 | }, 4482 | "node_modules/prettier-linter-helpers": { 4483 | "version": "1.0.0", 4484 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 4485 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 4486 | "dev": true, 4487 | "license": "MIT", 4488 | "dependencies": { 4489 | "fast-diff": "^1.1.2" 4490 | }, 4491 | "engines": { 4492 | "node": ">=6.0.0" 4493 | } 4494 | }, 4495 | "node_modules/punycode": { 4496 | "version": "2.3.1", 4497 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 4498 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 4499 | "dev": true, 4500 | "license": "MIT", 4501 | "engines": { 4502 | "node": ">=6" 4503 | } 4504 | }, 4505 | "node_modules/queue-microtask": { 4506 | "version": "1.2.3", 4507 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 4508 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 4509 | "dev": true, 4510 | "funding": [ 4511 | { 4512 | "type": "github", 4513 | "url": "https://github.com/sponsors/feross" 4514 | }, 4515 | { 4516 | "type": "patreon", 4517 | "url": "https://www.patreon.com/feross" 4518 | }, 4519 | { 4520 | "type": "consulting", 4521 | "url": "https://feross.org/support" 4522 | } 4523 | ], 4524 | "license": "MIT" 4525 | }, 4526 | "node_modules/react-refresh": { 4527 | "version": "0.16.0", 4528 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.16.0.tgz", 4529 | "integrity": "sha512-FPvF2XxTSikpJxcr+bHut2H4gJ17+18Uy20D5/F+SKzFap62R3cM5wH6b8WN3LyGSYeQilLEcJcR1fjBSI2S1A==", 4530 | "dev": true, 4531 | "license": "MIT", 4532 | "engines": { 4533 | "node": ">=0.10.0" 4534 | } 4535 | }, 4536 | "node_modules/regenerator-runtime": { 4537 | "version": "0.14.1", 4538 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 4539 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", 4540 | "dev": true, 4541 | "license": "MIT" 4542 | }, 4543 | "node_modules/resolve-from": { 4544 | "version": "4.0.0", 4545 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 4546 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 4547 | "dev": true, 4548 | "license": "MIT", 4549 | "engines": { 4550 | "node": ">=4" 4551 | } 4552 | }, 4553 | "node_modules/resolve-path": { 4554 | "version": "1.4.0", 4555 | "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", 4556 | "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", 4557 | "dev": true, 4558 | "license": "MIT", 4559 | "dependencies": { 4560 | "http-errors": "~1.6.2", 4561 | "path-is-absolute": "1.0.1" 4562 | }, 4563 | "engines": { 4564 | "node": ">= 0.8" 4565 | } 4566 | }, 4567 | "node_modules/resolve-path/node_modules/depd": { 4568 | "version": "1.1.2", 4569 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 4570 | "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 4571 | "dev": true, 4572 | "license": "MIT", 4573 | "engines": { 4574 | "node": ">= 0.6" 4575 | } 4576 | }, 4577 | "node_modules/resolve-path/node_modules/http-errors": { 4578 | "version": "1.6.3", 4579 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", 4580 | "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", 4581 | "dev": true, 4582 | "license": "MIT", 4583 | "dependencies": { 4584 | "depd": "~1.1.2", 4585 | "inherits": "2.0.3", 4586 | "setprototypeof": "1.1.0", 4587 | "statuses": ">= 1.4.0 < 2" 4588 | }, 4589 | "engines": { 4590 | "node": ">= 0.6" 4591 | } 4592 | }, 4593 | "node_modules/resolve-path/node_modules/inherits": { 4594 | "version": "2.0.3", 4595 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 4596 | "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", 4597 | "dev": true, 4598 | "license": "ISC" 4599 | }, 4600 | "node_modules/resolve-path/node_modules/setprototypeof": { 4601 | "version": "1.1.0", 4602 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", 4603 | "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", 4604 | "dev": true, 4605 | "license": "ISC" 4606 | }, 4607 | "node_modules/reusify": { 4608 | "version": "1.1.0", 4609 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 4610 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 4611 | "dev": true, 4612 | "license": "MIT", 4613 | "engines": { 4614 | "iojs": ">=1.0.0", 4615 | "node": ">=0.10.0" 4616 | } 4617 | }, 4618 | "node_modules/rimraf": { 4619 | "version": "3.0.2", 4620 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 4621 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 4622 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 4623 | "dev": true, 4624 | "license": "ISC", 4625 | "dependencies": { 4626 | "glob": "^7.1.3" 4627 | }, 4628 | "bin": { 4629 | "rimraf": "bin.js" 4630 | }, 4631 | "funding": { 4632 | "url": "https://github.com/sponsors/isaacs" 4633 | } 4634 | }, 4635 | "node_modules/run-parallel": { 4636 | "version": "1.2.0", 4637 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 4638 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 4639 | "dev": true, 4640 | "funding": [ 4641 | { 4642 | "type": "github", 4643 | "url": "https://github.com/sponsors/feross" 4644 | }, 4645 | { 4646 | "type": "patreon", 4647 | "url": "https://www.patreon.com/feross" 4648 | }, 4649 | { 4650 | "type": "consulting", 4651 | "url": "https://feross.org/support" 4652 | } 4653 | ], 4654 | "license": "MIT", 4655 | "dependencies": { 4656 | "queue-microtask": "^1.2.2" 4657 | } 4658 | }, 4659 | "node_modules/safe-buffer": { 4660 | "version": "5.2.1", 4661 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 4662 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 4663 | "dev": true, 4664 | "funding": [ 4665 | { 4666 | "type": "github", 4667 | "url": "https://github.com/sponsors/feross" 4668 | }, 4669 | { 4670 | "type": "patreon", 4671 | "url": "https://www.patreon.com/feross" 4672 | }, 4673 | { 4674 | "type": "consulting", 4675 | "url": "https://feross.org/support" 4676 | } 4677 | ], 4678 | "license": "MIT" 4679 | }, 4680 | "node_modules/safe-regex-test": { 4681 | "version": "1.1.0", 4682 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", 4683 | "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", 4684 | "dev": true, 4685 | "license": "MIT", 4686 | "dependencies": { 4687 | "call-bound": "^1.0.2", 4688 | "es-errors": "^1.3.0", 4689 | "is-regex": "^1.2.1" 4690 | }, 4691 | "engines": { 4692 | "node": ">= 0.4" 4693 | }, 4694 | "funding": { 4695 | "url": "https://github.com/sponsors/ljharb" 4696 | } 4697 | }, 4698 | "node_modules/semver": { 4699 | "version": "7.7.2", 4700 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 4701 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 4702 | "dev": true, 4703 | "license": "ISC", 4704 | "bin": { 4705 | "semver": "bin/semver.js" 4706 | }, 4707 | "engines": { 4708 | "node": ">=10" 4709 | } 4710 | }, 4711 | "node_modules/setprototypeof": { 4712 | "version": "1.2.0", 4713 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 4714 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 4715 | "dev": true, 4716 | "license": "ISC" 4717 | }, 4718 | "node_modules/shebang-command": { 4719 | "version": "2.0.0", 4720 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 4721 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 4722 | "dev": true, 4723 | "license": "MIT", 4724 | "dependencies": { 4725 | "shebang-regex": "^3.0.0" 4726 | }, 4727 | "engines": { 4728 | "node": ">=8" 4729 | } 4730 | }, 4731 | "node_modules/shebang-regex": { 4732 | "version": "3.0.0", 4733 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 4734 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 4735 | "dev": true, 4736 | "license": "MIT", 4737 | "engines": { 4738 | "node": ">=8" 4739 | } 4740 | }, 4741 | "node_modules/statuses": { 4742 | "version": "1.5.0", 4743 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 4744 | "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 4745 | "dev": true, 4746 | "license": "MIT", 4747 | "engines": { 4748 | "node": ">= 0.6" 4749 | } 4750 | }, 4751 | "node_modules/strip-ansi": { 4752 | "version": "6.0.1", 4753 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4754 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4755 | "dev": true, 4756 | "license": "MIT", 4757 | "dependencies": { 4758 | "ansi-regex": "^5.0.1" 4759 | }, 4760 | "engines": { 4761 | "node": ">=8" 4762 | } 4763 | }, 4764 | "node_modules/strip-json-comments": { 4765 | "version": "3.1.1", 4766 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 4767 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 4768 | "dev": true, 4769 | "license": "MIT", 4770 | "engines": { 4771 | "node": ">=8" 4772 | }, 4773 | "funding": { 4774 | "url": "https://github.com/sponsors/sindresorhus" 4775 | } 4776 | }, 4777 | "node_modules/supports-color": { 4778 | "version": "7.2.0", 4779 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4780 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4781 | "dev": true, 4782 | "license": "MIT", 4783 | "dependencies": { 4784 | "has-flag": "^4.0.0" 4785 | }, 4786 | "engines": { 4787 | "node": ">=8" 4788 | } 4789 | }, 4790 | "node_modules/synckit": { 4791 | "version": "0.11.6", 4792 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.6.tgz", 4793 | "integrity": "sha512-2pR2ubZSV64f/vqm9eLPz/KOvR9Dm+Co/5ChLgeHl0yEDRc6h5hXHoxEQH8Y5Ljycozd3p1k5TTSVdzYGkPvLw==", 4794 | "dev": true, 4795 | "license": "MIT", 4796 | "dependencies": { 4797 | "@pkgr/core": "^0.2.4" 4798 | }, 4799 | "engines": { 4800 | "node": "^14.18.0 || >=16.0.0" 4801 | }, 4802 | "funding": { 4803 | "url": "https://opencollective.com/synckit" 4804 | } 4805 | }, 4806 | "node_modules/term-size": { 4807 | "version": "2.2.1", 4808 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", 4809 | "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", 4810 | "dev": true, 4811 | "license": "MIT", 4812 | "engines": { 4813 | "node": ">=8" 4814 | }, 4815 | "funding": { 4816 | "url": "https://github.com/sponsors/sindresorhus" 4817 | } 4818 | }, 4819 | "node_modules/text-table": { 4820 | "version": "0.2.0", 4821 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4822 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4823 | "dev": true, 4824 | "license": "MIT" 4825 | }, 4826 | "node_modules/to-regex-range": { 4827 | "version": "5.0.1", 4828 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4829 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4830 | "dev": true, 4831 | "license": "MIT", 4832 | "dependencies": { 4833 | "is-number": "^7.0.0" 4834 | }, 4835 | "engines": { 4836 | "node": ">=8.0" 4837 | } 4838 | }, 4839 | "node_modules/toidentifier": { 4840 | "version": "1.0.1", 4841 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 4842 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 4843 | "dev": true, 4844 | "license": "MIT", 4845 | "engines": { 4846 | "node": ">=0.6" 4847 | } 4848 | }, 4849 | "node_modules/tslib": { 4850 | "version": "2.8.1", 4851 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 4852 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 4853 | "dev": true, 4854 | "license": "0BSD" 4855 | }, 4856 | "node_modules/tsscmp": { 4857 | "version": "1.0.6", 4858 | "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", 4859 | "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", 4860 | "dev": true, 4861 | "license": "MIT", 4862 | "engines": { 4863 | "node": ">=0.6.x" 4864 | } 4865 | }, 4866 | "node_modules/type-check": { 4867 | "version": "0.4.0", 4868 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4869 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4870 | "dev": true, 4871 | "license": "MIT", 4872 | "dependencies": { 4873 | "prelude-ls": "^1.2.1" 4874 | }, 4875 | "engines": { 4876 | "node": ">= 0.8.0" 4877 | } 4878 | }, 4879 | "node_modules/type-fest": { 4880 | "version": "0.20.2", 4881 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4882 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4883 | "dev": true, 4884 | "license": "(MIT OR CC0-1.0)", 4885 | "engines": { 4886 | "node": ">=10" 4887 | }, 4888 | "funding": { 4889 | "url": "https://github.com/sponsors/sindresorhus" 4890 | } 4891 | }, 4892 | "node_modules/type-is": { 4893 | "version": "1.6.18", 4894 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 4895 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 4896 | "dev": true, 4897 | "license": "MIT", 4898 | "dependencies": { 4899 | "media-typer": "0.3.0", 4900 | "mime-types": "~2.1.24" 4901 | }, 4902 | "engines": { 4903 | "node": ">= 0.6" 4904 | } 4905 | }, 4906 | "node_modules/update-browserslist-db": { 4907 | "version": "1.1.3", 4908 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 4909 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 4910 | "dev": true, 4911 | "funding": [ 4912 | { 4913 | "type": "opencollective", 4914 | "url": "https://opencollective.com/browserslist" 4915 | }, 4916 | { 4917 | "type": "tidelift", 4918 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4919 | }, 4920 | { 4921 | "type": "github", 4922 | "url": "https://github.com/sponsors/ai" 4923 | } 4924 | ], 4925 | "license": "MIT", 4926 | "dependencies": { 4927 | "escalade": "^3.2.0", 4928 | "picocolors": "^1.1.1" 4929 | }, 4930 | "bin": { 4931 | "update-browserslist-db": "cli.js" 4932 | }, 4933 | "peerDependencies": { 4934 | "browserslist": ">= 4.21.0" 4935 | } 4936 | }, 4937 | "node_modules/uri-js": { 4938 | "version": "4.4.1", 4939 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4940 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4941 | "dev": true, 4942 | "license": "BSD-2-Clause", 4943 | "dependencies": { 4944 | "punycode": "^2.1.0" 4945 | } 4946 | }, 4947 | "node_modules/utility-types": { 4948 | "version": "3.11.0", 4949 | "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", 4950 | "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", 4951 | "dev": true, 4952 | "license": "MIT", 4953 | "engines": { 4954 | "node": ">= 4" 4955 | } 4956 | }, 4957 | "node_modules/vary": { 4958 | "version": "1.1.2", 4959 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 4960 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 4961 | "dev": true, 4962 | "license": "MIT", 4963 | "engines": { 4964 | "node": ">= 0.8" 4965 | } 4966 | }, 4967 | "node_modules/weak-lru-cache": { 4968 | "version": "1.2.2", 4969 | "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", 4970 | "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==", 4971 | "dev": true, 4972 | "license": "MIT" 4973 | }, 4974 | "node_modules/which": { 4975 | "version": "2.0.2", 4976 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4977 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4978 | "dev": true, 4979 | "license": "ISC", 4980 | "dependencies": { 4981 | "isexe": "^2.0.0" 4982 | }, 4983 | "bin": { 4984 | "node-which": "bin/node-which" 4985 | }, 4986 | "engines": { 4987 | "node": ">= 8" 4988 | } 4989 | }, 4990 | "node_modules/word-wrap": { 4991 | "version": "1.2.5", 4992 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 4993 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 4994 | "dev": true, 4995 | "license": "MIT", 4996 | "engines": { 4997 | "node": ">=0.10.0" 4998 | } 4999 | }, 5000 | "node_modules/wrappy": { 5001 | "version": "1.0.2", 5002 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 5003 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 5004 | "dev": true, 5005 | "license": "ISC" 5006 | }, 5007 | "node_modules/ws": { 5008 | "version": "8.18.2", 5009 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz", 5010 | "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==", 5011 | "dev": true, 5012 | "license": "MIT", 5013 | "engines": { 5014 | "node": ">=10.0.0" 5015 | }, 5016 | "peerDependencies": { 5017 | "bufferutil": "^4.0.1", 5018 | "utf-8-validate": ">=5.0.2" 5019 | }, 5020 | "peerDependenciesMeta": { 5021 | "bufferutil": { 5022 | "optional": true 5023 | }, 5024 | "utf-8-validate": { 5025 | "optional": true 5026 | } 5027 | } 5028 | }, 5029 | "node_modules/ylru": { 5030 | "version": "1.4.0", 5031 | "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.4.0.tgz", 5032 | "integrity": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==", 5033 | "dev": true, 5034 | "license": "MIT", 5035 | "engines": { 5036 | "node": ">= 4.0.0" 5037 | } 5038 | }, 5039 | "node_modules/yocto-queue": { 5040 | "version": "0.1.0", 5041 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 5042 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 5043 | "dev": true, 5044 | "license": "MIT", 5045 | "engines": { 5046 | "node": ">=10" 5047 | }, 5048 | "funding": { 5049 | "url": "https://github.com/sponsors/sindresorhus" 5050 | } 5051 | } 5052 | } 5053 | } 5054 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ws-wrapper", 3 | "version": "3.0.3", 4 | "description": "Lightweight WebSocket wrapper lib with socket.io-like event handling, requests, and channels", 5 | "exports": "./lib/wrapper.mjs", 6 | "type": "module", 7 | "dependencies": { 8 | "eventemitter3": "^5.0.1" 9 | }, 10 | "devDependencies": { 11 | "eslint": "^8.57.0", 12 | "eslint-config-prettier": "^9.1.0", 13 | "eslint-plugin-prettier": "^5.1.3", 14 | "koa": "^2.15.3", 15 | "koa-static": "^5.0.0", 16 | "parcel": "^2.13.3", 17 | "prettier": "^3.3.2", 18 | "ws": "^8.17.1" 19 | }, 20 | "scripts": { 21 | "format": "prettier --config .prettierrc --write \"**/*.js\"", 22 | "build-example": "parcel build --no-cache --dist-dir ./example-app/dist ./example-app/index.html", 23 | "lint": "eslint . --ignore-pattern dist", 24 | "test": "echo \"Error: no test specified\" && exit 1" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "git+https://github.com/bminer/ws-wrapper.git" 29 | }, 30 | "keywords": [ 31 | "websocket", 32 | "ws", 33 | "event", 34 | "handling", 35 | "channels", 36 | "request", 37 | "namespace" 38 | ], 39 | "author": "Blake C. Miner", 40 | "license": "MIT", 41 | "bugs": { 42 | "url": "https://github.com/bminer/ws-wrapper/issues" 43 | }, 44 | "homepage": "https://github.com/bminer/ws-wrapper#readme" 45 | } 46 | --------------------------------------------------------------------------------