[READ-ONLY] Mirror of https://github.com/thoda-dev/nuxt-ollama-demo. A simple demo on how to use the module Nuxt-Ollama
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-ollama demo

Thomas (Aug 8, 2024, 9:09 PM +0200) 8037562e

+12071
+24
.gitignore
··· 1 + # Nuxt dev/build outputs 2 + .output 3 + .data 4 + .nuxt 5 + .nitro 6 + .cache 7 + dist 8 + 9 + # Node dependencies 10 + node_modules 11 + 12 + # Logs 13 + logs 14 + *.log 15 + 16 + # Misc 17 + .DS_Store 18 + .fleet 19 + .idea 20 + 21 + # Local env files 22 + .env 23 + .env.* 24 + !.env.example
+39
README.md
··· 1 + # Nuxt-Ollama Demo 2 + 3 + Look at the [Nuxt-Ollama documentation](https://nuxt-ollama.jericho.dev) to learn more. 4 + 5 + ## Setup 6 + 7 + Make sure Ollama is installed, if not, go to https://ollama.com and install it. 8 + 9 + Pull the model Llama 3.1 with the command line interface: 10 + 11 + ```bash 12 + ollama pull llama3.1 13 + ``` 14 + 15 + Make sure to install the dependencies in the project directory: 16 + 17 + ```bash 18 + npm install 19 + ``` 20 + 21 + ## Development Server 22 + 23 + Start the development server on `http://localhost:3000`: 24 + 25 + ```bash 26 + npm run dev 27 + 28 + ``` 29 + 30 + ## Production 31 + 32 + Build the application for production: 33 + 34 + /!\ The project is using Nuxt-UI Pro, you need to have a license to build the project. 35 + 36 + ```bash 37 + npm run build 38 + 39 + ```
+6
app/app.config.ts
··· 1 + export default defineAppConfig({ 2 + ui: { 3 + primary: 'green', 4 + gray: 'cool' 5 + } 6 + })
+15
app/app.vue
··· 1 + <template> 2 + <div> 3 + <UHeader title="Nuxt-Ollama Demo"> 4 + <template #right> 5 + <UColorModeButton /> 6 + </template> 7 + </UHeader> 8 + <NuxtRouteAnnouncer /> 9 + <UContainer> 10 + <NuxtPage /> 11 + </UContainer> 12 + </div> 13 + </template> 14 + <script setup lang="ts"> 15 + </script>
+63
app/pages/backend.vue
··· 1 + <script setup lang="ts"> 2 + interface OllamaMessage { 3 + role: 'user' | 'assistant' | 'system' 4 + content: string 5 + } 6 + 7 + const messages = ref<OllamaMessage[]>([]) 8 + const messageToSend = ref<string>('') 9 + 10 + async function sendMessage() { 11 + const message = messageToSend.value.trim() 12 + if (message) { 13 + messages.value.push({ 14 + role: 'user', 15 + content: message 16 + }) 17 + messageToSend.value = '' 18 + const len = messages.value.length 19 + fetch('/api/chat', { 20 + method: 'POST', 21 + body: JSON.stringify(messages.value), 22 + }).then(res => { 23 + const reader = res.body?.getReader(); 24 + reader?.read().then(function read({done, value}) { 25 + if (done) { 26 + return; 27 + } 28 + if(messages.value[len] === undefined) { 29 + messages.value.push({ 30 + role: 'assistant', 31 + content: '' 32 + }) 33 + } 34 + //convert Uint8Array to string 35 + const decoder = new TextDecoder(); 36 + const part = decoder.decode(value); 37 + messages.value[len].content += part 38 + reader.read().then(read); 39 + }); 40 + }) 41 + return 42 + } 43 + alert("you must enter a message"); 44 + } 45 + 46 + </script> 47 + 48 + <template> 49 + <UContainer class="mt-5"> 50 + <div v-for="(message, index) in messages" :key="'message_' + index"> 51 + <strong>{{message.role}}</strong> 52 + <p v-html="message.content.replaceAll('\n', '<br>')"></p> 53 + <hr class="my-1"> 54 + </div> 55 + <div class="mt-2"> 56 + <UInput placeholder="enter a message and press enter to send" v-model="messageToSend" @keyup.enter="sendMessage()" /> 57 + </div> 58 + </UContainer> 59 + </template> 60 + 61 + <style scoped> 62 + 63 + </style>
+55
app/pages/frontend.vue
··· 1 + <script setup lang="ts"> 2 + const ollama = useOllama() 3 + 4 + interface OllamaMessage { 5 + role: 'user' | 'assistant' | 'system' 6 + content: string 7 + } 8 + 9 + const messages = ref<OllamaMessage[]>([]) 10 + const messageToSend = ref<string>('') 11 + 12 + async function sendMessage() { 13 + const message = messageToSend.value.trim() 14 + if (message) { 15 + messages.value.push({ 16 + role: 'user', 17 + content: message 18 + }) 19 + messageToSend.value = '' 20 + const response = await ollama.chat({ 21 + model: 'llama3.1', 22 + messages: messages.value, 23 + stream: true 24 + }) 25 + const len = messages.value.length 26 + messages.value.push({ 27 + role: 'assistant', 28 + content: '' 29 + }) 30 + for await (const part of response) { 31 + messages.value[len].content += part.message.content; 32 + } 33 + return 34 + } 35 + alert("you must enter a message"); 36 + } 37 + 38 + </script> 39 + 40 + <template> 41 + <UContainer class="mt-5"> 42 + <div v-for="(message, index) in messages" :key="'message_' + index"> 43 + <strong>{{message.role}}</strong> 44 + <p v-html="message.content.replaceAll('\n', '<br>')"></p> 45 + <hr class="my-1"> 46 + </div> 47 + <div class="mt-2"> 48 + <UInput placeholder="enter a message and press enter to send" v-model="messageToSend" @keyup.enter="sendMessage()" /> 49 + </div> 50 + </UContainer> 51 + </template> 52 + 53 + <style scoped> 54 + 55 + </style>
+27
app/pages/index.vue
··· 1 + <script setup lang="ts"> 2 + </script> 3 + 4 + <template> 5 + <ULandingGrid class="mt-5"> 6 + <UAlert color="yellow" class="col-span-12"> 7 + <template #description> 8 + <p class="font-bold">Welcome to the Nuxt-Ollama demo!</p> 9 + <p>This is a demo of a live chat application using Nuxt-Ollama. You can interact with the assistant by typing messages in the input box below and pressing enter. The assistant will respond 10 + with a message based on the input you provide.</p> 11 + <p class="font-bold mt-2">Before you start:</p> 12 + <p>Be sure you installed Ollama and pulled the model llama3.1</p> 13 + <p>If you don't, just go to <NuxtLink class="font-bold" href="https://ollama.com">the official Ollama website</NuxtLink> to do it.</p> 14 + </template> 15 + </UAlert> 16 + <ULandingCard title="Frontend demo" class="col-span-6" to="/frontend"> 17 + Demo of a live chat application using Nuxt-Ollama on the frontend. 18 + </ULandingCard> 19 + <ULandingCard title="Backend demo" class="col-span-6" to="/backend"> 20 + Demo of a live chat application using Nuxt-Ollama on the backend. 21 + </ULandingCard> 22 + </ULandingGrid> 23 + </template> 24 + 25 + <style scoped> 26 + 27 + </style>
+16
nuxt.config.ts
··· 1 + // https://nuxt.com/docs/api/configuration/nuxt-config 2 + export default defineNuxtConfig({ 3 + future: { 4 + compatibilityVersion: 4 5 + }, 6 + compatibilityDate: '2024-04-03', 7 + devtools: {enabled: true}, 8 + extends: ['@nuxt/ui-pro'], 9 + modules: ["nuxt-ollama", "@nuxt/ui"], 10 + ollama: { 11 + // Options 12 + protocol: 'http', 13 + host: 'localhost', 14 + port: 11434, 15 + } 16 + })
+11779
package-lock.json
··· 1 + { 2 + "name": "nuxt-app", 3 + "lockfileVersion": 3, 4 + "requires": true, 5 + "packages": { 6 + "": { 7 + "name": "nuxt-app", 8 + "hasInstallScript": true, 9 + "dependencies": { 10 + "@nuxt/ui-pro": "^1.4.1", 11 + "nuxt": "^3.12.4", 12 + "nuxt-ollama": "^1.0.7", 13 + "vue": "latest" 14 + } 15 + }, 16 + "node_modules/@alloc/quick-lru": { 17 + "version": "5.2.0", 18 + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 19 + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 20 + "license": "MIT", 21 + "engines": { 22 + "node": ">=10" 23 + }, 24 + "funding": { 25 + "url": "https://github.com/sponsors/sindresorhus" 26 + } 27 + }, 28 + "node_modules/@ampproject/remapping": { 29 + "version": "2.3.0", 30 + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 31 + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 32 + "license": "Apache-2.0", 33 + "dependencies": { 34 + "@jridgewell/gen-mapping": "^0.3.5", 35 + "@jridgewell/trace-mapping": "^0.3.24" 36 + }, 37 + "engines": { 38 + "node": ">=6.0.0" 39 + } 40 + }, 41 + "node_modules/@antfu/install-pkg": { 42 + "version": "0.1.1", 43 + "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.1.1.tgz", 44 + "integrity": "sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==", 45 + "license": "MIT", 46 + "dependencies": { 47 + "execa": "^5.1.1", 48 + "find-up": "^5.0.0" 49 + }, 50 + "funding": { 51 + "url": "https://github.com/sponsors/antfu" 52 + } 53 + }, 54 + "node_modules/@antfu/install-pkg/node_modules/execa": { 55 + "version": "5.1.1", 56 + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 57 + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 58 + "license": "MIT", 59 + "dependencies": { 60 + "cross-spawn": "^7.0.3", 61 + "get-stream": "^6.0.0", 62 + "human-signals": "^2.1.0", 63 + "is-stream": "^2.0.0", 64 + "merge-stream": "^2.0.0", 65 + "npm-run-path": "^4.0.1", 66 + "onetime": "^5.1.2", 67 + "signal-exit": "^3.0.3", 68 + "strip-final-newline": "^2.0.0" 69 + }, 70 + "engines": { 71 + "node": ">=10" 72 + }, 73 + "funding": { 74 + "url": "https://github.com/sindresorhus/execa?sponsor=1" 75 + } 76 + }, 77 + "node_modules/@antfu/install-pkg/node_modules/human-signals": { 78 + "version": "2.1.0", 79 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 80 + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 81 + "license": "Apache-2.0", 82 + "engines": { 83 + "node": ">=10.17.0" 84 + } 85 + }, 86 + "node_modules/@antfu/install-pkg/node_modules/is-stream": { 87 + "version": "2.0.1", 88 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 89 + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 90 + "license": "MIT", 91 + "engines": { 92 + "node": ">=8" 93 + }, 94 + "funding": { 95 + "url": "https://github.com/sponsors/sindresorhus" 96 + } 97 + }, 98 + "node_modules/@antfu/install-pkg/node_modules/mimic-fn": { 99 + "version": "2.1.0", 100 + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 101 + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 102 + "license": "MIT", 103 + "engines": { 104 + "node": ">=6" 105 + } 106 + }, 107 + "node_modules/@antfu/install-pkg/node_modules/npm-run-path": { 108 + "version": "4.0.1", 109 + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 110 + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 111 + "license": "MIT", 112 + "dependencies": { 113 + "path-key": "^3.0.0" 114 + }, 115 + "engines": { 116 + "node": ">=8" 117 + } 118 + }, 119 + "node_modules/@antfu/install-pkg/node_modules/onetime": { 120 + "version": "5.1.2", 121 + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 122 + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 123 + "license": "MIT", 124 + "dependencies": { 125 + "mimic-fn": "^2.1.0" 126 + }, 127 + "engines": { 128 + "node": ">=6" 129 + }, 130 + "funding": { 131 + "url": "https://github.com/sponsors/sindresorhus" 132 + } 133 + }, 134 + "node_modules/@antfu/install-pkg/node_modules/strip-final-newline": { 135 + "version": "2.0.0", 136 + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 137 + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 138 + "license": "MIT", 139 + "engines": { 140 + "node": ">=6" 141 + } 142 + }, 143 + "node_modules/@antfu/utils": { 144 + "version": "0.7.10", 145 + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz", 146 + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", 147 + "license": "MIT", 148 + "funding": { 149 + "url": "https://github.com/sponsors/antfu" 150 + } 151 + }, 152 + "node_modules/@babel/code-frame": { 153 + "version": "7.24.7", 154 + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", 155 + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", 156 + "license": "MIT", 157 + "dependencies": { 158 + "@babel/highlight": "^7.24.7", 159 + "picocolors": "^1.0.0" 160 + }, 161 + "engines": { 162 + "node": ">=6.9.0" 163 + } 164 + }, 165 + "node_modules/@babel/compat-data": { 166 + "version": "7.25.2", 167 + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", 168 + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", 169 + "license": "MIT", 170 + "engines": { 171 + "node": ">=6.9.0" 172 + } 173 + }, 174 + "node_modules/@babel/core": { 175 + "version": "7.25.2", 176 + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", 177 + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", 178 + "license": "MIT", 179 + "dependencies": { 180 + "@ampproject/remapping": "^2.2.0", 181 + "@babel/code-frame": "^7.24.7", 182 + "@babel/generator": "^7.25.0", 183 + "@babel/helper-compilation-targets": "^7.25.2", 184 + "@babel/helper-module-transforms": "^7.25.2", 185 + "@babel/helpers": "^7.25.0", 186 + "@babel/parser": "^7.25.0", 187 + "@babel/template": "^7.25.0", 188 + "@babel/traverse": "^7.25.2", 189 + "@babel/types": "^7.25.2", 190 + "convert-source-map": "^2.0.0", 191 + "debug": "^4.1.0", 192 + "gensync": "^1.0.0-beta.2", 193 + "json5": "^2.2.3", 194 + "semver": "^6.3.1" 195 + }, 196 + "engines": { 197 + "node": ">=6.9.0" 198 + }, 199 + "funding": { 200 + "type": "opencollective", 201 + "url": "https://opencollective.com/babel" 202 + } 203 + }, 204 + "node_modules/@babel/core/node_modules/semver": { 205 + "version": "6.3.1", 206 + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 207 + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 208 + "license": "ISC", 209 + "bin": { 210 + "semver": "bin/semver.js" 211 + } 212 + }, 213 + "node_modules/@babel/generator": { 214 + "version": "7.25.0", 215 + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", 216 + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", 217 + "license": "MIT", 218 + "dependencies": { 219 + "@babel/types": "^7.25.0", 220 + "@jridgewell/gen-mapping": "^0.3.5", 221 + "@jridgewell/trace-mapping": "^0.3.25", 222 + "jsesc": "^2.5.1" 223 + }, 224 + "engines": { 225 + "node": ">=6.9.0" 226 + } 227 + }, 228 + "node_modules/@babel/helper-annotate-as-pure": { 229 + "version": "7.24.7", 230 + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", 231 + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", 232 + "license": "MIT", 233 + "dependencies": { 234 + "@babel/types": "^7.24.7" 235 + }, 236 + "engines": { 237 + "node": ">=6.9.0" 238 + } 239 + }, 240 + "node_modules/@babel/helper-compilation-targets": { 241 + "version": "7.25.2", 242 + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", 243 + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", 244 + "license": "MIT", 245 + "dependencies": { 246 + "@babel/compat-data": "^7.25.2", 247 + "@babel/helper-validator-option": "^7.24.8", 248 + "browserslist": "^4.23.1", 249 + "lru-cache": "^5.1.1", 250 + "semver": "^6.3.1" 251 + }, 252 + "engines": { 253 + "node": ">=6.9.0" 254 + } 255 + }, 256 + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { 257 + "version": "6.3.1", 258 + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 259 + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 260 + "license": "ISC", 261 + "bin": { 262 + "semver": "bin/semver.js" 263 + } 264 + }, 265 + "node_modules/@babel/helper-create-class-features-plugin": { 266 + "version": "7.25.0", 267 + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", 268 + "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", 269 + "license": "MIT", 270 + "dependencies": { 271 + "@babel/helper-annotate-as-pure": "^7.24.7", 272 + "@babel/helper-member-expression-to-functions": "^7.24.8", 273 + "@babel/helper-optimise-call-expression": "^7.24.7", 274 + "@babel/helper-replace-supers": "^7.25.0", 275 + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", 276 + "@babel/traverse": "^7.25.0", 277 + "semver": "^6.3.1" 278 + }, 279 + "engines": { 280 + "node": ">=6.9.0" 281 + }, 282 + "peerDependencies": { 283 + "@babel/core": "^7.0.0" 284 + } 285 + }, 286 + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { 287 + "version": "6.3.1", 288 + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 289 + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 290 + "license": "ISC", 291 + "bin": { 292 + "semver": "bin/semver.js" 293 + } 294 + }, 295 + "node_modules/@babel/helper-member-expression-to-functions": { 296 + "version": "7.24.8", 297 + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", 298 + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", 299 + "license": "MIT", 300 + "dependencies": { 301 + "@babel/traverse": "^7.24.8", 302 + "@babel/types": "^7.24.8" 303 + }, 304 + "engines": { 305 + "node": ">=6.9.0" 306 + } 307 + }, 308 + "node_modules/@babel/helper-module-imports": { 309 + "version": "7.24.7", 310 + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", 311 + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", 312 + "license": "MIT", 313 + "dependencies": { 314 + "@babel/traverse": "^7.24.7", 315 + "@babel/types": "^7.24.7" 316 + }, 317 + "engines": { 318 + "node": ">=6.9.0" 319 + } 320 + }, 321 + "node_modules/@babel/helper-module-transforms": { 322 + "version": "7.25.2", 323 + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", 324 + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", 325 + "license": "MIT", 326 + "dependencies": { 327 + "@babel/helper-module-imports": "^7.24.7", 328 + "@babel/helper-simple-access": "^7.24.7", 329 + "@babel/helper-validator-identifier": "^7.24.7", 330 + "@babel/traverse": "^7.25.2" 331 + }, 332 + "engines": { 333 + "node": ">=6.9.0" 334 + }, 335 + "peerDependencies": { 336 + "@babel/core": "^7.0.0" 337 + } 338 + }, 339 + "node_modules/@babel/helper-optimise-call-expression": { 340 + "version": "7.24.7", 341 + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", 342 + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", 343 + "license": "MIT", 344 + "dependencies": { 345 + "@babel/types": "^7.24.7" 346 + }, 347 + "engines": { 348 + "node": ">=6.9.0" 349 + } 350 + }, 351 + "node_modules/@babel/helper-plugin-utils": { 352 + "version": "7.24.8", 353 + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", 354 + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", 355 + "license": "MIT", 356 + "engines": { 357 + "node": ">=6.9.0" 358 + } 359 + }, 360 + "node_modules/@babel/helper-replace-supers": { 361 + "version": "7.25.0", 362 + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", 363 + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", 364 + "license": "MIT", 365 + "dependencies": { 366 + "@babel/helper-member-expression-to-functions": "^7.24.8", 367 + "@babel/helper-optimise-call-expression": "^7.24.7", 368 + "@babel/traverse": "^7.25.0" 369 + }, 370 + "engines": { 371 + "node": ">=6.9.0" 372 + }, 373 + "peerDependencies": { 374 + "@babel/core": "^7.0.0" 375 + } 376 + }, 377 + "node_modules/@babel/helper-simple-access": { 378 + "version": "7.24.7", 379 + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", 380 + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", 381 + "license": "MIT", 382 + "dependencies": { 383 + "@babel/traverse": "^7.24.7", 384 + "@babel/types": "^7.24.7" 385 + }, 386 + "engines": { 387 + "node": ">=6.9.0" 388 + } 389 + }, 390 + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { 391 + "version": "7.24.7", 392 + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", 393 + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", 394 + "license": "MIT", 395 + "dependencies": { 396 + "@babel/traverse": "^7.24.7", 397 + "@babel/types": "^7.24.7" 398 + }, 399 + "engines": { 400 + "node": ">=6.9.0" 401 + } 402 + }, 403 + "node_modules/@babel/helper-string-parser": { 404 + "version": "7.24.8", 405 + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", 406 + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", 407 + "license": "MIT", 408 + "engines": { 409 + "node": ">=6.9.0" 410 + } 411 + }, 412 + "node_modules/@babel/helper-validator-identifier": { 413 + "version": "7.24.7", 414 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", 415 + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", 416 + "license": "MIT", 417 + "engines": { 418 + "node": ">=6.9.0" 419 + } 420 + }, 421 + "node_modules/@babel/helper-validator-option": { 422 + "version": "7.24.8", 423 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", 424 + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", 425 + "license": "MIT", 426 + "engines": { 427 + "node": ">=6.9.0" 428 + } 429 + }, 430 + "node_modules/@babel/helpers": { 431 + "version": "7.25.0", 432 + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", 433 + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", 434 + "license": "MIT", 435 + "dependencies": { 436 + "@babel/template": "^7.25.0", 437 + "@babel/types": "^7.25.0" 438 + }, 439 + "engines": { 440 + "node": ">=6.9.0" 441 + } 442 + }, 443 + "node_modules/@babel/highlight": { 444 + "version": "7.24.7", 445 + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", 446 + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", 447 + "license": "MIT", 448 + "dependencies": { 449 + "@babel/helper-validator-identifier": "^7.24.7", 450 + "chalk": "^2.4.2", 451 + "js-tokens": "^4.0.0", 452 + "picocolors": "^1.0.0" 453 + }, 454 + "engines": { 455 + "node": ">=6.9.0" 456 + } 457 + }, 458 + "node_modules/@babel/parser": { 459 + "version": "7.25.3", 460 + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", 461 + "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", 462 + "license": "MIT", 463 + "dependencies": { 464 + "@babel/types": "^7.25.2" 465 + }, 466 + "bin": { 467 + "parser": "bin/babel-parser.js" 468 + }, 469 + "engines": { 470 + "node": ">=6.0.0" 471 + } 472 + }, 473 + "node_modules/@babel/plugin-proposal-decorators": { 474 + "version": "7.24.7", 475 + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", 476 + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", 477 + "license": "MIT", 478 + "dependencies": { 479 + "@babel/helper-create-class-features-plugin": "^7.24.7", 480 + "@babel/helper-plugin-utils": "^7.24.7", 481 + "@babel/plugin-syntax-decorators": "^7.24.7" 482 + }, 483 + "engines": { 484 + "node": ">=6.9.0" 485 + }, 486 + "peerDependencies": { 487 + "@babel/core": "^7.0.0-0" 488 + } 489 + }, 490 + "node_modules/@babel/plugin-syntax-decorators": { 491 + "version": "7.24.7", 492 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", 493 + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", 494 + "license": "MIT", 495 + "dependencies": { 496 + "@babel/helper-plugin-utils": "^7.24.7" 497 + }, 498 + "engines": { 499 + "node": ">=6.9.0" 500 + }, 501 + "peerDependencies": { 502 + "@babel/core": "^7.0.0-0" 503 + } 504 + }, 505 + "node_modules/@babel/plugin-syntax-import-attributes": { 506 + "version": "7.24.7", 507 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", 508 + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", 509 + "license": "MIT", 510 + "dependencies": { 511 + "@babel/helper-plugin-utils": "^7.24.7" 512 + }, 513 + "engines": { 514 + "node": ">=6.9.0" 515 + }, 516 + "peerDependencies": { 517 + "@babel/core": "^7.0.0-0" 518 + } 519 + }, 520 + "node_modules/@babel/plugin-syntax-import-meta": { 521 + "version": "7.10.4", 522 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 523 + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 524 + "license": "MIT", 525 + "dependencies": { 526 + "@babel/helper-plugin-utils": "^7.10.4" 527 + }, 528 + "peerDependencies": { 529 + "@babel/core": "^7.0.0-0" 530 + } 531 + }, 532 + "node_modules/@babel/plugin-syntax-jsx": { 533 + "version": "7.24.7", 534 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", 535 + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", 536 + "license": "MIT", 537 + "dependencies": { 538 + "@babel/helper-plugin-utils": "^7.24.7" 539 + }, 540 + "engines": { 541 + "node": ">=6.9.0" 542 + }, 543 + "peerDependencies": { 544 + "@babel/core": "^7.0.0-0" 545 + } 546 + }, 547 + "node_modules/@babel/plugin-syntax-typescript": { 548 + "version": "7.24.7", 549 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", 550 + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", 551 + "license": "MIT", 552 + "dependencies": { 553 + "@babel/helper-plugin-utils": "^7.24.7" 554 + }, 555 + "engines": { 556 + "node": ">=6.9.0" 557 + }, 558 + "peerDependencies": { 559 + "@babel/core": "^7.0.0-0" 560 + } 561 + }, 562 + "node_modules/@babel/plugin-transform-typescript": { 563 + "version": "7.25.2", 564 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", 565 + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", 566 + "license": "MIT", 567 + "dependencies": { 568 + "@babel/helper-annotate-as-pure": "^7.24.7", 569 + "@babel/helper-create-class-features-plugin": "^7.25.0", 570 + "@babel/helper-plugin-utils": "^7.24.8", 571 + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", 572 + "@babel/plugin-syntax-typescript": "^7.24.7" 573 + }, 574 + "engines": { 575 + "node": ">=6.9.0" 576 + }, 577 + "peerDependencies": { 578 + "@babel/core": "^7.0.0-0" 579 + } 580 + }, 581 + "node_modules/@babel/standalone": { 582 + "version": "7.25.3", 583 + "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.25.3.tgz", 584 + "integrity": "sha512-uR+EoBqIIIvKGCG7fOj7HKupu3zVObiMfdEwoPZfVCPpcWJaZ1PkshaP5/6cl6BKAm1Zcv25O1rf+uoQ7V8nqA==", 585 + "license": "MIT", 586 + "engines": { 587 + "node": ">=6.9.0" 588 + } 589 + }, 590 + "node_modules/@babel/template": { 591 + "version": "7.25.0", 592 + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", 593 + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", 594 + "license": "MIT", 595 + "dependencies": { 596 + "@babel/code-frame": "^7.24.7", 597 + "@babel/parser": "^7.25.0", 598 + "@babel/types": "^7.25.0" 599 + }, 600 + "engines": { 601 + "node": ">=6.9.0" 602 + } 603 + }, 604 + "node_modules/@babel/traverse": { 605 + "version": "7.25.3", 606 + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", 607 + "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", 608 + "license": "MIT", 609 + "dependencies": { 610 + "@babel/code-frame": "^7.24.7", 611 + "@babel/generator": "^7.25.0", 612 + "@babel/parser": "^7.25.3", 613 + "@babel/template": "^7.25.0", 614 + "@babel/types": "^7.25.2", 615 + "debug": "^4.3.1", 616 + "globals": "^11.1.0" 617 + }, 618 + "engines": { 619 + "node": ">=6.9.0" 620 + } 621 + }, 622 + "node_modules/@babel/types": { 623 + "version": "7.25.2", 624 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", 625 + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", 626 + "license": "MIT", 627 + "dependencies": { 628 + "@babel/helper-string-parser": "^7.24.8", 629 + "@babel/helper-validator-identifier": "^7.24.7", 630 + "to-fast-properties": "^2.0.0" 631 + }, 632 + "engines": { 633 + "node": ">=6.9.0" 634 + } 635 + }, 636 + "node_modules/@cloudflare/kv-asset-handler": { 637 + "version": "0.3.4", 638 + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz", 639 + "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", 640 + "license": "MIT OR Apache-2.0", 641 + "dependencies": { 642 + "mime": "^3.0.0" 643 + }, 644 + "engines": { 645 + "node": ">=16.13" 646 + } 647 + }, 648 + "node_modules/@cloudflare/kv-asset-handler/node_modules/mime": { 649 + "version": "3.0.0", 650 + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", 651 + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", 652 + "license": "MIT", 653 + "bin": { 654 + "mime": "cli.js" 655 + }, 656 + "engines": { 657 + "node": ">=10.0.0" 658 + } 659 + }, 660 + "node_modules/@csstools/selector-resolve-nested": { 661 + "version": "1.1.0", 662 + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz", 663 + "integrity": "sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==", 664 + "funding": [ 665 + { 666 + "type": "github", 667 + "url": "https://github.com/sponsors/csstools" 668 + }, 669 + { 670 + "type": "opencollective", 671 + "url": "https://opencollective.com/csstools" 672 + } 673 + ], 674 + "license": "MIT-0", 675 + "engines": { 676 + "node": "^14 || ^16 || >=18" 677 + }, 678 + "peerDependencies": { 679 + "postcss-selector-parser": "^6.0.13" 680 + } 681 + }, 682 + "node_modules/@csstools/selector-specificity": { 683 + "version": "3.1.1", 684 + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", 685 + "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", 686 + "funding": [ 687 + { 688 + "type": "github", 689 + "url": "https://github.com/sponsors/csstools" 690 + }, 691 + { 692 + "type": "opencollective", 693 + "url": "https://opencollective.com/csstools" 694 + } 695 + ], 696 + "license": "MIT-0", 697 + "engines": { 698 + "node": "^14 || ^16 || >=18" 699 + }, 700 + "peerDependencies": { 701 + "postcss-selector-parser": "^6.0.13" 702 + } 703 + }, 704 + "node_modules/@esbuild/aix-ppc64": { 705 + "version": "0.23.0", 706 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.0.tgz", 707 + "integrity": "sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==", 708 + "cpu": [ 709 + "ppc64" 710 + ], 711 + "license": "MIT", 712 + "optional": true, 713 + "os": [ 714 + "aix" 715 + ], 716 + "engines": { 717 + "node": ">=18" 718 + } 719 + }, 720 + "node_modules/@esbuild/android-arm": { 721 + "version": "0.23.0", 722 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.0.tgz", 723 + "integrity": "sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==", 724 + "cpu": [ 725 + "arm" 726 + ], 727 + "license": "MIT", 728 + "optional": true, 729 + "os": [ 730 + "android" 731 + ], 732 + "engines": { 733 + "node": ">=18" 734 + } 735 + }, 736 + "node_modules/@esbuild/android-arm64": { 737 + "version": "0.23.0", 738 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.0.tgz", 739 + "integrity": "sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==", 740 + "cpu": [ 741 + "arm64" 742 + ], 743 + "license": "MIT", 744 + "optional": true, 745 + "os": [ 746 + "android" 747 + ], 748 + "engines": { 749 + "node": ">=18" 750 + } 751 + }, 752 + "node_modules/@esbuild/android-x64": { 753 + "version": "0.23.0", 754 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.0.tgz", 755 + "integrity": "sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==", 756 + "cpu": [ 757 + "x64" 758 + ], 759 + "license": "MIT", 760 + "optional": true, 761 + "os": [ 762 + "android" 763 + ], 764 + "engines": { 765 + "node": ">=18" 766 + } 767 + }, 768 + "node_modules/@esbuild/darwin-arm64": { 769 + "version": "0.23.0", 770 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.0.tgz", 771 + "integrity": "sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==", 772 + "cpu": [ 773 + "arm64" 774 + ], 775 + "license": "MIT", 776 + "optional": true, 777 + "os": [ 778 + "darwin" 779 + ], 780 + "engines": { 781 + "node": ">=18" 782 + } 783 + }, 784 + "node_modules/@esbuild/darwin-x64": { 785 + "version": "0.23.0", 786 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.0.tgz", 787 + "integrity": "sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==", 788 + "cpu": [ 789 + "x64" 790 + ], 791 + "license": "MIT", 792 + "optional": true, 793 + "os": [ 794 + "darwin" 795 + ], 796 + "engines": { 797 + "node": ">=18" 798 + } 799 + }, 800 + "node_modules/@esbuild/freebsd-arm64": { 801 + "version": "0.23.0", 802 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.0.tgz", 803 + "integrity": "sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==", 804 + "cpu": [ 805 + "arm64" 806 + ], 807 + "license": "MIT", 808 + "optional": true, 809 + "os": [ 810 + "freebsd" 811 + ], 812 + "engines": { 813 + "node": ">=18" 814 + } 815 + }, 816 + "node_modules/@esbuild/freebsd-x64": { 817 + "version": "0.23.0", 818 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.0.tgz", 819 + "integrity": "sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==", 820 + "cpu": [ 821 + "x64" 822 + ], 823 + "license": "MIT", 824 + "optional": true, 825 + "os": [ 826 + "freebsd" 827 + ], 828 + "engines": { 829 + "node": ">=18" 830 + } 831 + }, 832 + "node_modules/@esbuild/linux-arm": { 833 + "version": "0.23.0", 834 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.0.tgz", 835 + "integrity": "sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==", 836 + "cpu": [ 837 + "arm" 838 + ], 839 + "license": "MIT", 840 + "optional": true, 841 + "os": [ 842 + "linux" 843 + ], 844 + "engines": { 845 + "node": ">=18" 846 + } 847 + }, 848 + "node_modules/@esbuild/linux-arm64": { 849 + "version": "0.23.0", 850 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.0.tgz", 851 + "integrity": "sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==", 852 + "cpu": [ 853 + "arm64" 854 + ], 855 + "license": "MIT", 856 + "optional": true, 857 + "os": [ 858 + "linux" 859 + ], 860 + "engines": { 861 + "node": ">=18" 862 + } 863 + }, 864 + "node_modules/@esbuild/linux-ia32": { 865 + "version": "0.23.0", 866 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.0.tgz", 867 + "integrity": "sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==", 868 + "cpu": [ 869 + "ia32" 870 + ], 871 + "license": "MIT", 872 + "optional": true, 873 + "os": [ 874 + "linux" 875 + ], 876 + "engines": { 877 + "node": ">=18" 878 + } 879 + }, 880 + "node_modules/@esbuild/linux-loong64": { 881 + "version": "0.23.0", 882 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.0.tgz", 883 + "integrity": "sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==", 884 + "cpu": [ 885 + "loong64" 886 + ], 887 + "license": "MIT", 888 + "optional": true, 889 + "os": [ 890 + "linux" 891 + ], 892 + "engines": { 893 + "node": ">=18" 894 + } 895 + }, 896 + "node_modules/@esbuild/linux-mips64el": { 897 + "version": "0.23.0", 898 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.0.tgz", 899 + "integrity": "sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==", 900 + "cpu": [ 901 + "mips64el" 902 + ], 903 + "license": "MIT", 904 + "optional": true, 905 + "os": [ 906 + "linux" 907 + ], 908 + "engines": { 909 + "node": ">=18" 910 + } 911 + }, 912 + "node_modules/@esbuild/linux-ppc64": { 913 + "version": "0.23.0", 914 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.0.tgz", 915 + "integrity": "sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==", 916 + "cpu": [ 917 + "ppc64" 918 + ], 919 + "license": "MIT", 920 + "optional": true, 921 + "os": [ 922 + "linux" 923 + ], 924 + "engines": { 925 + "node": ">=18" 926 + } 927 + }, 928 + "node_modules/@esbuild/linux-riscv64": { 929 + "version": "0.23.0", 930 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.0.tgz", 931 + "integrity": "sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==", 932 + "cpu": [ 933 + "riscv64" 934 + ], 935 + "license": "MIT", 936 + "optional": true, 937 + "os": [ 938 + "linux" 939 + ], 940 + "engines": { 941 + "node": ">=18" 942 + } 943 + }, 944 + "node_modules/@esbuild/linux-s390x": { 945 + "version": "0.23.0", 946 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.0.tgz", 947 + "integrity": "sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==", 948 + "cpu": [ 949 + "s390x" 950 + ], 951 + "license": "MIT", 952 + "optional": true, 953 + "os": [ 954 + "linux" 955 + ], 956 + "engines": { 957 + "node": ">=18" 958 + } 959 + }, 960 + "node_modules/@esbuild/linux-x64": { 961 + "version": "0.23.0", 962 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.0.tgz", 963 + "integrity": "sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==", 964 + "cpu": [ 965 + "x64" 966 + ], 967 + "license": "MIT", 968 + "optional": true, 969 + "os": [ 970 + "linux" 971 + ], 972 + "engines": { 973 + "node": ">=18" 974 + } 975 + }, 976 + "node_modules/@esbuild/netbsd-x64": { 977 + "version": "0.23.0", 978 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.0.tgz", 979 + "integrity": "sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==", 980 + "cpu": [ 981 + "x64" 982 + ], 983 + "license": "MIT", 984 + "optional": true, 985 + "os": [ 986 + "netbsd" 987 + ], 988 + "engines": { 989 + "node": ">=18" 990 + } 991 + }, 992 + "node_modules/@esbuild/openbsd-arm64": { 993 + "version": "0.23.0", 994 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.0.tgz", 995 + "integrity": "sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==", 996 + "cpu": [ 997 + "arm64" 998 + ], 999 + "license": "MIT", 1000 + "optional": true, 1001 + "os": [ 1002 + "openbsd" 1003 + ], 1004 + "engines": { 1005 + "node": ">=18" 1006 + } 1007 + }, 1008 + "node_modules/@esbuild/openbsd-x64": { 1009 + "version": "0.23.0", 1010 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.0.tgz", 1011 + "integrity": "sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==", 1012 + "cpu": [ 1013 + "x64" 1014 + ], 1015 + "license": "MIT", 1016 + "optional": true, 1017 + "os": [ 1018 + "openbsd" 1019 + ], 1020 + "engines": { 1021 + "node": ">=18" 1022 + } 1023 + }, 1024 + "node_modules/@esbuild/sunos-x64": { 1025 + "version": "0.23.0", 1026 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.0.tgz", 1027 + "integrity": "sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==", 1028 + "cpu": [ 1029 + "x64" 1030 + ], 1031 + "license": "MIT", 1032 + "optional": true, 1033 + "os": [ 1034 + "sunos" 1035 + ], 1036 + "engines": { 1037 + "node": ">=18" 1038 + } 1039 + }, 1040 + "node_modules/@esbuild/win32-arm64": { 1041 + "version": "0.23.0", 1042 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.0.tgz", 1043 + "integrity": "sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==", 1044 + "cpu": [ 1045 + "arm64" 1046 + ], 1047 + "license": "MIT", 1048 + "optional": true, 1049 + "os": [ 1050 + "win32" 1051 + ], 1052 + "engines": { 1053 + "node": ">=18" 1054 + } 1055 + }, 1056 + "node_modules/@esbuild/win32-ia32": { 1057 + "version": "0.23.0", 1058 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.0.tgz", 1059 + "integrity": "sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==", 1060 + "cpu": [ 1061 + "ia32" 1062 + ], 1063 + "license": "MIT", 1064 + "optional": true, 1065 + "os": [ 1066 + "win32" 1067 + ], 1068 + "engines": { 1069 + "node": ">=18" 1070 + } 1071 + }, 1072 + "node_modules/@esbuild/win32-x64": { 1073 + "version": "0.23.0", 1074 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz", 1075 + "integrity": "sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==", 1076 + "cpu": [ 1077 + "x64" 1078 + ], 1079 + "license": "MIT", 1080 + "optional": true, 1081 + "os": [ 1082 + "win32" 1083 + ], 1084 + "engines": { 1085 + "node": ">=18" 1086 + } 1087 + }, 1088 + "node_modules/@fastify/busboy": { 1089 + "version": "2.1.1", 1090 + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", 1091 + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", 1092 + "license": "MIT", 1093 + "engines": { 1094 + "node": ">=14" 1095 + } 1096 + }, 1097 + "node_modules/@headlessui/tailwindcss": { 1098 + "version": "0.2.1", 1099 + "resolved": "https://registry.npmjs.org/@headlessui/tailwindcss/-/tailwindcss-0.2.1.tgz", 1100 + "integrity": "sha512-2+5+NZ+RzMyrVeCZOxdbvkUSssSxGvcUxphkIfSVLpRiKsj+/63T2TOL9dBYMXVfj/CGr6hMxSRInzXv6YY7sA==", 1101 + "license": "MIT", 1102 + "engines": { 1103 + "node": ">=10" 1104 + }, 1105 + "peerDependencies": { 1106 + "tailwindcss": "^3.0" 1107 + } 1108 + }, 1109 + "node_modules/@headlessui/vue": { 1110 + "version": "1.7.22", 1111 + "resolved": "https://registry.npmjs.org/@headlessui/vue/-/vue-1.7.22.tgz", 1112 + "integrity": "sha512-Hoffjoolq1rY+LOfJ+B/OvkhuBXXBFgd8oBlN+l1TApma2dB0En0ucFZrwQtb33SmcCqd32EQd0y07oziXWNYg==", 1113 + "license": "MIT", 1114 + "dependencies": { 1115 + "@tanstack/vue-virtual": "^3.0.0-beta.60" 1116 + }, 1117 + "engines": { 1118 + "node": ">=10" 1119 + }, 1120 + "peerDependencies": { 1121 + "vue": "^3.2.0" 1122 + } 1123 + }, 1124 + "node_modules/@iconify-json/heroicons": { 1125 + "version": "1.1.24", 1126 + "resolved": "https://registry.npmjs.org/@iconify-json/heroicons/-/heroicons-1.1.24.tgz", 1127 + "integrity": "sha512-Axd6nxsEeQMpuK8ugkAkJ1kS6cbmgXX1s1+Z6NbANvtgtNTBIx9bLQcEL6loKjxpfktDXERElrR5G6xzWOqysg==", 1128 + "license": "MIT", 1129 + "dependencies": { 1130 + "@iconify/types": "*" 1131 + } 1132 + }, 1133 + "node_modules/@iconify-json/vscode-icons": { 1134 + "version": "1.1.37", 1135 + "resolved": "https://registry.npmjs.org/@iconify-json/vscode-icons/-/vscode-icons-1.1.37.tgz", 1136 + "integrity": "sha512-02+dR2/LdIZTqGfyQerla5snhdN4edwYgpDuFZpI2lK9w8OVm26WYbg8RR8TxXQrlCRs726NQYxl5W+7V1YM/Q==", 1137 + "license": "MIT", 1138 + "dependencies": { 1139 + "@iconify/types": "*" 1140 + } 1141 + }, 1142 + "node_modules/@iconify/collections": { 1143 + "version": "1.0.447", 1144 + "resolved": "https://registry.npmjs.org/@iconify/collections/-/collections-1.0.447.tgz", 1145 + "integrity": "sha512-E8eG9ktJo3u4d7o2KMxYndhrOm6Dua4PGoEkRZsIwitlgCOF4wWgsOuLR/drAbgZFxxvYwVdb0Vnzr3pX5F0lw==", 1146 + "license": "MIT", 1147 + "dependencies": { 1148 + "@iconify/types": "*" 1149 + } 1150 + }, 1151 + "node_modules/@iconify/types": { 1152 + "version": "2.0.0", 1153 + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", 1154 + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", 1155 + "license": "MIT" 1156 + }, 1157 + "node_modules/@iconify/utils": { 1158 + "version": "2.1.30", 1159 + "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.30.tgz", 1160 + "integrity": "sha512-bY0IO5xLOlbzJBnjWLxknp6Sss3yla03sVY9VeUz9nT6dbc+EGKlLfCt+6uytJnWm5CUvTF/BNotsLWF7kI61A==", 1161 + "license": "MIT", 1162 + "dependencies": { 1163 + "@antfu/install-pkg": "^0.1.1", 1164 + "@antfu/utils": "^0.7.10", 1165 + "@iconify/types": "^2.0.0", 1166 + "debug": "^4.3.5", 1167 + "kolorist": "^1.8.0", 1168 + "local-pkg": "^0.5.0", 1169 + "mlly": "^1.7.1" 1170 + } 1171 + }, 1172 + "node_modules/@iconify/vue": { 1173 + "version": "4.1.3-beta.1", 1174 + "resolved": "https://registry.npmjs.org/@iconify/vue/-/vue-4.1.3-beta.1.tgz", 1175 + "integrity": "sha512-N7iEOnWfhjbMqiyGMhotJKip23nrK5l3+T1hQwpEjKeMD2o4zOjm8zmeEfOOH81EXllhhOm7upR8jcH499YRWA==", 1176 + "license": "MIT", 1177 + "dependencies": { 1178 + "@iconify/types": "^2.0.0" 1179 + }, 1180 + "funding": { 1181 + "url": "https://github.com/sponsors/cyberalien" 1182 + }, 1183 + "peerDependencies": { 1184 + "vue": ">=3" 1185 + } 1186 + }, 1187 + "node_modules/@ioredis/commands": { 1188 + "version": "1.2.0", 1189 + "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", 1190 + "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==", 1191 + "license": "MIT" 1192 + }, 1193 + "node_modules/@isaacs/cliui": { 1194 + "version": "8.0.2", 1195 + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 1196 + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 1197 + "license": "ISC", 1198 + "dependencies": { 1199 + "string-width": "^5.1.2", 1200 + "string-width-cjs": "npm:string-width@^4.2.0", 1201 + "strip-ansi": "^7.0.1", 1202 + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 1203 + "wrap-ansi": "^8.1.0", 1204 + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 1205 + }, 1206 + "engines": { 1207 + "node": ">=12" 1208 + } 1209 + }, 1210 + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 1211 + "version": "6.0.1", 1212 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 1213 + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 1214 + "license": "MIT", 1215 + "engines": { 1216 + "node": ">=12" 1217 + }, 1218 + "funding": { 1219 + "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1220 + } 1221 + }, 1222 + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { 1223 + "version": "6.2.1", 1224 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 1225 + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 1226 + "license": "MIT", 1227 + "engines": { 1228 + "node": ">=12" 1229 + }, 1230 + "funding": { 1231 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1232 + } 1233 + }, 1234 + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { 1235 + "version": "9.2.2", 1236 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1237 + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1238 + "license": "MIT" 1239 + }, 1240 + "node_modules/@isaacs/cliui/node_modules/string-width": { 1241 + "version": "5.1.2", 1242 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 1243 + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 1244 + "license": "MIT", 1245 + "dependencies": { 1246 + "eastasianwidth": "^0.2.0", 1247 + "emoji-regex": "^9.2.2", 1248 + "strip-ansi": "^7.0.1" 1249 + }, 1250 + "engines": { 1251 + "node": ">=12" 1252 + }, 1253 + "funding": { 1254 + "url": "https://github.com/sponsors/sindresorhus" 1255 + } 1256 + }, 1257 + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 1258 + "version": "7.1.0", 1259 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 1260 + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 1261 + "license": "MIT", 1262 + "dependencies": { 1263 + "ansi-regex": "^6.0.1" 1264 + }, 1265 + "engines": { 1266 + "node": ">=12" 1267 + }, 1268 + "funding": { 1269 + "url": "https://github.com/chalk/strip-ansi?sponsor=1" 1270 + } 1271 + }, 1272 + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { 1273 + "version": "8.1.0", 1274 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 1275 + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 1276 + "license": "MIT", 1277 + "dependencies": { 1278 + "ansi-styles": "^6.1.0", 1279 + "string-width": "^5.0.1", 1280 + "strip-ansi": "^7.0.1" 1281 + }, 1282 + "engines": { 1283 + "node": ">=12" 1284 + }, 1285 + "funding": { 1286 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1287 + } 1288 + }, 1289 + "node_modules/@jridgewell/gen-mapping": { 1290 + "version": "0.3.5", 1291 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 1292 + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 1293 + "license": "MIT", 1294 + "dependencies": { 1295 + "@jridgewell/set-array": "^1.2.1", 1296 + "@jridgewell/sourcemap-codec": "^1.4.10", 1297 + "@jridgewell/trace-mapping": "^0.3.24" 1298 + }, 1299 + "engines": { 1300 + "node": ">=6.0.0" 1301 + } 1302 + }, 1303 + "node_modules/@jridgewell/resolve-uri": { 1304 + "version": "3.1.2", 1305 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1306 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1307 + "license": "MIT", 1308 + "engines": { 1309 + "node": ">=6.0.0" 1310 + } 1311 + }, 1312 + "node_modules/@jridgewell/set-array": { 1313 + "version": "1.2.1", 1314 + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1315 + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1316 + "license": "MIT", 1317 + "engines": { 1318 + "node": ">=6.0.0" 1319 + } 1320 + }, 1321 + "node_modules/@jridgewell/source-map": { 1322 + "version": "0.3.6", 1323 + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", 1324 + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", 1325 + "license": "MIT", 1326 + "dependencies": { 1327 + "@jridgewell/gen-mapping": "^0.3.5", 1328 + "@jridgewell/trace-mapping": "^0.3.25" 1329 + } 1330 + }, 1331 + "node_modules/@jridgewell/sourcemap-codec": { 1332 + "version": "1.5.0", 1333 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1334 + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1335 + "license": "MIT" 1336 + }, 1337 + "node_modules/@jridgewell/trace-mapping": { 1338 + "version": "0.3.25", 1339 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1340 + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1341 + "license": "MIT", 1342 + "dependencies": { 1343 + "@jridgewell/resolve-uri": "^3.1.0", 1344 + "@jridgewell/sourcemap-codec": "^1.4.14" 1345 + } 1346 + }, 1347 + "node_modules/@koa/router": { 1348 + "version": "12.0.1", 1349 + "resolved": "https://registry.npmjs.org/@koa/router/-/router-12.0.1.tgz", 1350 + "integrity": "sha512-ribfPYfHb+Uw3b27Eiw6NPqjhIhTpVFzEWLwyc/1Xp+DCdwRRyIlAUODX+9bPARF6aQtUu1+/PHzdNvRzcs/+Q==", 1351 + "license": "MIT", 1352 + "dependencies": { 1353 + "debug": "^4.3.4", 1354 + "http-errors": "^2.0.0", 1355 + "koa-compose": "^4.1.0", 1356 + "methods": "^1.1.2", 1357 + "path-to-regexp": "^6.2.1" 1358 + }, 1359 + "engines": { 1360 + "node": ">= 12" 1361 + } 1362 + }, 1363 + "node_modules/@kwsites/file-exists": { 1364 + "version": "1.1.1", 1365 + "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz", 1366 + "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==", 1367 + "license": "MIT", 1368 + "dependencies": { 1369 + "debug": "^4.1.1" 1370 + } 1371 + }, 1372 + "node_modules/@kwsites/promise-deferred": { 1373 + "version": "1.1.1", 1374 + "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz", 1375 + "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==", 1376 + "license": "MIT" 1377 + }, 1378 + "node_modules/@mapbox/node-pre-gyp": { 1379 + "version": "1.0.11", 1380 + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", 1381 + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", 1382 + "license": "BSD-3-Clause", 1383 + "dependencies": { 1384 + "detect-libc": "^2.0.0", 1385 + "https-proxy-agent": "^5.0.0", 1386 + "make-dir": "^3.1.0", 1387 + "node-fetch": "^2.6.7", 1388 + "nopt": "^5.0.0", 1389 + "npmlog": "^5.0.1", 1390 + "rimraf": "^3.0.2", 1391 + "semver": "^7.3.5", 1392 + "tar": "^6.1.11" 1393 + }, 1394 + "bin": { 1395 + "node-pre-gyp": "bin/node-pre-gyp" 1396 + } 1397 + }, 1398 + "node_modules/@netlify/functions": { 1399 + "version": "2.8.1", 1400 + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-2.8.1.tgz", 1401 + "integrity": "sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==", 1402 + "license": "MIT", 1403 + "dependencies": { 1404 + "@netlify/serverless-functions-api": "1.19.1" 1405 + }, 1406 + "engines": { 1407 + "node": ">=14.0.0" 1408 + } 1409 + }, 1410 + "node_modules/@netlify/node-cookies": { 1411 + "version": "0.1.0", 1412 + "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz", 1413 + "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==", 1414 + "license": "MIT", 1415 + "engines": { 1416 + "node": "^14.16.0 || >=16.0.0" 1417 + } 1418 + }, 1419 + "node_modules/@netlify/serverless-functions-api": { 1420 + "version": "1.19.1", 1421 + "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz", 1422 + "integrity": "sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==", 1423 + "license": "MIT", 1424 + "dependencies": { 1425 + "@netlify/node-cookies": "^0.1.0", 1426 + "urlpattern-polyfill": "8.0.2" 1427 + }, 1428 + "engines": { 1429 + "node": ">=18.0.0" 1430 + } 1431 + }, 1432 + "node_modules/@nodelib/fs.scandir": { 1433 + "version": "2.1.5", 1434 + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1435 + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1436 + "license": "MIT", 1437 + "dependencies": { 1438 + "@nodelib/fs.stat": "2.0.5", 1439 + "run-parallel": "^1.1.9" 1440 + }, 1441 + "engines": { 1442 + "node": ">= 8" 1443 + } 1444 + }, 1445 + "node_modules/@nodelib/fs.stat": { 1446 + "version": "2.0.5", 1447 + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1448 + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1449 + "license": "MIT", 1450 + "engines": { 1451 + "node": ">= 8" 1452 + } 1453 + }, 1454 + "node_modules/@nodelib/fs.walk": { 1455 + "version": "1.2.8", 1456 + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1457 + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1458 + "license": "MIT", 1459 + "dependencies": { 1460 + "@nodelib/fs.scandir": "2.1.5", 1461 + "fastq": "^1.6.0" 1462 + }, 1463 + "engines": { 1464 + "node": ">= 8" 1465 + } 1466 + }, 1467 + "node_modules/@nuxt/devalue": { 1468 + "version": "2.0.2", 1469 + "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", 1470 + "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==", 1471 + "license": "MIT" 1472 + }, 1473 + "node_modules/@nuxt/devtools": { 1474 + "version": "1.3.9", 1475 + "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-1.3.9.tgz", 1476 + "integrity": "sha512-tFKlbUPgSXw4tyD8xpztQtJeVn3egdKbFCV0xc92FbfGbclAyaa3XhKA2tMWXEGZQpykAWMRNrGWN24FtXFA6Q==", 1477 + "license": "MIT", 1478 + "dependencies": { 1479 + "@antfu/utils": "^0.7.10", 1480 + "@nuxt/devtools-kit": "1.3.9", 1481 + "@nuxt/devtools-wizard": "1.3.9", 1482 + "@nuxt/kit": "^3.12.2", 1483 + "@vue/devtools-core": "7.3.3", 1484 + "@vue/devtools-kit": "7.3.3", 1485 + "birpc": "^0.2.17", 1486 + "consola": "^3.2.3", 1487 + "cronstrue": "^2.50.0", 1488 + "destr": "^2.0.3", 1489 + "error-stack-parser-es": "^0.1.4", 1490 + "execa": "^7.2.0", 1491 + "fast-glob": "^3.3.2", 1492 + "fast-npm-meta": "^0.1.1", 1493 + "flatted": "^3.3.1", 1494 + "get-port-please": "^3.1.2", 1495 + "hookable": "^5.5.3", 1496 + "image-meta": "^0.2.0", 1497 + "is-installed-globally": "^1.0.0", 1498 + "launch-editor": "^2.8.0", 1499 + "local-pkg": "^0.5.0", 1500 + "magicast": "^0.3.4", 1501 + "nypm": "^0.3.9", 1502 + "ohash": "^1.1.3", 1503 + "pathe": "^1.1.2", 1504 + "perfect-debounce": "^1.0.0", 1505 + "pkg-types": "^1.1.2", 1506 + "rc9": "^2.1.2", 1507 + "scule": "^1.3.0", 1508 + "semver": "^7.6.2", 1509 + "simple-git": "^3.25.0", 1510 + "sirv": "^2.0.4", 1511 + "unimport": "^3.7.2", 1512 + "vite-plugin-inspect": "^0.8.4", 1513 + "vite-plugin-vue-inspector": "^5.1.2", 1514 + "which": "^3.0.1", 1515 + "ws": "^8.17.1" 1516 + }, 1517 + "bin": { 1518 + "devtools": "cli.mjs" 1519 + }, 1520 + "peerDependencies": { 1521 + "vite": "*" 1522 + } 1523 + }, 1524 + "node_modules/@nuxt/devtools-kit": { 1525 + "version": "1.3.9", 1526 + "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-1.3.9.tgz", 1527 + "integrity": "sha512-tgr/F+4BbI53/JxgaXl3cuV9dMuCXMsd4GEXN+JqtCdAkDbH3wL79GGWx0/6I9acGzRsB6UZ1H6U96nfgcIrAw==", 1528 + "license": "MIT", 1529 + "dependencies": { 1530 + "@nuxt/kit": "^3.12.2", 1531 + "@nuxt/schema": "^3.12.3", 1532 + "execa": "^7.2.0" 1533 + }, 1534 + "peerDependencies": { 1535 + "vite": "*" 1536 + } 1537 + }, 1538 + "node_modules/@nuxt/devtools-wizard": { 1539 + "version": "1.3.9", 1540 + "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-1.3.9.tgz", 1541 + "integrity": "sha512-WMgwWWuyng+Y6k7sfBI95wYnec8TPFkuYbHHOlYQgqE9dAewPisSbEm3WkB7p/W9UqxpN8mvKN5qUg4sTmEpgQ==", 1542 + "license": "MIT", 1543 + "dependencies": { 1544 + "consola": "^3.2.3", 1545 + "diff": "^5.2.0", 1546 + "execa": "^7.2.0", 1547 + "global-directory": "^4.0.1", 1548 + "magicast": "^0.3.4", 1549 + "pathe": "^1.1.2", 1550 + "pkg-types": "^1.1.2", 1551 + "prompts": "^2.4.2", 1552 + "rc9": "^2.1.2", 1553 + "semver": "^7.6.2" 1554 + }, 1555 + "bin": { 1556 + "devtools-wizard": "cli.mjs" 1557 + } 1558 + }, 1559 + "node_modules/@nuxt/icon": { 1560 + "version": "1.4.5", 1561 + "resolved": "https://registry.npmjs.org/@nuxt/icon/-/icon-1.4.5.tgz", 1562 + "integrity": "sha512-h0Fe1VhpVB5bcQutsH37G46DyE2u+j5j7+0sFbxT2ovRm+uILqo5ONXWe4WuJ20AtngvdpqvnqT25ZQtzx4K9A==", 1563 + "license": "MIT", 1564 + "dependencies": { 1565 + "@iconify/collections": "^1.0.443", 1566 + "@iconify/types": "^2.0.0", 1567 + "@iconify/utils": "^2.1.25", 1568 + "@iconify/vue": "4.1.3-beta.1", 1569 + "@nuxt/devtools-kit": "^1.3.9", 1570 + "@nuxt/kit": "^3.12.4", 1571 + "consola": "^3.2.3", 1572 + "fast-glob": "^3.3.2", 1573 + "local-pkg": "^0.5.0", 1574 + "mlly": "^1.7.1", 1575 + "pathe": "^1.1.2" 1576 + } 1577 + }, 1578 + "node_modules/@nuxt/kit": { 1579 + "version": "3.12.4", 1580 + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.12.4.tgz", 1581 + "integrity": "sha512-aNRD1ylzijY0oYolldNcZJXVyxdGzNTl+Xd0UYyFQCu9f4wqUZqQ9l+b7arCEzchr96pMK0xdpvLcS3xo1wDcw==", 1582 + "license": "MIT", 1583 + "dependencies": { 1584 + "@nuxt/schema": "3.12.4", 1585 + "c12": "^1.11.1", 1586 + "consola": "^3.2.3", 1587 + "defu": "^6.1.4", 1588 + "destr": "^2.0.3", 1589 + "globby": "^14.0.2", 1590 + "hash-sum": "^2.0.0", 1591 + "ignore": "^5.3.1", 1592 + "jiti": "^1.21.6", 1593 + "klona": "^2.0.6", 1594 + "knitwork": "^1.1.0", 1595 + "mlly": "^1.7.1", 1596 + "pathe": "^1.1.2", 1597 + "pkg-types": "^1.1.3", 1598 + "scule": "^1.3.0", 1599 + "semver": "^7.6.3", 1600 + "ufo": "^1.5.4", 1601 + "unctx": "^2.3.1", 1602 + "unimport": "^3.9.0", 1603 + "untyped": "^1.4.2" 1604 + }, 1605 + "engines": { 1606 + "node": "^14.18.0 || >=16.10.0" 1607 + } 1608 + }, 1609 + "node_modules/@nuxt/schema": { 1610 + "version": "3.12.4", 1611 + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.12.4.tgz", 1612 + "integrity": "sha512-H7FwBV4ChssMaeiLyPdVLOLUa0326ebp3pNbJfGgFt7rSoKh1MmgjorecA8JMxOQZziy3w6EELf4+5cgLh/F1w==", 1613 + "license": "MIT", 1614 + "dependencies": { 1615 + "compatx": "^0.1.8", 1616 + "consola": "^3.2.3", 1617 + "defu": "^6.1.4", 1618 + "hookable": "^5.5.3", 1619 + "pathe": "^1.1.2", 1620 + "pkg-types": "^1.1.3", 1621 + "scule": "^1.3.0", 1622 + "std-env": "^3.7.0", 1623 + "ufo": "^1.5.4", 1624 + "uncrypto": "^0.1.3", 1625 + "unimport": "^3.9.0", 1626 + "untyped": "^1.4.2" 1627 + }, 1628 + "engines": { 1629 + "node": "^14.18.0 || >=16.10.0" 1630 + } 1631 + }, 1632 + "node_modules/@nuxt/telemetry": { 1633 + "version": "2.5.4", 1634 + "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.4.tgz", 1635 + "integrity": "sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==", 1636 + "license": "MIT", 1637 + "dependencies": { 1638 + "@nuxt/kit": "^3.11.2", 1639 + "ci-info": "^4.0.0", 1640 + "consola": "^3.2.3", 1641 + "create-require": "^1.1.1", 1642 + "defu": "^6.1.4", 1643 + "destr": "^2.0.3", 1644 + "dotenv": "^16.4.5", 1645 + "git-url-parse": "^14.0.0", 1646 + "is-docker": "^3.0.0", 1647 + "jiti": "^1.21.0", 1648 + "mri": "^1.2.0", 1649 + "nanoid": "^5.0.7", 1650 + "ofetch": "^1.3.4", 1651 + "parse-git-config": "^3.0.0", 1652 + "pathe": "^1.1.2", 1653 + "rc9": "^2.1.2", 1654 + "std-env": "^3.7.0" 1655 + }, 1656 + "bin": { 1657 + "nuxt-telemetry": "bin/nuxt-telemetry.mjs" 1658 + } 1659 + }, 1660 + "node_modules/@nuxt/ui": { 1661 + "version": "2.18.4", 1662 + "resolved": "https://registry.npmjs.org/@nuxt/ui/-/ui-2.18.4.tgz", 1663 + "integrity": "sha512-NzFUzh5Izd7mduhYhFBlIOcqE8aY+9mbSQ0n8sIASpASv162VJ46OsR5Jm5sbfhKDrgv7UsBk6VKXJXiEI7ThQ==", 1664 + "license": "MIT", 1665 + "dependencies": { 1666 + "@headlessui/tailwindcss": "^0.2.1", 1667 + "@headlessui/vue": "^1.7.22", 1668 + "@iconify-json/heroicons": "^1.1.23", 1669 + "@nuxt/icon": "^1.4.0", 1670 + "@nuxt/kit": "^3.12.4", 1671 + "@nuxtjs/color-mode": "^3.4.2", 1672 + "@nuxtjs/tailwindcss": "^6.12.1", 1673 + "@popperjs/core": "^2.11.8", 1674 + "@tailwindcss/aspect-ratio": "^0.4.2", 1675 + "@tailwindcss/container-queries": "^0.1.1", 1676 + "@tailwindcss/forms": "^0.5.7", 1677 + "@tailwindcss/typography": "^0.5.13", 1678 + "@vueuse/core": "^10.11.0", 1679 + "@vueuse/integrations": "^10.11.0", 1680 + "@vueuse/math": "^10.11.0", 1681 + "defu": "^6.1.4", 1682 + "fuse.js": "^6.6.2", 1683 + "ohash": "^1.1.3", 1684 + "pathe": "^1.1.2", 1685 + "scule": "^1.3.0", 1686 + "tailwind-merge": "^2.4.0", 1687 + "tailwindcss": "^3.4.7" 1688 + }, 1689 + "engines": { 1690 + "node": ">=v16.20.2" 1691 + } 1692 + }, 1693 + "node_modules/@nuxt/ui-pro": { 1694 + "version": "1.4.1", 1695 + "resolved": "https://registry.npmjs.org/@nuxt/ui-pro/-/ui-pro-1.4.1.tgz", 1696 + "integrity": "sha512-ab+SNjyWHQTH23/WJD0gDE2p6FoF5zEshij4HFAhkco7x5w1HeGMtyLDUlzDb95zIaxAC+Mj5EP+ytBH/McJrg==", 1697 + "dependencies": { 1698 + "@iconify-json/vscode-icons": "^1.1.37", 1699 + "@nuxt/ui": "^2.18.4", 1700 + "@vueuse/core": "^10.11.0", 1701 + "defu": "^6.1.4", 1702 + "git-url-parse": "^14.1.0", 1703 + "ofetch": "^1.3.4", 1704 + "parse-git-config": "^3.0.0", 1705 + "pathe": "^1.1.2", 1706 + "pkg-types": "^1.1.3", 1707 + "tailwind-merge": "^2.4.0", 1708 + "vue3-smooth-dnd": "^0.0.6" 1709 + } 1710 + }, 1711 + "node_modules/@nuxt/vite-builder": { 1712 + "version": "3.12.4", 1713 + "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.12.4.tgz", 1714 + "integrity": "sha512-5v3y6SkshJurZYJWHtc7+NGeCgptsreCSguBCZVzJxYdsPFdMicLoxjTt8IGAHWjkGVONrX+K8NBSFFgnx40jQ==", 1715 + "license": "MIT", 1716 + "dependencies": { 1717 + "@nuxt/kit": "3.12.4", 1718 + "@rollup/plugin-replace": "^5.0.7", 1719 + "@vitejs/plugin-vue": "^5.0.5", 1720 + "@vitejs/plugin-vue-jsx": "^4.0.0", 1721 + "autoprefixer": "^10.4.19", 1722 + "clear": "^0.1.0", 1723 + "consola": "^3.2.3", 1724 + "cssnano": "^7.0.4", 1725 + "defu": "^6.1.4", 1726 + "esbuild": "^0.23.0", 1727 + "escape-string-regexp": "^5.0.0", 1728 + "estree-walker": "^3.0.3", 1729 + "externality": "^1.0.2", 1730 + "get-port-please": "^3.1.2", 1731 + "h3": "^1.12.0", 1732 + "knitwork": "^1.1.0", 1733 + "magic-string": "^0.30.10", 1734 + "mlly": "^1.7.1", 1735 + "ohash": "^1.1.3", 1736 + "pathe": "^1.1.2", 1737 + "perfect-debounce": "^1.0.0", 1738 + "pkg-types": "^1.1.3", 1739 + "postcss": "^8.4.39", 1740 + "rollup-plugin-visualizer": "^5.12.0", 1741 + "std-env": "^3.7.0", 1742 + "strip-literal": "^2.1.0", 1743 + "ufo": "^1.5.4", 1744 + "unenv": "^1.10.0", 1745 + "unplugin": "^1.11.0", 1746 + "vite": "^5.3.4", 1747 + "vite-node": "^2.0.3", 1748 + "vite-plugin-checker": "^0.7.2", 1749 + "vue-bundle-renderer": "^2.1.0" 1750 + }, 1751 + "engines": { 1752 + "node": "^14.18.0 || >=16.10.0" 1753 + }, 1754 + "peerDependencies": { 1755 + "vue": "^3.3.4" 1756 + } 1757 + }, 1758 + "node_modules/@nuxtjs/color-mode": { 1759 + "version": "3.4.2", 1760 + "resolved": "https://registry.npmjs.org/@nuxtjs/color-mode/-/color-mode-3.4.2.tgz", 1761 + "integrity": "sha512-6A+lDP8R6fFXc1Ip5tDepKq9MJW6oxbRlz1plvW52yacnpeDFXv5S5rDS0ax31AuSFUPlgzHymFSdjcylBwZ6w==", 1762 + "license": "MIT", 1763 + "dependencies": { 1764 + "@nuxt/kit": "^3.12.2", 1765 + "pathe": "^1.1.2", 1766 + "pkg-types": "^1.1.1", 1767 + "semver": "^7.6.2" 1768 + } 1769 + }, 1770 + "node_modules/@nuxtjs/tailwindcss": { 1771 + "version": "6.12.1", 1772 + "resolved": "https://registry.npmjs.org/@nuxtjs/tailwindcss/-/tailwindcss-6.12.1.tgz", 1773 + "integrity": "sha512-UKmaPRVpxlFqLorhL6neEba2tySlsj6w6yDb7jzS6A0AAjyBQ6k3BQqWO+AaTy2iQLX7eR+1yj3/w43HzY8RtA==", 1774 + "license": "MIT", 1775 + "dependencies": { 1776 + "@nuxt/kit": "^3.12.3", 1777 + "autoprefixer": "^10.4.19", 1778 + "consola": "^3.2.3", 1779 + "defu": "^6.1.4", 1780 + "h3": "^1.12.0", 1781 + "pathe": "^1.1.2", 1782 + "postcss": "^8.4.38", 1783 + "postcss-nesting": "^12.1.5", 1784 + "tailwind-config-viewer": "^2.0.4", 1785 + "tailwindcss": "~3.4.4", 1786 + "ufo": "^1.5.3", 1787 + "unctx": "^2.3.1" 1788 + } 1789 + }, 1790 + "node_modules/@parcel/watcher": { 1791 + "version": "2.4.1", 1792 + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", 1793 + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", 1794 + "license": "MIT", 1795 + "dependencies": { 1796 + "detect-libc": "^1.0.3", 1797 + "is-glob": "^4.0.3", 1798 + "micromatch": "^4.0.5", 1799 + "node-addon-api": "^7.0.0" 1800 + }, 1801 + "engines": { 1802 + "node": ">= 10.0.0" 1803 + }, 1804 + "funding": { 1805 + "type": "opencollective", 1806 + "url": "https://opencollective.com/parcel" 1807 + }, 1808 + "optionalDependencies": { 1809 + "@parcel/watcher-android-arm64": "2.4.1", 1810 + "@parcel/watcher-darwin-arm64": "2.4.1", 1811 + "@parcel/watcher-darwin-x64": "2.4.1", 1812 + "@parcel/watcher-freebsd-x64": "2.4.1", 1813 + "@parcel/watcher-linux-arm-glibc": "2.4.1", 1814 + "@parcel/watcher-linux-arm64-glibc": "2.4.1", 1815 + "@parcel/watcher-linux-arm64-musl": "2.4.1", 1816 + "@parcel/watcher-linux-x64-glibc": "2.4.1", 1817 + "@parcel/watcher-linux-x64-musl": "2.4.1", 1818 + "@parcel/watcher-win32-arm64": "2.4.1", 1819 + "@parcel/watcher-win32-ia32": "2.4.1", 1820 + "@parcel/watcher-win32-x64": "2.4.1" 1821 + } 1822 + }, 1823 + "node_modules/@parcel/watcher-android-arm64": { 1824 + "version": "2.4.1", 1825 + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", 1826 + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", 1827 + "cpu": [ 1828 + "arm64" 1829 + ], 1830 + "license": "MIT", 1831 + "optional": true, 1832 + "os": [ 1833 + "android" 1834 + ], 1835 + "engines": { 1836 + "node": ">= 10.0.0" 1837 + }, 1838 + "funding": { 1839 + "type": "opencollective", 1840 + "url": "https://opencollective.com/parcel" 1841 + } 1842 + }, 1843 + "node_modules/@parcel/watcher-darwin-arm64": { 1844 + "version": "2.4.1", 1845 + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", 1846 + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", 1847 + "cpu": [ 1848 + "arm64" 1849 + ], 1850 + "license": "MIT", 1851 + "optional": true, 1852 + "os": [ 1853 + "darwin" 1854 + ], 1855 + "engines": { 1856 + "node": ">= 10.0.0" 1857 + }, 1858 + "funding": { 1859 + "type": "opencollective", 1860 + "url": "https://opencollective.com/parcel" 1861 + } 1862 + }, 1863 + "node_modules/@parcel/watcher-darwin-x64": { 1864 + "version": "2.4.1", 1865 + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", 1866 + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", 1867 + "cpu": [ 1868 + "x64" 1869 + ], 1870 + "license": "MIT", 1871 + "optional": true, 1872 + "os": [ 1873 + "darwin" 1874 + ], 1875 + "engines": { 1876 + "node": ">= 10.0.0" 1877 + }, 1878 + "funding": { 1879 + "type": "opencollective", 1880 + "url": "https://opencollective.com/parcel" 1881 + } 1882 + }, 1883 + "node_modules/@parcel/watcher-freebsd-x64": { 1884 + "version": "2.4.1", 1885 + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", 1886 + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", 1887 + "cpu": [ 1888 + "x64" 1889 + ], 1890 + "license": "MIT", 1891 + "optional": true, 1892 + "os": [ 1893 + "freebsd" 1894 + ], 1895 + "engines": { 1896 + "node": ">= 10.0.0" 1897 + }, 1898 + "funding": { 1899 + "type": "opencollective", 1900 + "url": "https://opencollective.com/parcel" 1901 + } 1902 + }, 1903 + "node_modules/@parcel/watcher-linux-arm-glibc": { 1904 + "version": "2.4.1", 1905 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", 1906 + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", 1907 + "cpu": [ 1908 + "arm" 1909 + ], 1910 + "license": "MIT", 1911 + "optional": true, 1912 + "os": [ 1913 + "linux" 1914 + ], 1915 + "engines": { 1916 + "node": ">= 10.0.0" 1917 + }, 1918 + "funding": { 1919 + "type": "opencollective", 1920 + "url": "https://opencollective.com/parcel" 1921 + } 1922 + }, 1923 + "node_modules/@parcel/watcher-linux-arm64-glibc": { 1924 + "version": "2.4.1", 1925 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", 1926 + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", 1927 + "cpu": [ 1928 + "arm64" 1929 + ], 1930 + "license": "MIT", 1931 + "optional": true, 1932 + "os": [ 1933 + "linux" 1934 + ], 1935 + "engines": { 1936 + "node": ">= 10.0.0" 1937 + }, 1938 + "funding": { 1939 + "type": "opencollective", 1940 + "url": "https://opencollective.com/parcel" 1941 + } 1942 + }, 1943 + "node_modules/@parcel/watcher-linux-arm64-musl": { 1944 + "version": "2.4.1", 1945 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", 1946 + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", 1947 + "cpu": [ 1948 + "arm64" 1949 + ], 1950 + "license": "MIT", 1951 + "optional": true, 1952 + "os": [ 1953 + "linux" 1954 + ], 1955 + "engines": { 1956 + "node": ">= 10.0.0" 1957 + }, 1958 + "funding": { 1959 + "type": "opencollective", 1960 + "url": "https://opencollective.com/parcel" 1961 + } 1962 + }, 1963 + "node_modules/@parcel/watcher-linux-x64-glibc": { 1964 + "version": "2.4.1", 1965 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", 1966 + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", 1967 + "cpu": [ 1968 + "x64" 1969 + ], 1970 + "license": "MIT", 1971 + "optional": true, 1972 + "os": [ 1973 + "linux" 1974 + ], 1975 + "engines": { 1976 + "node": ">= 10.0.0" 1977 + }, 1978 + "funding": { 1979 + "type": "opencollective", 1980 + "url": "https://opencollective.com/parcel" 1981 + } 1982 + }, 1983 + "node_modules/@parcel/watcher-linux-x64-musl": { 1984 + "version": "2.4.1", 1985 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", 1986 + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", 1987 + "cpu": [ 1988 + "x64" 1989 + ], 1990 + "license": "MIT", 1991 + "optional": true, 1992 + "os": [ 1993 + "linux" 1994 + ], 1995 + "engines": { 1996 + "node": ">= 10.0.0" 1997 + }, 1998 + "funding": { 1999 + "type": "opencollective", 2000 + "url": "https://opencollective.com/parcel" 2001 + } 2002 + }, 2003 + "node_modules/@parcel/watcher-wasm": { 2004 + "version": "2.4.1", 2005 + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", 2006 + "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", 2007 + "bundleDependencies": [ 2008 + "napi-wasm" 2009 + ], 2010 + "license": "MIT", 2011 + "dependencies": { 2012 + "is-glob": "^4.0.3", 2013 + "micromatch": "^4.0.5", 2014 + "napi-wasm": "^1.1.0" 2015 + }, 2016 + "engines": { 2017 + "node": ">= 10.0.0" 2018 + }, 2019 + "funding": { 2020 + "type": "opencollective", 2021 + "url": "https://opencollective.com/parcel" 2022 + } 2023 + }, 2024 + "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { 2025 + "version": "1.1.0", 2026 + "inBundle": true, 2027 + "license": "MIT" 2028 + }, 2029 + "node_modules/@parcel/watcher-win32-arm64": { 2030 + "version": "2.4.1", 2031 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", 2032 + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", 2033 + "cpu": [ 2034 + "arm64" 2035 + ], 2036 + "license": "MIT", 2037 + "optional": true, 2038 + "os": [ 2039 + "win32" 2040 + ], 2041 + "engines": { 2042 + "node": ">= 10.0.0" 2043 + }, 2044 + "funding": { 2045 + "type": "opencollective", 2046 + "url": "https://opencollective.com/parcel" 2047 + } 2048 + }, 2049 + "node_modules/@parcel/watcher-win32-ia32": { 2050 + "version": "2.4.1", 2051 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", 2052 + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", 2053 + "cpu": [ 2054 + "ia32" 2055 + ], 2056 + "license": "MIT", 2057 + "optional": true, 2058 + "os": [ 2059 + "win32" 2060 + ], 2061 + "engines": { 2062 + "node": ">= 10.0.0" 2063 + }, 2064 + "funding": { 2065 + "type": "opencollective", 2066 + "url": "https://opencollective.com/parcel" 2067 + } 2068 + }, 2069 + "node_modules/@parcel/watcher-win32-x64": { 2070 + "version": "2.4.1", 2071 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", 2072 + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", 2073 + "cpu": [ 2074 + "x64" 2075 + ], 2076 + "license": "MIT", 2077 + "optional": true, 2078 + "os": [ 2079 + "win32" 2080 + ], 2081 + "engines": { 2082 + "node": ">= 10.0.0" 2083 + }, 2084 + "funding": { 2085 + "type": "opencollective", 2086 + "url": "https://opencollective.com/parcel" 2087 + } 2088 + }, 2089 + "node_modules/@parcel/watcher/node_modules/detect-libc": { 2090 + "version": "1.0.3", 2091 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 2092 + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", 2093 + "license": "Apache-2.0", 2094 + "bin": { 2095 + "detect-libc": "bin/detect-libc.js" 2096 + }, 2097 + "engines": { 2098 + "node": ">=0.10" 2099 + } 2100 + }, 2101 + "node_modules/@pkgjs/parseargs": { 2102 + "version": "0.11.0", 2103 + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 2104 + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 2105 + "license": "MIT", 2106 + "optional": true, 2107 + "engines": { 2108 + "node": ">=14" 2109 + } 2110 + }, 2111 + "node_modules/@polka/url": { 2112 + "version": "1.0.0-next.25", 2113 + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", 2114 + "integrity": "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==", 2115 + "license": "MIT" 2116 + }, 2117 + "node_modules/@popperjs/core": { 2118 + "version": "2.11.8", 2119 + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", 2120 + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", 2121 + "license": "MIT", 2122 + "funding": { 2123 + "type": "opencollective", 2124 + "url": "https://opencollective.com/popperjs" 2125 + } 2126 + }, 2127 + "node_modules/@rollup/plugin-alias": { 2128 + "version": "5.1.0", 2129 + "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz", 2130 + "integrity": "sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==", 2131 + "license": "MIT", 2132 + "dependencies": { 2133 + "slash": "^4.0.0" 2134 + }, 2135 + "engines": { 2136 + "node": ">=14.0.0" 2137 + }, 2138 + "peerDependencies": { 2139 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2140 + }, 2141 + "peerDependenciesMeta": { 2142 + "rollup": { 2143 + "optional": true 2144 + } 2145 + } 2146 + }, 2147 + "node_modules/@rollup/plugin-alias/node_modules/slash": { 2148 + "version": "4.0.0", 2149 + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 2150 + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 2151 + "license": "MIT", 2152 + "engines": { 2153 + "node": ">=12" 2154 + }, 2155 + "funding": { 2156 + "url": "https://github.com/sponsors/sindresorhus" 2157 + } 2158 + }, 2159 + "node_modules/@rollup/plugin-commonjs": { 2160 + "version": "25.0.8", 2161 + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz", 2162 + "integrity": "sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==", 2163 + "license": "MIT", 2164 + "dependencies": { 2165 + "@rollup/pluginutils": "^5.0.1", 2166 + "commondir": "^1.0.1", 2167 + "estree-walker": "^2.0.2", 2168 + "glob": "^8.0.3", 2169 + "is-reference": "1.2.1", 2170 + "magic-string": "^0.30.3" 2171 + }, 2172 + "engines": { 2173 + "node": ">=14.0.0" 2174 + }, 2175 + "peerDependencies": { 2176 + "rollup": "^2.68.0||^3.0.0||^4.0.0" 2177 + }, 2178 + "peerDependenciesMeta": { 2179 + "rollup": { 2180 + "optional": true 2181 + } 2182 + } 2183 + }, 2184 + "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { 2185 + "version": "2.0.2", 2186 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2187 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2188 + "license": "MIT" 2189 + }, 2190 + "node_modules/@rollup/plugin-inject": { 2191 + "version": "5.0.5", 2192 + "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz", 2193 + "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==", 2194 + "license": "MIT", 2195 + "dependencies": { 2196 + "@rollup/pluginutils": "^5.0.1", 2197 + "estree-walker": "^2.0.2", 2198 + "magic-string": "^0.30.3" 2199 + }, 2200 + "engines": { 2201 + "node": ">=14.0.0" 2202 + }, 2203 + "peerDependencies": { 2204 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2205 + }, 2206 + "peerDependenciesMeta": { 2207 + "rollup": { 2208 + "optional": true 2209 + } 2210 + } 2211 + }, 2212 + "node_modules/@rollup/plugin-inject/node_modules/estree-walker": { 2213 + "version": "2.0.2", 2214 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2215 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2216 + "license": "MIT" 2217 + }, 2218 + "node_modules/@rollup/plugin-json": { 2219 + "version": "6.1.0", 2220 + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", 2221 + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", 2222 + "license": "MIT", 2223 + "dependencies": { 2224 + "@rollup/pluginutils": "^5.1.0" 2225 + }, 2226 + "engines": { 2227 + "node": ">=14.0.0" 2228 + }, 2229 + "peerDependencies": { 2230 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2231 + }, 2232 + "peerDependenciesMeta": { 2233 + "rollup": { 2234 + "optional": true 2235 + } 2236 + } 2237 + }, 2238 + "node_modules/@rollup/plugin-node-resolve": { 2239 + "version": "15.2.3", 2240 + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", 2241 + "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", 2242 + "license": "MIT", 2243 + "dependencies": { 2244 + "@rollup/pluginutils": "^5.0.1", 2245 + "@types/resolve": "1.20.2", 2246 + "deepmerge": "^4.2.2", 2247 + "is-builtin-module": "^3.2.1", 2248 + "is-module": "^1.0.0", 2249 + "resolve": "^1.22.1" 2250 + }, 2251 + "engines": { 2252 + "node": ">=14.0.0" 2253 + }, 2254 + "peerDependencies": { 2255 + "rollup": "^2.78.0||^3.0.0||^4.0.0" 2256 + }, 2257 + "peerDependenciesMeta": { 2258 + "rollup": { 2259 + "optional": true 2260 + } 2261 + } 2262 + }, 2263 + "node_modules/@rollup/plugin-replace": { 2264 + "version": "5.0.7", 2265 + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz", 2266 + "integrity": "sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==", 2267 + "license": "MIT", 2268 + "dependencies": { 2269 + "@rollup/pluginutils": "^5.0.1", 2270 + "magic-string": "^0.30.3" 2271 + }, 2272 + "engines": { 2273 + "node": ">=14.0.0" 2274 + }, 2275 + "peerDependencies": { 2276 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2277 + }, 2278 + "peerDependenciesMeta": { 2279 + "rollup": { 2280 + "optional": true 2281 + } 2282 + } 2283 + }, 2284 + "node_modules/@rollup/plugin-terser": { 2285 + "version": "0.4.4", 2286 + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", 2287 + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", 2288 + "license": "MIT", 2289 + "dependencies": { 2290 + "serialize-javascript": "^6.0.1", 2291 + "smob": "^1.0.0", 2292 + "terser": "^5.17.4" 2293 + }, 2294 + "engines": { 2295 + "node": ">=14.0.0" 2296 + }, 2297 + "peerDependencies": { 2298 + "rollup": "^2.0.0||^3.0.0||^4.0.0" 2299 + }, 2300 + "peerDependenciesMeta": { 2301 + "rollup": { 2302 + "optional": true 2303 + } 2304 + } 2305 + }, 2306 + "node_modules/@rollup/pluginutils": { 2307 + "version": "5.1.0", 2308 + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", 2309 + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", 2310 + "license": "MIT", 2311 + "dependencies": { 2312 + "@types/estree": "^1.0.0", 2313 + "estree-walker": "^2.0.2", 2314 + "picomatch": "^2.3.1" 2315 + }, 2316 + "engines": { 2317 + "node": ">=14.0.0" 2318 + }, 2319 + "peerDependencies": { 2320 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2321 + }, 2322 + "peerDependenciesMeta": { 2323 + "rollup": { 2324 + "optional": true 2325 + } 2326 + } 2327 + }, 2328 + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 2329 + "version": "2.0.2", 2330 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2331 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2332 + "license": "MIT" 2333 + }, 2334 + "node_modules/@rollup/rollup-android-arm-eabi": { 2335 + "version": "4.20.0", 2336 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.20.0.tgz", 2337 + "integrity": "sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==", 2338 + "cpu": [ 2339 + "arm" 2340 + ], 2341 + "license": "MIT", 2342 + "optional": true, 2343 + "os": [ 2344 + "android" 2345 + ] 2346 + }, 2347 + "node_modules/@rollup/rollup-android-arm64": { 2348 + "version": "4.20.0", 2349 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.20.0.tgz", 2350 + "integrity": "sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==", 2351 + "cpu": [ 2352 + "arm64" 2353 + ], 2354 + "license": "MIT", 2355 + "optional": true, 2356 + "os": [ 2357 + "android" 2358 + ] 2359 + }, 2360 + "node_modules/@rollup/rollup-darwin-arm64": { 2361 + "version": "4.20.0", 2362 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.20.0.tgz", 2363 + "integrity": "sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==", 2364 + "cpu": [ 2365 + "arm64" 2366 + ], 2367 + "license": "MIT", 2368 + "optional": true, 2369 + "os": [ 2370 + "darwin" 2371 + ] 2372 + }, 2373 + "node_modules/@rollup/rollup-darwin-x64": { 2374 + "version": "4.20.0", 2375 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.20.0.tgz", 2376 + "integrity": "sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==", 2377 + "cpu": [ 2378 + "x64" 2379 + ], 2380 + "license": "MIT", 2381 + "optional": true, 2382 + "os": [ 2383 + "darwin" 2384 + ] 2385 + }, 2386 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 2387 + "version": "4.20.0", 2388 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.20.0.tgz", 2389 + "integrity": "sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==", 2390 + "cpu": [ 2391 + "arm" 2392 + ], 2393 + "license": "MIT", 2394 + "optional": true, 2395 + "os": [ 2396 + "linux" 2397 + ] 2398 + }, 2399 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 2400 + "version": "4.20.0", 2401 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.20.0.tgz", 2402 + "integrity": "sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==", 2403 + "cpu": [ 2404 + "arm" 2405 + ], 2406 + "license": "MIT", 2407 + "optional": true, 2408 + "os": [ 2409 + "linux" 2410 + ] 2411 + }, 2412 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 2413 + "version": "4.20.0", 2414 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.20.0.tgz", 2415 + "integrity": "sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==", 2416 + "cpu": [ 2417 + "arm64" 2418 + ], 2419 + "license": "MIT", 2420 + "optional": true, 2421 + "os": [ 2422 + "linux" 2423 + ] 2424 + }, 2425 + "node_modules/@rollup/rollup-linux-arm64-musl": { 2426 + "version": "4.20.0", 2427 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.20.0.tgz", 2428 + "integrity": "sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==", 2429 + "cpu": [ 2430 + "arm64" 2431 + ], 2432 + "license": "MIT", 2433 + "optional": true, 2434 + "os": [ 2435 + "linux" 2436 + ] 2437 + }, 2438 + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 2439 + "version": "4.20.0", 2440 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.20.0.tgz", 2441 + "integrity": "sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==", 2442 + "cpu": [ 2443 + "ppc64" 2444 + ], 2445 + "license": "MIT", 2446 + "optional": true, 2447 + "os": [ 2448 + "linux" 2449 + ] 2450 + }, 2451 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 2452 + "version": "4.20.0", 2453 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.20.0.tgz", 2454 + "integrity": "sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==", 2455 + "cpu": [ 2456 + "riscv64" 2457 + ], 2458 + "license": "MIT", 2459 + "optional": true, 2460 + "os": [ 2461 + "linux" 2462 + ] 2463 + }, 2464 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 2465 + "version": "4.20.0", 2466 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.20.0.tgz", 2467 + "integrity": "sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==", 2468 + "cpu": [ 2469 + "s390x" 2470 + ], 2471 + "license": "MIT", 2472 + "optional": true, 2473 + "os": [ 2474 + "linux" 2475 + ] 2476 + }, 2477 + "node_modules/@rollup/rollup-linux-x64-gnu": { 2478 + "version": "4.20.0", 2479 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.20.0.tgz", 2480 + "integrity": "sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==", 2481 + "cpu": [ 2482 + "x64" 2483 + ], 2484 + "license": "MIT", 2485 + "optional": true, 2486 + "os": [ 2487 + "linux" 2488 + ] 2489 + }, 2490 + "node_modules/@rollup/rollup-linux-x64-musl": { 2491 + "version": "4.20.0", 2492 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.20.0.tgz", 2493 + "integrity": "sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==", 2494 + "cpu": [ 2495 + "x64" 2496 + ], 2497 + "license": "MIT", 2498 + "optional": true, 2499 + "os": [ 2500 + "linux" 2501 + ] 2502 + }, 2503 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 2504 + "version": "4.20.0", 2505 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.20.0.tgz", 2506 + "integrity": "sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==", 2507 + "cpu": [ 2508 + "arm64" 2509 + ], 2510 + "license": "MIT", 2511 + "optional": true, 2512 + "os": [ 2513 + "win32" 2514 + ] 2515 + }, 2516 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 2517 + "version": "4.20.0", 2518 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.20.0.tgz", 2519 + "integrity": "sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==", 2520 + "cpu": [ 2521 + "ia32" 2522 + ], 2523 + "license": "MIT", 2524 + "optional": true, 2525 + "os": [ 2526 + "win32" 2527 + ] 2528 + }, 2529 + "node_modules/@rollup/rollup-win32-x64-msvc": { 2530 + "version": "4.20.0", 2531 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.20.0.tgz", 2532 + "integrity": "sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==", 2533 + "cpu": [ 2534 + "x64" 2535 + ], 2536 + "license": "MIT", 2537 + "optional": true, 2538 + "os": [ 2539 + "win32" 2540 + ] 2541 + }, 2542 + "node_modules/@sindresorhus/merge-streams": { 2543 + "version": "2.3.0", 2544 + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", 2545 + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", 2546 + "license": "MIT", 2547 + "engines": { 2548 + "node": ">=18" 2549 + }, 2550 + "funding": { 2551 + "url": "https://github.com/sponsors/sindresorhus" 2552 + } 2553 + }, 2554 + "node_modules/@tailwindcss/aspect-ratio": { 2555 + "version": "0.4.2", 2556 + "resolved": "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", 2557 + "integrity": "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==", 2558 + "license": "MIT", 2559 + "peerDependencies": { 2560 + "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" 2561 + } 2562 + }, 2563 + "node_modules/@tailwindcss/container-queries": { 2564 + "version": "0.1.1", 2565 + "resolved": "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.1.tgz", 2566 + "integrity": "sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==", 2567 + "license": "MIT", 2568 + "peerDependencies": { 2569 + "tailwindcss": ">=3.2.0" 2570 + } 2571 + }, 2572 + "node_modules/@tailwindcss/forms": { 2573 + "version": "0.5.7", 2574 + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", 2575 + "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", 2576 + "license": "MIT", 2577 + "dependencies": { 2578 + "mini-svg-data-uri": "^1.2.3" 2579 + }, 2580 + "peerDependencies": { 2581 + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" 2582 + } 2583 + }, 2584 + "node_modules/@tailwindcss/typography": { 2585 + "version": "0.5.14", 2586 + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.14.tgz", 2587 + "integrity": "sha512-ZvOCjUbsJBjL9CxQBn+VEnFpouzuKhxh2dH8xMIWHILL+HfOYtlAkWcyoon8LlzE53d2Yo6YO6pahKKNW3q1YQ==", 2588 + "license": "MIT", 2589 + "dependencies": { 2590 + "lodash.castarray": "^4.4.0", 2591 + "lodash.isplainobject": "^4.0.6", 2592 + "lodash.merge": "^4.6.2", 2593 + "postcss-selector-parser": "6.0.10" 2594 + }, 2595 + "peerDependencies": { 2596 + "tailwindcss": ">=3.0.0 || insiders" 2597 + } 2598 + }, 2599 + "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": { 2600 + "version": "6.0.10", 2601 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", 2602 + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", 2603 + "license": "MIT", 2604 + "dependencies": { 2605 + "cssesc": "^3.0.0", 2606 + "util-deprecate": "^1.0.2" 2607 + }, 2608 + "engines": { 2609 + "node": ">=4" 2610 + } 2611 + }, 2612 + "node_modules/@tanstack/virtual-core": { 2613 + "version": "3.8.4", 2614 + "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.8.4.tgz", 2615 + "integrity": "sha512-iO5Ujgw3O1yIxWDe9FgUPNkGjyT657b1WNX52u+Wv1DyBFEpdCdGkuVaky0M3hHFqNWjAmHWTn4wgj9rTr7ZQg==", 2616 + "license": "MIT", 2617 + "funding": { 2618 + "type": "github", 2619 + "url": "https://github.com/sponsors/tannerlinsley" 2620 + } 2621 + }, 2622 + "node_modules/@tanstack/vue-virtual": { 2623 + "version": "3.8.5", 2624 + "resolved": "https://registry.npmjs.org/@tanstack/vue-virtual/-/vue-virtual-3.8.5.tgz", 2625 + "integrity": "sha512-JBHw3xFUslYgrbvNlCYtTWwFo8zjzRs7c2rs6B4JKFXWyP5yHuoeivgQgeZ34t6O6lJTNqc/K4ccmmcmKqpMPA==", 2626 + "license": "MIT", 2627 + "dependencies": { 2628 + "@tanstack/virtual-core": "3.8.4" 2629 + }, 2630 + "funding": { 2631 + "type": "github", 2632 + "url": "https://github.com/sponsors/tannerlinsley" 2633 + }, 2634 + "peerDependencies": { 2635 + "vue": "^2.7.0 || ^3.0.0" 2636 + } 2637 + }, 2638 + "node_modules/@trysound/sax": { 2639 + "version": "0.2.0", 2640 + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", 2641 + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", 2642 + "license": "ISC", 2643 + "engines": { 2644 + "node": ">=10.13.0" 2645 + } 2646 + }, 2647 + "node_modules/@types/estree": { 2648 + "version": "1.0.5", 2649 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 2650 + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 2651 + "license": "MIT" 2652 + }, 2653 + "node_modules/@types/http-proxy": { 2654 + "version": "1.17.15", 2655 + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", 2656 + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", 2657 + "license": "MIT", 2658 + "dependencies": { 2659 + "@types/node": "*" 2660 + } 2661 + }, 2662 + "node_modules/@types/node": { 2663 + "version": "22.1.0", 2664 + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.1.0.tgz", 2665 + "integrity": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==", 2666 + "license": "MIT", 2667 + "dependencies": { 2668 + "undici-types": "~6.13.0" 2669 + } 2670 + }, 2671 + "node_modules/@types/resolve": { 2672 + "version": "1.20.2", 2673 + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", 2674 + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", 2675 + "license": "MIT" 2676 + }, 2677 + "node_modules/@types/web-bluetooth": { 2678 + "version": "0.0.20", 2679 + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", 2680 + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", 2681 + "license": "MIT" 2682 + }, 2683 + "node_modules/@unhead/dom": { 2684 + "version": "1.9.16", 2685 + "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.9.16.tgz", 2686 + "integrity": "sha512-aZIAnnc89Csi1vV4mtlHYI765B7m1yuaXUuQiYHwr6glE9FLyy2X87CzEci4yPH/YbkKm0bGQRfcxXq6Eq0W7g==", 2687 + "license": "MIT", 2688 + "dependencies": { 2689 + "@unhead/schema": "1.9.16", 2690 + "@unhead/shared": "1.9.16" 2691 + }, 2692 + "funding": { 2693 + "url": "https://github.com/sponsors/harlan-zw" 2694 + } 2695 + }, 2696 + "node_modules/@unhead/schema": { 2697 + "version": "1.9.16", 2698 + "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.9.16.tgz", 2699 + "integrity": "sha512-V2BshX+I6D2wN4ys5so8RQDUgsggsxW9FVBiuQi4h8oPWtHclogxzDiHa5BH2TgvNIoUxLnLYNAShMGipmVuUw==", 2700 + "license": "MIT", 2701 + "dependencies": { 2702 + "hookable": "^5.5.3", 2703 + "zhead": "^2.2.4" 2704 + }, 2705 + "funding": { 2706 + "url": "https://github.com/sponsors/harlan-zw" 2707 + } 2708 + }, 2709 + "node_modules/@unhead/shared": { 2710 + "version": "1.9.16", 2711 + "resolved": "https://registry.npmjs.org/@unhead/shared/-/shared-1.9.16.tgz", 2712 + "integrity": "sha512-pfJnArULCY+GBr7OtYyyxihRiQLkT31TpyK6nUKIwyax4oNOGyhNfk0RFzNq16BwLg60d1lrc5bd5mZGbfClMA==", 2713 + "license": "MIT", 2714 + "dependencies": { 2715 + "@unhead/schema": "1.9.16" 2716 + }, 2717 + "funding": { 2718 + "url": "https://github.com/sponsors/harlan-zw" 2719 + } 2720 + }, 2721 + "node_modules/@unhead/ssr": { 2722 + "version": "1.9.16", 2723 + "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.9.16.tgz", 2724 + "integrity": "sha512-8R1qt4VAemX4Iun/l7DnUBJqmxA/KaUSc2+/hRYPJYOopXdCWkoaxC1K1ROX2vbRF7qmjdU5ik/a27kSPN94gg==", 2725 + "license": "MIT", 2726 + "dependencies": { 2727 + "@unhead/schema": "1.9.16", 2728 + "@unhead/shared": "1.9.16" 2729 + }, 2730 + "funding": { 2731 + "url": "https://github.com/sponsors/harlan-zw" 2732 + } 2733 + }, 2734 + "node_modules/@unhead/vue": { 2735 + "version": "1.9.16", 2736 + "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.9.16.tgz", 2737 + "integrity": "sha512-kpMWWwm8cOwo4gw4An43pz30l2CqNtmJpX5Xsu79rwf6Viq8jHAjk6BGqyKy220M2bpa0Va4fnR532SgGO1YgQ==", 2738 + "license": "MIT", 2739 + "dependencies": { 2740 + "@unhead/schema": "1.9.16", 2741 + "@unhead/shared": "1.9.16", 2742 + "hookable": "^5.5.3", 2743 + "unhead": "1.9.16" 2744 + }, 2745 + "funding": { 2746 + "url": "https://github.com/sponsors/harlan-zw" 2747 + }, 2748 + "peerDependencies": { 2749 + "vue": ">=2.7 || >=3" 2750 + } 2751 + }, 2752 + "node_modules/@vercel/nft": { 2753 + "version": "0.26.5", 2754 + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.5.tgz", 2755 + "integrity": "sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==", 2756 + "license": "MIT", 2757 + "dependencies": { 2758 + "@mapbox/node-pre-gyp": "^1.0.5", 2759 + "@rollup/pluginutils": "^4.0.0", 2760 + "acorn": "^8.6.0", 2761 + "acorn-import-attributes": "^1.9.2", 2762 + "async-sema": "^3.1.1", 2763 + "bindings": "^1.4.0", 2764 + "estree-walker": "2.0.2", 2765 + "glob": "^7.1.3", 2766 + "graceful-fs": "^4.2.9", 2767 + "micromatch": "^4.0.2", 2768 + "node-gyp-build": "^4.2.2", 2769 + "resolve-from": "^5.0.0" 2770 + }, 2771 + "bin": { 2772 + "nft": "out/cli.js" 2773 + }, 2774 + "engines": { 2775 + "node": ">=16" 2776 + } 2777 + }, 2778 + "node_modules/@vercel/nft/node_modules/@rollup/pluginutils": { 2779 + "version": "4.2.1", 2780 + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", 2781 + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", 2782 + "license": "MIT", 2783 + "dependencies": { 2784 + "estree-walker": "^2.0.1", 2785 + "picomatch": "^2.2.2" 2786 + }, 2787 + "engines": { 2788 + "node": ">= 8.0.0" 2789 + } 2790 + }, 2791 + "node_modules/@vercel/nft/node_modules/brace-expansion": { 2792 + "version": "1.1.11", 2793 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2794 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2795 + "license": "MIT", 2796 + "dependencies": { 2797 + "balanced-match": "^1.0.0", 2798 + "concat-map": "0.0.1" 2799 + } 2800 + }, 2801 + "node_modules/@vercel/nft/node_modules/estree-walker": { 2802 + "version": "2.0.2", 2803 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2804 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2805 + "license": "MIT" 2806 + }, 2807 + "node_modules/@vercel/nft/node_modules/glob": { 2808 + "version": "7.2.3", 2809 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2810 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2811 + "deprecated": "Glob versions prior to v9 are no longer supported", 2812 + "license": "ISC", 2813 + "dependencies": { 2814 + "fs.realpath": "^1.0.0", 2815 + "inflight": "^1.0.4", 2816 + "inherits": "2", 2817 + "minimatch": "^3.1.1", 2818 + "once": "^1.3.0", 2819 + "path-is-absolute": "^1.0.0" 2820 + }, 2821 + "engines": { 2822 + "node": "*" 2823 + }, 2824 + "funding": { 2825 + "url": "https://github.com/sponsors/isaacs" 2826 + } 2827 + }, 2828 + "node_modules/@vercel/nft/node_modules/minimatch": { 2829 + "version": "3.1.2", 2830 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2831 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2832 + "license": "ISC", 2833 + "dependencies": { 2834 + "brace-expansion": "^1.1.7" 2835 + }, 2836 + "engines": { 2837 + "node": "*" 2838 + } 2839 + }, 2840 + "node_modules/@vitejs/plugin-vue": { 2841 + "version": "5.1.2", 2842 + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz", 2843 + "integrity": "sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==", 2844 + "license": "MIT", 2845 + "engines": { 2846 + "node": "^18.0.0 || >=20.0.0" 2847 + }, 2848 + "peerDependencies": { 2849 + "vite": "^5.0.0", 2850 + "vue": "^3.2.25" 2851 + } 2852 + }, 2853 + "node_modules/@vitejs/plugin-vue-jsx": { 2854 + "version": "4.0.0", 2855 + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.0.tgz", 2856 + "integrity": "sha512-A+6wL2AdQhDsLsDnY+2v4rRDI1HLJGIMc97a8FURO9tqKsH5QvjWrzsa5DH3NlZsM742W2wODl2fF+bfcTWtXw==", 2857 + "license": "MIT", 2858 + "dependencies": { 2859 + "@babel/core": "^7.24.6", 2860 + "@babel/plugin-transform-typescript": "^7.24.6", 2861 + "@vue/babel-plugin-jsx": "^1.2.2" 2862 + }, 2863 + "engines": { 2864 + "node": "^18.0.0 || >=20.0.0" 2865 + }, 2866 + "peerDependencies": { 2867 + "vite": "^5.0.0", 2868 + "vue": "^3.0.0" 2869 + } 2870 + }, 2871 + "node_modules/@vue-macros/common": { 2872 + "version": "1.12.2", 2873 + "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.12.2.tgz", 2874 + "integrity": "sha512-+NGfhrPvPNOb3Wg9PNPEXPe0HTXmVe6XJawL1gi3cIjOSGIhpOdvmMT2cRuWb265IpA/PeL5Sqo0+DQnEDxLvw==", 2875 + "license": "MIT", 2876 + "dependencies": { 2877 + "@babel/types": "^7.25.0", 2878 + "@rollup/pluginutils": "^5.1.0", 2879 + "@vue/compiler-sfc": "^3.4.34", 2880 + "ast-kit": "^1.0.1", 2881 + "local-pkg": "^0.5.0", 2882 + "magic-string-ast": "^0.6.2" 2883 + }, 2884 + "engines": { 2885 + "node": ">=16.14.0" 2886 + }, 2887 + "peerDependencies": { 2888 + "vue": "^2.7.0 || ^3.2.25" 2889 + }, 2890 + "peerDependenciesMeta": { 2891 + "vue": { 2892 + "optional": true 2893 + } 2894 + } 2895 + }, 2896 + "node_modules/@vue/babel-helper-vue-transform-on": { 2897 + "version": "1.2.2", 2898 + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz", 2899 + "integrity": "sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==", 2900 + "license": "MIT" 2901 + }, 2902 + "node_modules/@vue/babel-plugin-jsx": { 2903 + "version": "1.2.2", 2904 + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz", 2905 + "integrity": "sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==", 2906 + "license": "MIT", 2907 + "dependencies": { 2908 + "@babel/helper-module-imports": "~7.22.15", 2909 + "@babel/helper-plugin-utils": "^7.22.5", 2910 + "@babel/plugin-syntax-jsx": "^7.23.3", 2911 + "@babel/template": "^7.23.9", 2912 + "@babel/traverse": "^7.23.9", 2913 + "@babel/types": "^7.23.9", 2914 + "@vue/babel-helper-vue-transform-on": "1.2.2", 2915 + "@vue/babel-plugin-resolve-type": "1.2.2", 2916 + "camelcase": "^6.3.0", 2917 + "html-tags": "^3.3.1", 2918 + "svg-tags": "^1.0.0" 2919 + }, 2920 + "peerDependencies": { 2921 + "@babel/core": "^7.0.0-0" 2922 + }, 2923 + "peerDependenciesMeta": { 2924 + "@babel/core": { 2925 + "optional": true 2926 + } 2927 + } 2928 + }, 2929 + "node_modules/@vue/babel-plugin-jsx/node_modules/@babel/helper-module-imports": { 2930 + "version": "7.22.15", 2931 + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", 2932 + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", 2933 + "license": "MIT", 2934 + "dependencies": { 2935 + "@babel/types": "^7.22.15" 2936 + }, 2937 + "engines": { 2938 + "node": ">=6.9.0" 2939 + } 2940 + }, 2941 + "node_modules/@vue/babel-plugin-resolve-type": { 2942 + "version": "1.2.2", 2943 + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz", 2944 + "integrity": "sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==", 2945 + "license": "MIT", 2946 + "dependencies": { 2947 + "@babel/code-frame": "^7.23.5", 2948 + "@babel/helper-module-imports": "~7.22.15", 2949 + "@babel/helper-plugin-utils": "^7.22.5", 2950 + "@babel/parser": "^7.23.9", 2951 + "@vue/compiler-sfc": "^3.4.15" 2952 + }, 2953 + "peerDependencies": { 2954 + "@babel/core": "^7.0.0-0" 2955 + } 2956 + }, 2957 + "node_modules/@vue/babel-plugin-resolve-type/node_modules/@babel/helper-module-imports": { 2958 + "version": "7.22.15", 2959 + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", 2960 + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", 2961 + "license": "MIT", 2962 + "dependencies": { 2963 + "@babel/types": "^7.22.15" 2964 + }, 2965 + "engines": { 2966 + "node": ">=6.9.0" 2967 + } 2968 + }, 2969 + "node_modules/@vue/compiler-core": { 2970 + "version": "3.4.37", 2971 + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.37.tgz", 2972 + "integrity": "sha512-ZDDT/KiLKuCRXyzWecNzC5vTcubGz4LECAtfGPENpo0nrmqJHwuWtRLxk/Sb9RAKtR9iFflFycbkjkY+W/PZUQ==", 2973 + "license": "MIT", 2974 + "dependencies": { 2975 + "@babel/parser": "^7.24.7", 2976 + "@vue/shared": "3.4.37", 2977 + "entities": "^5.0.0", 2978 + "estree-walker": "^2.0.2", 2979 + "source-map-js": "^1.2.0" 2980 + } 2981 + }, 2982 + "node_modules/@vue/compiler-core/node_modules/estree-walker": { 2983 + "version": "2.0.2", 2984 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2985 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2986 + "license": "MIT" 2987 + }, 2988 + "node_modules/@vue/compiler-dom": { 2989 + "version": "3.4.37", 2990 + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.37.tgz", 2991 + "integrity": "sha512-rIiSmL3YrntvgYV84rekAtU/xfogMUJIclUMeIKEtVBFngOL3IeZHhsH3UaFEgB5iFGpj6IW+8YuM/2Up+vVag==", 2992 + "license": "MIT", 2993 + "dependencies": { 2994 + "@vue/compiler-core": "3.4.37", 2995 + "@vue/shared": "3.4.37" 2996 + } 2997 + }, 2998 + "node_modules/@vue/compiler-sfc": { 2999 + "version": "3.4.37", 3000 + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.37.tgz", 3001 + "integrity": "sha512-vCfetdas40Wk9aK/WWf8XcVESffsbNkBQwS5t13Y/PcfqKfIwJX2gF+82th6dOpnpbptNMlMjAny80li7TaCIg==", 3002 + "license": "MIT", 3003 + "dependencies": { 3004 + "@babel/parser": "^7.24.7", 3005 + "@vue/compiler-core": "3.4.37", 3006 + "@vue/compiler-dom": "3.4.37", 3007 + "@vue/compiler-ssr": "3.4.37", 3008 + "@vue/shared": "3.4.37", 3009 + "estree-walker": "^2.0.2", 3010 + "magic-string": "^0.30.10", 3011 + "postcss": "^8.4.40", 3012 + "source-map-js": "^1.2.0" 3013 + } 3014 + }, 3015 + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { 3016 + "version": "2.0.2", 3017 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 3018 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 3019 + "license": "MIT" 3020 + }, 3021 + "node_modules/@vue/compiler-ssr": { 3022 + "version": "3.4.37", 3023 + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.37.tgz", 3024 + "integrity": "sha512-TyAgYBWrHlFrt4qpdACh8e9Ms6C/AZQ6A6xLJaWrCL8GCX5DxMzxyeFAEMfU/VFr4tylHm+a2NpfJpcd7+20XA==", 3025 + "license": "MIT", 3026 + "dependencies": { 3027 + "@vue/compiler-dom": "3.4.37", 3028 + "@vue/shared": "3.4.37" 3029 + } 3030 + }, 3031 + "node_modules/@vue/devtools-api": { 3032 + "version": "6.6.3", 3033 + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.3.tgz", 3034 + "integrity": "sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==", 3035 + "license": "MIT" 3036 + }, 3037 + "node_modules/@vue/devtools-core": { 3038 + "version": "7.3.3", 3039 + "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.3.3.tgz", 3040 + "integrity": "sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==", 3041 + "license": "MIT", 3042 + "dependencies": { 3043 + "@vue/devtools-kit": "^7.3.3", 3044 + "@vue/devtools-shared": "^7.3.3", 3045 + "mitt": "^3.0.1", 3046 + "nanoid": "^3.3.4", 3047 + "pathe": "^1.1.2", 3048 + "vite-hot-client": "^0.2.3" 3049 + } 3050 + }, 3051 + "node_modules/@vue/devtools-core/node_modules/nanoid": { 3052 + "version": "3.3.7", 3053 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 3054 + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 3055 + "funding": [ 3056 + { 3057 + "type": "github", 3058 + "url": "https://github.com/sponsors/ai" 3059 + } 3060 + ], 3061 + "license": "MIT", 3062 + "bin": { 3063 + "nanoid": "bin/nanoid.cjs" 3064 + }, 3065 + "engines": { 3066 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3067 + } 3068 + }, 3069 + "node_modules/@vue/devtools-kit": { 3070 + "version": "7.3.3", 3071 + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.3.3.tgz", 3072 + "integrity": "sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==", 3073 + "license": "MIT", 3074 + "dependencies": { 3075 + "@vue/devtools-shared": "^7.3.3", 3076 + "birpc": "^0.2.17", 3077 + "hookable": "^5.5.3", 3078 + "mitt": "^3.0.1", 3079 + "perfect-debounce": "^1.0.0", 3080 + "speakingurl": "^14.0.1", 3081 + "superjson": "^2.2.1" 3082 + } 3083 + }, 3084 + "node_modules/@vue/devtools-shared": { 3085 + "version": "7.3.7", 3086 + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.3.7.tgz", 3087 + "integrity": "sha512-M9EU1/bWi5GNS/+IZrAhwGOVZmUTN4MH22Hvh35nUZZg9AZP2R2OhfCb+MG4EtAsrUEYlu3R43/SIj3G7EZYtQ==", 3088 + "license": "MIT", 3089 + "dependencies": { 3090 + "rfdc": "^1.4.1" 3091 + } 3092 + }, 3093 + "node_modules/@vue/reactivity": { 3094 + "version": "3.4.37", 3095 + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.37.tgz", 3096 + "integrity": "sha512-UmdKXGx0BZ5kkxPqQr3PK3tElz6adTey4307NzZ3whZu19i5VavYal7u2FfOmAzlcDVgE8+X0HZ2LxLb/jgbYw==", 3097 + "license": "MIT", 3098 + "dependencies": { 3099 + "@vue/shared": "3.4.37" 3100 + } 3101 + }, 3102 + "node_modules/@vue/runtime-core": { 3103 + "version": "3.4.37", 3104 + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.37.tgz", 3105 + "integrity": "sha512-MNjrVoLV/sirHZoD7QAilU1Ifs7m/KJv4/84QVbE6nyAZGQNVOa1HGxaOzp9YqCG+GpLt1hNDC4RbH+KtanV7w==", 3106 + "license": "MIT", 3107 + "dependencies": { 3108 + "@vue/reactivity": "3.4.37", 3109 + "@vue/shared": "3.4.37" 3110 + } 3111 + }, 3112 + "node_modules/@vue/runtime-dom": { 3113 + "version": "3.4.37", 3114 + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.37.tgz", 3115 + "integrity": "sha512-Mg2EwgGZqtwKrqdL/FKMF2NEaOHuH+Ks9TQn3DHKyX//hQTYOun+7Tqp1eo0P4Ds+SjltZshOSRq6VsU0baaNg==", 3116 + "license": "MIT", 3117 + "dependencies": { 3118 + "@vue/reactivity": "3.4.37", 3119 + "@vue/runtime-core": "3.4.37", 3120 + "@vue/shared": "3.4.37", 3121 + "csstype": "^3.1.3" 3122 + } 3123 + }, 3124 + "node_modules/@vue/server-renderer": { 3125 + "version": "3.4.37", 3126 + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.37.tgz", 3127 + "integrity": "sha512-jZ5FAHDR2KBq2FsRUJW6GKDOAG9lUTX8aBEGq4Vf6B/35I9fPce66BornuwmqmKgfiSlecwuOb6oeoamYMohkg==", 3128 + "license": "MIT", 3129 + "dependencies": { 3130 + "@vue/compiler-ssr": "3.4.37", 3131 + "@vue/shared": "3.4.37" 3132 + }, 3133 + "peerDependencies": { 3134 + "vue": "3.4.37" 3135 + } 3136 + }, 3137 + "node_modules/@vue/shared": { 3138 + "version": "3.4.37", 3139 + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.37.tgz", 3140 + "integrity": "sha512-nIh8P2fc3DflG8+5Uw8PT/1i17ccFn0xxN/5oE9RfV5SVnd7G0XEFRwakrnNFE/jlS95fpGXDVG5zDETS26nmg==", 3141 + "license": "MIT" 3142 + }, 3143 + "node_modules/@vueuse/core": { 3144 + "version": "10.11.1", 3145 + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.11.1.tgz", 3146 + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", 3147 + "license": "MIT", 3148 + "dependencies": { 3149 + "@types/web-bluetooth": "^0.0.20", 3150 + "@vueuse/metadata": "10.11.1", 3151 + "@vueuse/shared": "10.11.1", 3152 + "vue-demi": ">=0.14.8" 3153 + }, 3154 + "funding": { 3155 + "url": "https://github.com/sponsors/antfu" 3156 + } 3157 + }, 3158 + "node_modules/@vueuse/core/node_modules/vue-demi": { 3159 + "version": "0.14.10", 3160 + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 3161 + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 3162 + "hasInstallScript": true, 3163 + "license": "MIT", 3164 + "bin": { 3165 + "vue-demi-fix": "bin/vue-demi-fix.js", 3166 + "vue-demi-switch": "bin/vue-demi-switch.js" 3167 + }, 3168 + "engines": { 3169 + "node": ">=12" 3170 + }, 3171 + "funding": { 3172 + "url": "https://github.com/sponsors/antfu" 3173 + }, 3174 + "peerDependencies": { 3175 + "@vue/composition-api": "^1.0.0-rc.1", 3176 + "vue": "^3.0.0-0 || ^2.6.0" 3177 + }, 3178 + "peerDependenciesMeta": { 3179 + "@vue/composition-api": { 3180 + "optional": true 3181 + } 3182 + } 3183 + }, 3184 + "node_modules/@vueuse/integrations": { 3185 + "version": "10.11.1", 3186 + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-10.11.1.tgz", 3187 + "integrity": "sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==", 3188 + "license": "MIT", 3189 + "dependencies": { 3190 + "@vueuse/core": "10.11.1", 3191 + "@vueuse/shared": "10.11.1", 3192 + "vue-demi": ">=0.14.8" 3193 + }, 3194 + "funding": { 3195 + "url": "https://github.com/sponsors/antfu" 3196 + }, 3197 + "peerDependencies": { 3198 + "async-validator": "^4", 3199 + "axios": "^1", 3200 + "change-case": "^4", 3201 + "drauu": "^0.3", 3202 + "focus-trap": "^7", 3203 + "fuse.js": "^6", 3204 + "idb-keyval": "^6", 3205 + "jwt-decode": "^3", 3206 + "nprogress": "^0.2", 3207 + "qrcode": "^1.5", 3208 + "sortablejs": "^1", 3209 + "universal-cookie": "^6" 3210 + }, 3211 + "peerDependenciesMeta": { 3212 + "async-validator": { 3213 + "optional": true 3214 + }, 3215 + "axios": { 3216 + "optional": true 3217 + }, 3218 + "change-case": { 3219 + "optional": true 3220 + }, 3221 + "drauu": { 3222 + "optional": true 3223 + }, 3224 + "focus-trap": { 3225 + "optional": true 3226 + }, 3227 + "fuse.js": { 3228 + "optional": true 3229 + }, 3230 + "idb-keyval": { 3231 + "optional": true 3232 + }, 3233 + "jwt-decode": { 3234 + "optional": true 3235 + }, 3236 + "nprogress": { 3237 + "optional": true 3238 + }, 3239 + "qrcode": { 3240 + "optional": true 3241 + }, 3242 + "sortablejs": { 3243 + "optional": true 3244 + }, 3245 + "universal-cookie": { 3246 + "optional": true 3247 + } 3248 + } 3249 + }, 3250 + "node_modules/@vueuse/integrations/node_modules/vue-demi": { 3251 + "version": "0.14.10", 3252 + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 3253 + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 3254 + "hasInstallScript": true, 3255 + "license": "MIT", 3256 + "bin": { 3257 + "vue-demi-fix": "bin/vue-demi-fix.js", 3258 + "vue-demi-switch": "bin/vue-demi-switch.js" 3259 + }, 3260 + "engines": { 3261 + "node": ">=12" 3262 + }, 3263 + "funding": { 3264 + "url": "https://github.com/sponsors/antfu" 3265 + }, 3266 + "peerDependencies": { 3267 + "@vue/composition-api": "^1.0.0-rc.1", 3268 + "vue": "^3.0.0-0 || ^2.6.0" 3269 + }, 3270 + "peerDependenciesMeta": { 3271 + "@vue/composition-api": { 3272 + "optional": true 3273 + } 3274 + } 3275 + }, 3276 + "node_modules/@vueuse/math": { 3277 + "version": "10.11.1", 3278 + "resolved": "https://registry.npmjs.org/@vueuse/math/-/math-10.11.1.tgz", 3279 + "integrity": "sha512-fkdaNEOn22Vjz/A3vNWO2+eysunlK74ODmJRosweKMEA07oi5WH/CYQ8oGxu2Fa641fhs4hXS7XxdALsGVYlpw==", 3280 + "license": "MIT", 3281 + "dependencies": { 3282 + "@vueuse/shared": "10.11.1", 3283 + "vue-demi": ">=0.14.8" 3284 + }, 3285 + "funding": { 3286 + "url": "https://github.com/sponsors/antfu" 3287 + } 3288 + }, 3289 + "node_modules/@vueuse/math/node_modules/vue-demi": { 3290 + "version": "0.14.10", 3291 + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 3292 + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 3293 + "hasInstallScript": true, 3294 + "license": "MIT", 3295 + "bin": { 3296 + "vue-demi-fix": "bin/vue-demi-fix.js", 3297 + "vue-demi-switch": "bin/vue-demi-switch.js" 3298 + }, 3299 + "engines": { 3300 + "node": ">=12" 3301 + }, 3302 + "funding": { 3303 + "url": "https://github.com/sponsors/antfu" 3304 + }, 3305 + "peerDependencies": { 3306 + "@vue/composition-api": "^1.0.0-rc.1", 3307 + "vue": "^3.0.0-0 || ^2.6.0" 3308 + }, 3309 + "peerDependenciesMeta": { 3310 + "@vue/composition-api": { 3311 + "optional": true 3312 + } 3313 + } 3314 + }, 3315 + "node_modules/@vueuse/metadata": { 3316 + "version": "10.11.1", 3317 + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.11.1.tgz", 3318 + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==", 3319 + "license": "MIT", 3320 + "funding": { 3321 + "url": "https://github.com/sponsors/antfu" 3322 + } 3323 + }, 3324 + "node_modules/@vueuse/shared": { 3325 + "version": "10.11.1", 3326 + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.11.1.tgz", 3327 + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", 3328 + "license": "MIT", 3329 + "dependencies": { 3330 + "vue-demi": ">=0.14.8" 3331 + }, 3332 + "funding": { 3333 + "url": "https://github.com/sponsors/antfu" 3334 + } 3335 + }, 3336 + "node_modules/@vueuse/shared/node_modules/vue-demi": { 3337 + "version": "0.14.10", 3338 + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", 3339 + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", 3340 + "hasInstallScript": true, 3341 + "license": "MIT", 3342 + "bin": { 3343 + "vue-demi-fix": "bin/vue-demi-fix.js", 3344 + "vue-demi-switch": "bin/vue-demi-switch.js" 3345 + }, 3346 + "engines": { 3347 + "node": ">=12" 3348 + }, 3349 + "funding": { 3350 + "url": "https://github.com/sponsors/antfu" 3351 + }, 3352 + "peerDependencies": { 3353 + "@vue/composition-api": "^1.0.0-rc.1", 3354 + "vue": "^3.0.0-0 || ^2.6.0" 3355 + }, 3356 + "peerDependenciesMeta": { 3357 + "@vue/composition-api": { 3358 + "optional": true 3359 + } 3360 + } 3361 + }, 3362 + "node_modules/abbrev": { 3363 + "version": "1.1.1", 3364 + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 3365 + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", 3366 + "license": "ISC" 3367 + }, 3368 + "node_modules/abort-controller": { 3369 + "version": "3.0.0", 3370 + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 3371 + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 3372 + "license": "MIT", 3373 + "dependencies": { 3374 + "event-target-shim": "^5.0.0" 3375 + }, 3376 + "engines": { 3377 + "node": ">=6.5" 3378 + } 3379 + }, 3380 + "node_modules/accepts": { 3381 + "version": "1.3.8", 3382 + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 3383 + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 3384 + "license": "MIT", 3385 + "dependencies": { 3386 + "mime-types": "~2.1.34", 3387 + "negotiator": "0.6.3" 3388 + }, 3389 + "engines": { 3390 + "node": ">= 0.6" 3391 + } 3392 + }, 3393 + "node_modules/acorn": { 3394 + "version": "8.12.1", 3395 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 3396 + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 3397 + "license": "MIT", 3398 + "bin": { 3399 + "acorn": "bin/acorn" 3400 + }, 3401 + "engines": { 3402 + "node": ">=0.4.0" 3403 + } 3404 + }, 3405 + "node_modules/acorn-import-attributes": { 3406 + "version": "1.9.5", 3407 + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", 3408 + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", 3409 + "license": "MIT", 3410 + "peerDependencies": { 3411 + "acorn": "^8" 3412 + } 3413 + }, 3414 + "node_modules/agent-base": { 3415 + "version": "6.0.2", 3416 + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 3417 + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 3418 + "license": "MIT", 3419 + "dependencies": { 3420 + "debug": "4" 3421 + }, 3422 + "engines": { 3423 + "node": ">= 6.0.0" 3424 + } 3425 + }, 3426 + "node_modules/ansi-colors": { 3427 + "version": "4.1.3", 3428 + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", 3429 + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", 3430 + "license": "MIT", 3431 + "engines": { 3432 + "node": ">=6" 3433 + } 3434 + }, 3435 + "node_modules/ansi-escapes": { 3436 + "version": "4.3.2", 3437 + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 3438 + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 3439 + "license": "MIT", 3440 + "dependencies": { 3441 + "type-fest": "^0.21.3" 3442 + }, 3443 + "engines": { 3444 + "node": ">=8" 3445 + }, 3446 + "funding": { 3447 + "url": "https://github.com/sponsors/sindresorhus" 3448 + } 3449 + }, 3450 + "node_modules/ansi-escapes/node_modules/type-fest": { 3451 + "version": "0.21.3", 3452 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3453 + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3454 + "license": "(MIT OR CC0-1.0)", 3455 + "engines": { 3456 + "node": ">=10" 3457 + }, 3458 + "funding": { 3459 + "url": "https://github.com/sponsors/sindresorhus" 3460 + } 3461 + }, 3462 + "node_modules/ansi-regex": { 3463 + "version": "5.0.1", 3464 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3465 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3466 + "license": "MIT", 3467 + "engines": { 3468 + "node": ">=8" 3469 + } 3470 + }, 3471 + "node_modules/ansi-styles": { 3472 + "version": "3.2.1", 3473 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 3474 + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 3475 + "license": "MIT", 3476 + "dependencies": { 3477 + "color-convert": "^1.9.0" 3478 + }, 3479 + "engines": { 3480 + "node": ">=4" 3481 + } 3482 + }, 3483 + "node_modules/any-promise": { 3484 + "version": "1.3.0", 3485 + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 3486 + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 3487 + "license": "MIT" 3488 + }, 3489 + "node_modules/anymatch": { 3490 + "version": "3.1.3", 3491 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 3492 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 3493 + "license": "ISC", 3494 + "dependencies": { 3495 + "normalize-path": "^3.0.0", 3496 + "picomatch": "^2.0.4" 3497 + }, 3498 + "engines": { 3499 + "node": ">= 8" 3500 + } 3501 + }, 3502 + "node_modules/aproba": { 3503 + "version": "2.0.0", 3504 + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", 3505 + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", 3506 + "license": "ISC" 3507 + }, 3508 + "node_modules/archiver": { 3509 + "version": "7.0.1", 3510 + "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz", 3511 + "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==", 3512 + "license": "MIT", 3513 + "dependencies": { 3514 + "archiver-utils": "^5.0.2", 3515 + "async": "^3.2.4", 3516 + "buffer-crc32": "^1.0.0", 3517 + "readable-stream": "^4.0.0", 3518 + "readdir-glob": "^1.1.2", 3519 + "tar-stream": "^3.0.0", 3520 + "zip-stream": "^6.0.1" 3521 + }, 3522 + "engines": { 3523 + "node": ">= 14" 3524 + } 3525 + }, 3526 + "node_modules/archiver-utils": { 3527 + "version": "5.0.2", 3528 + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz", 3529 + "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==", 3530 + "license": "MIT", 3531 + "dependencies": { 3532 + "glob": "^10.0.0", 3533 + "graceful-fs": "^4.2.0", 3534 + "is-stream": "^2.0.1", 3535 + "lazystream": "^1.0.0", 3536 + "lodash": "^4.17.15", 3537 + "normalize-path": "^3.0.0", 3538 + "readable-stream": "^4.0.0" 3539 + }, 3540 + "engines": { 3541 + "node": ">= 14" 3542 + } 3543 + }, 3544 + "node_modules/archiver-utils/node_modules/glob": { 3545 + "version": "10.4.5", 3546 + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 3547 + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 3548 + "license": "ISC", 3549 + "dependencies": { 3550 + "foreground-child": "^3.1.0", 3551 + "jackspeak": "^3.1.2", 3552 + "minimatch": "^9.0.4", 3553 + "minipass": "^7.1.2", 3554 + "package-json-from-dist": "^1.0.0", 3555 + "path-scurry": "^1.11.1" 3556 + }, 3557 + "bin": { 3558 + "glob": "dist/esm/bin.mjs" 3559 + }, 3560 + "funding": { 3561 + "url": "https://github.com/sponsors/isaacs" 3562 + } 3563 + }, 3564 + "node_modules/archiver-utils/node_modules/is-stream": { 3565 + "version": "2.0.1", 3566 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3567 + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3568 + "license": "MIT", 3569 + "engines": { 3570 + "node": ">=8" 3571 + }, 3572 + "funding": { 3573 + "url": "https://github.com/sponsors/sindresorhus" 3574 + } 3575 + }, 3576 + "node_modules/archiver-utils/node_modules/minimatch": { 3577 + "version": "9.0.5", 3578 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 3579 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 3580 + "license": "ISC", 3581 + "dependencies": { 3582 + "brace-expansion": "^2.0.1" 3583 + }, 3584 + "engines": { 3585 + "node": ">=16 || 14 >=14.17" 3586 + }, 3587 + "funding": { 3588 + "url": "https://github.com/sponsors/isaacs" 3589 + } 3590 + }, 3591 + "node_modules/archiver-utils/node_modules/minipass": { 3592 + "version": "7.1.2", 3593 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 3594 + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 3595 + "license": "ISC", 3596 + "engines": { 3597 + "node": ">=16 || 14 >=14.17" 3598 + } 3599 + }, 3600 + "node_modules/are-we-there-yet": { 3601 + "version": "2.0.0", 3602 + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", 3603 + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", 3604 + "deprecated": "This package is no longer supported.", 3605 + "license": "ISC", 3606 + "dependencies": { 3607 + "delegates": "^1.0.0", 3608 + "readable-stream": "^3.6.0" 3609 + }, 3610 + "engines": { 3611 + "node": ">=10" 3612 + } 3613 + }, 3614 + "node_modules/are-we-there-yet/node_modules/readable-stream": { 3615 + "version": "3.6.2", 3616 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3617 + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3618 + "license": "MIT", 3619 + "dependencies": { 3620 + "inherits": "^2.0.3", 3621 + "string_decoder": "^1.1.1", 3622 + "util-deprecate": "^1.0.1" 3623 + }, 3624 + "engines": { 3625 + "node": ">= 6" 3626 + } 3627 + }, 3628 + "node_modules/arg": { 3629 + "version": "5.0.2", 3630 + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 3631 + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 3632 + "license": "MIT" 3633 + }, 3634 + "node_modules/argparse": { 3635 + "version": "2.0.1", 3636 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 3637 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 3638 + "license": "Python-2.0" 3639 + }, 3640 + "node_modules/ast-kit": { 3641 + "version": "1.0.1", 3642 + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.0.1.tgz", 3643 + "integrity": "sha512-XdXKlmX3YIrGKJS7d324CAbswH+C1klMCIRQ4VRy0+iPxGeP2scVOoYd09/V6uGjGAi/ZuEwBLzT7xBerSKNQg==", 3644 + "license": "MIT", 3645 + "dependencies": { 3646 + "@babel/parser": "^7.24.8", 3647 + "pathe": "^1.1.2" 3648 + }, 3649 + "engines": { 3650 + "node": ">=16.14.0" 3651 + } 3652 + }, 3653 + "node_modules/ast-walker-scope": { 3654 + "version": "0.6.1", 3655 + "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.6.1.tgz", 3656 + "integrity": "sha512-0ZdQEsSfH3mX4BFbRCc3xOBjx5bDbm73+aAdQOHerPQNf8K0XFMAv79ucd2BpnSc4UMyvBDixiroT8yjm2Y6bw==", 3657 + "license": "MIT", 3658 + "dependencies": { 3659 + "@babel/parser": "^7.24.0", 3660 + "ast-kit": "^0.12.1" 3661 + }, 3662 + "engines": { 3663 + "node": ">=16.14.0" 3664 + } 3665 + }, 3666 + "node_modules/ast-walker-scope/node_modules/ast-kit": { 3667 + "version": "0.12.2", 3668 + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-0.12.2.tgz", 3669 + "integrity": "sha512-es1zHFsnZ4Y4efz412nnrU3KvVAhgqy90a7Yt9Wpi5vQ3l4aYMOX0Qx4FD0elKr5ITEhiUGCSFcgGYf4YTuACg==", 3670 + "license": "MIT", 3671 + "dependencies": { 3672 + "@babel/parser": "^7.24.6", 3673 + "pathe": "^1.1.2" 3674 + }, 3675 + "engines": { 3676 + "node": ">=16.14.0" 3677 + } 3678 + }, 3679 + "node_modules/async": { 3680 + "version": "3.2.5", 3681 + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", 3682 + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", 3683 + "license": "MIT" 3684 + }, 3685 + "node_modules/async-sema": { 3686 + "version": "3.1.1", 3687 + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", 3688 + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", 3689 + "license": "MIT" 3690 + }, 3691 + "node_modules/at-least-node": { 3692 + "version": "1.0.0", 3693 + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", 3694 + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", 3695 + "license": "ISC", 3696 + "engines": { 3697 + "node": ">= 4.0.0" 3698 + } 3699 + }, 3700 + "node_modules/autoprefixer": { 3701 + "version": "10.4.20", 3702 + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", 3703 + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", 3704 + "funding": [ 3705 + { 3706 + "type": "opencollective", 3707 + "url": "https://opencollective.com/postcss/" 3708 + }, 3709 + { 3710 + "type": "tidelift", 3711 + "url": "https://tidelift.com/funding/github/npm/autoprefixer" 3712 + }, 3713 + { 3714 + "type": "github", 3715 + "url": "https://github.com/sponsors/ai" 3716 + } 3717 + ], 3718 + "license": "MIT", 3719 + "dependencies": { 3720 + "browserslist": "^4.23.3", 3721 + "caniuse-lite": "^1.0.30001646", 3722 + "fraction.js": "^4.3.7", 3723 + "normalize-range": "^0.1.2", 3724 + "picocolors": "^1.0.1", 3725 + "postcss-value-parser": "^4.2.0" 3726 + }, 3727 + "bin": { 3728 + "autoprefixer": "bin/autoprefixer" 3729 + }, 3730 + "engines": { 3731 + "node": "^10 || ^12 || >=14" 3732 + }, 3733 + "peerDependencies": { 3734 + "postcss": "^8.1.0" 3735 + } 3736 + }, 3737 + "node_modules/b4a": { 3738 + "version": "1.6.6", 3739 + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", 3740 + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", 3741 + "license": "Apache-2.0" 3742 + }, 3743 + "node_modules/balanced-match": { 3744 + "version": "1.0.2", 3745 + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 3746 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 3747 + "license": "MIT" 3748 + }, 3749 + "node_modules/bare-events": { 3750 + "version": "2.4.2", 3751 + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", 3752 + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", 3753 + "license": "Apache-2.0", 3754 + "optional": true 3755 + }, 3756 + "node_modules/base64-js": { 3757 + "version": "1.5.1", 3758 + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 3759 + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 3760 + "funding": [ 3761 + { 3762 + "type": "github", 3763 + "url": "https://github.com/sponsors/feross" 3764 + }, 3765 + { 3766 + "type": "patreon", 3767 + "url": "https://www.patreon.com/feross" 3768 + }, 3769 + { 3770 + "type": "consulting", 3771 + "url": "https://feross.org/support" 3772 + } 3773 + ], 3774 + "license": "MIT" 3775 + }, 3776 + "node_modules/binary-extensions": { 3777 + "version": "2.3.0", 3778 + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 3779 + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 3780 + "license": "MIT", 3781 + "engines": { 3782 + "node": ">=8" 3783 + }, 3784 + "funding": { 3785 + "url": "https://github.com/sponsors/sindresorhus" 3786 + } 3787 + }, 3788 + "node_modules/bindings": { 3789 + "version": "1.5.0", 3790 + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 3791 + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 3792 + "license": "MIT", 3793 + "dependencies": { 3794 + "file-uri-to-path": "1.0.0" 3795 + } 3796 + }, 3797 + "node_modules/birpc": { 3798 + "version": "0.2.17", 3799 + "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.17.tgz", 3800 + "integrity": "sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==", 3801 + "license": "MIT", 3802 + "funding": { 3803 + "url": "https://github.com/sponsors/antfu" 3804 + } 3805 + }, 3806 + "node_modules/boolbase": { 3807 + "version": "1.0.0", 3808 + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 3809 + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 3810 + "license": "ISC" 3811 + }, 3812 + "node_modules/brace-expansion": { 3813 + "version": "2.0.1", 3814 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 3815 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 3816 + "license": "MIT", 3817 + "dependencies": { 3818 + "balanced-match": "^1.0.0" 3819 + } 3820 + }, 3821 + "node_modules/braces": { 3822 + "version": "3.0.3", 3823 + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 3824 + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 3825 + "license": "MIT", 3826 + "dependencies": { 3827 + "fill-range": "^7.1.1" 3828 + }, 3829 + "engines": { 3830 + "node": ">=8" 3831 + } 3832 + }, 3833 + "node_modules/browserslist": { 3834 + "version": "4.23.3", 3835 + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", 3836 + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", 3837 + "funding": [ 3838 + { 3839 + "type": "opencollective", 3840 + "url": "https://opencollective.com/browserslist" 3841 + }, 3842 + { 3843 + "type": "tidelift", 3844 + "url": "https://tidelift.com/funding/github/npm/browserslist" 3845 + }, 3846 + { 3847 + "type": "github", 3848 + "url": "https://github.com/sponsors/ai" 3849 + } 3850 + ], 3851 + "license": "MIT", 3852 + "dependencies": { 3853 + "caniuse-lite": "^1.0.30001646", 3854 + "electron-to-chromium": "^1.5.4", 3855 + "node-releases": "^2.0.18", 3856 + "update-browserslist-db": "^1.1.0" 3857 + }, 3858 + "bin": { 3859 + "browserslist": "cli.js" 3860 + }, 3861 + "engines": { 3862 + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 3863 + } 3864 + }, 3865 + "node_modules/buffer": { 3866 + "version": "6.0.3", 3867 + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 3868 + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 3869 + "funding": [ 3870 + { 3871 + "type": "github", 3872 + "url": "https://github.com/sponsors/feross" 3873 + }, 3874 + { 3875 + "type": "patreon", 3876 + "url": "https://www.patreon.com/feross" 3877 + }, 3878 + { 3879 + "type": "consulting", 3880 + "url": "https://feross.org/support" 3881 + } 3882 + ], 3883 + "license": "MIT", 3884 + "dependencies": { 3885 + "base64-js": "^1.3.1", 3886 + "ieee754": "^1.2.1" 3887 + } 3888 + }, 3889 + "node_modules/buffer-crc32": { 3890 + "version": "1.0.0", 3891 + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", 3892 + "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", 3893 + "license": "MIT", 3894 + "engines": { 3895 + "node": ">=8.0.0" 3896 + } 3897 + }, 3898 + "node_modules/buffer-from": { 3899 + "version": "1.1.2", 3900 + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 3901 + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 3902 + "license": "MIT" 3903 + }, 3904 + "node_modules/builtin-modules": { 3905 + "version": "3.3.0", 3906 + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 3907 + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 3908 + "license": "MIT", 3909 + "engines": { 3910 + "node": ">=6" 3911 + }, 3912 + "funding": { 3913 + "url": "https://github.com/sponsors/sindresorhus" 3914 + } 3915 + }, 3916 + "node_modules/bundle-name": { 3917 + "version": "4.1.0", 3918 + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", 3919 + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", 3920 + "license": "MIT", 3921 + "dependencies": { 3922 + "run-applescript": "^7.0.0" 3923 + }, 3924 + "engines": { 3925 + "node": ">=18" 3926 + }, 3927 + "funding": { 3928 + "url": "https://github.com/sponsors/sindresorhus" 3929 + } 3930 + }, 3931 + "node_modules/c12": { 3932 + "version": "1.11.1", 3933 + "resolved": "https://registry.npmjs.org/c12/-/c12-1.11.1.tgz", 3934 + "integrity": "sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==", 3935 + "license": "MIT", 3936 + "dependencies": { 3937 + "chokidar": "^3.6.0", 3938 + "confbox": "^0.1.7", 3939 + "defu": "^6.1.4", 3940 + "dotenv": "^16.4.5", 3941 + "giget": "^1.2.3", 3942 + "jiti": "^1.21.6", 3943 + "mlly": "^1.7.1", 3944 + "ohash": "^1.1.3", 3945 + "pathe": "^1.1.2", 3946 + "perfect-debounce": "^1.0.0", 3947 + "pkg-types": "^1.1.1", 3948 + "rc9": "^2.1.2" 3949 + }, 3950 + "peerDependencies": { 3951 + "magicast": "^0.3.4" 3952 + }, 3953 + "peerDependenciesMeta": { 3954 + "magicast": { 3955 + "optional": true 3956 + } 3957 + } 3958 + }, 3959 + "node_modules/cac": { 3960 + "version": "6.7.14", 3961 + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", 3962 + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", 3963 + "license": "MIT", 3964 + "engines": { 3965 + "node": ">=8" 3966 + } 3967 + }, 3968 + "node_modules/cache-content-type": { 3969 + "version": "1.0.1", 3970 + "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", 3971 + "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", 3972 + "license": "MIT", 3973 + "dependencies": { 3974 + "mime-types": "^2.1.18", 3975 + "ylru": "^1.2.0" 3976 + }, 3977 + "engines": { 3978 + "node": ">= 6.0.0" 3979 + } 3980 + }, 3981 + "node_modules/camelcase": { 3982 + "version": "6.3.0", 3983 + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 3984 + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 3985 + "license": "MIT", 3986 + "engines": { 3987 + "node": ">=10" 3988 + }, 3989 + "funding": { 3990 + "url": "https://github.com/sponsors/sindresorhus" 3991 + } 3992 + }, 3993 + "node_modules/camelcase-css": { 3994 + "version": "2.0.1", 3995 + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 3996 + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 3997 + "license": "MIT", 3998 + "engines": { 3999 + "node": ">= 6" 4000 + } 4001 + }, 4002 + "node_modules/caniuse-api": { 4003 + "version": "3.0.0", 4004 + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", 4005 + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", 4006 + "license": "MIT", 4007 + "dependencies": { 4008 + "browserslist": "^4.0.0", 4009 + "caniuse-lite": "^1.0.0", 4010 + "lodash.memoize": "^4.1.2", 4011 + "lodash.uniq": "^4.5.0" 4012 + } 4013 + }, 4014 + "node_modules/caniuse-lite": { 4015 + "version": "1.0.30001651", 4016 + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", 4017 + "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", 4018 + "funding": [ 4019 + { 4020 + "type": "opencollective", 4021 + "url": "https://opencollective.com/browserslist" 4022 + }, 4023 + { 4024 + "type": "tidelift", 4025 + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 4026 + }, 4027 + { 4028 + "type": "github", 4029 + "url": "https://github.com/sponsors/ai" 4030 + } 4031 + ], 4032 + "license": "CC-BY-4.0" 4033 + }, 4034 + "node_modules/chalk": { 4035 + "version": "2.4.2", 4036 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 4037 + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 4038 + "license": "MIT", 4039 + "dependencies": { 4040 + "ansi-styles": "^3.2.1", 4041 + "escape-string-regexp": "^1.0.5", 4042 + "supports-color": "^5.3.0" 4043 + }, 4044 + "engines": { 4045 + "node": ">=4" 4046 + } 4047 + }, 4048 + "node_modules/chalk/node_modules/escape-string-regexp": { 4049 + "version": "1.0.5", 4050 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 4051 + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 4052 + "license": "MIT", 4053 + "engines": { 4054 + "node": ">=0.8.0" 4055 + } 4056 + }, 4057 + "node_modules/chokidar": { 4058 + "version": "3.6.0", 4059 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 4060 + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 4061 + "license": "MIT", 4062 + "dependencies": { 4063 + "anymatch": "~3.1.2", 4064 + "braces": "~3.0.2", 4065 + "glob-parent": "~5.1.2", 4066 + "is-binary-path": "~2.1.0", 4067 + "is-glob": "~4.0.1", 4068 + "normalize-path": "~3.0.0", 4069 + "readdirp": "~3.6.0" 4070 + }, 4071 + "engines": { 4072 + "node": ">= 8.10.0" 4073 + }, 4074 + "funding": { 4075 + "url": "https://paulmillr.com/funding/" 4076 + }, 4077 + "optionalDependencies": { 4078 + "fsevents": "~2.3.2" 4079 + } 4080 + }, 4081 + "node_modules/chownr": { 4082 + "version": "2.0.0", 4083 + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 4084 + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 4085 + "license": "ISC", 4086 + "engines": { 4087 + "node": ">=10" 4088 + } 4089 + }, 4090 + "node_modules/ci-info": { 4091 + "version": "4.0.0", 4092 + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", 4093 + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", 4094 + "funding": [ 4095 + { 4096 + "type": "github", 4097 + "url": "https://github.com/sponsors/sibiraj-s" 4098 + } 4099 + ], 4100 + "license": "MIT", 4101 + "engines": { 4102 + "node": ">=8" 4103 + } 4104 + }, 4105 + "node_modules/citty": { 4106 + "version": "0.1.6", 4107 + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", 4108 + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", 4109 + "license": "MIT", 4110 + "dependencies": { 4111 + "consola": "^3.2.3" 4112 + } 4113 + }, 4114 + "node_modules/clear": { 4115 + "version": "0.1.0", 4116 + "resolved": "https://registry.npmjs.org/clear/-/clear-0.1.0.tgz", 4117 + "integrity": "sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==", 4118 + "engines": { 4119 + "node": "*" 4120 + } 4121 + }, 4122 + "node_modules/clipboardy": { 4123 + "version": "4.0.0", 4124 + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", 4125 + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", 4126 + "license": "MIT", 4127 + "dependencies": { 4128 + "execa": "^8.0.1", 4129 + "is-wsl": "^3.1.0", 4130 + "is64bit": "^2.0.0" 4131 + }, 4132 + "engines": { 4133 + "node": ">=18" 4134 + }, 4135 + "funding": { 4136 + "url": "https://github.com/sponsors/sindresorhus" 4137 + } 4138 + }, 4139 + "node_modules/clipboardy/node_modules/execa": { 4140 + "version": "8.0.1", 4141 + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", 4142 + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", 4143 + "license": "MIT", 4144 + "dependencies": { 4145 + "cross-spawn": "^7.0.3", 4146 + "get-stream": "^8.0.1", 4147 + "human-signals": "^5.0.0", 4148 + "is-stream": "^3.0.0", 4149 + "merge-stream": "^2.0.0", 4150 + "npm-run-path": "^5.1.0", 4151 + "onetime": "^6.0.0", 4152 + "signal-exit": "^4.1.0", 4153 + "strip-final-newline": "^3.0.0" 4154 + }, 4155 + "engines": { 4156 + "node": ">=16.17" 4157 + }, 4158 + "funding": { 4159 + "url": "https://github.com/sindresorhus/execa?sponsor=1" 4160 + } 4161 + }, 4162 + "node_modules/clipboardy/node_modules/get-stream": { 4163 + "version": "8.0.1", 4164 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", 4165 + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", 4166 + "license": "MIT", 4167 + "engines": { 4168 + "node": ">=16" 4169 + }, 4170 + "funding": { 4171 + "url": "https://github.com/sponsors/sindresorhus" 4172 + } 4173 + }, 4174 + "node_modules/clipboardy/node_modules/human-signals": { 4175 + "version": "5.0.0", 4176 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", 4177 + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", 4178 + "license": "Apache-2.0", 4179 + "engines": { 4180 + "node": ">=16.17.0" 4181 + } 4182 + }, 4183 + "node_modules/clipboardy/node_modules/signal-exit": { 4184 + "version": "4.1.0", 4185 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 4186 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 4187 + "license": "ISC", 4188 + "engines": { 4189 + "node": ">=14" 4190 + }, 4191 + "funding": { 4192 + "url": "https://github.com/sponsors/isaacs" 4193 + } 4194 + }, 4195 + "node_modules/cliui": { 4196 + "version": "8.0.1", 4197 + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 4198 + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 4199 + "license": "ISC", 4200 + "dependencies": { 4201 + "string-width": "^4.2.0", 4202 + "strip-ansi": "^6.0.1", 4203 + "wrap-ansi": "^7.0.0" 4204 + }, 4205 + "engines": { 4206 + "node": ">=12" 4207 + } 4208 + }, 4209 + "node_modules/cluster-key-slot": { 4210 + "version": "1.1.2", 4211 + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", 4212 + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", 4213 + "license": "Apache-2.0", 4214 + "engines": { 4215 + "node": ">=0.10.0" 4216 + } 4217 + }, 4218 + "node_modules/co": { 4219 + "version": "4.6.0", 4220 + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 4221 + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 4222 + "license": "MIT", 4223 + "engines": { 4224 + "iojs": ">= 1.0.0", 4225 + "node": ">= 0.12.0" 4226 + } 4227 + }, 4228 + "node_modules/color-convert": { 4229 + "version": "1.9.3", 4230 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 4231 + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 4232 + "license": "MIT", 4233 + "dependencies": { 4234 + "color-name": "1.1.3" 4235 + } 4236 + }, 4237 + "node_modules/color-name": { 4238 + "version": "1.1.3", 4239 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 4240 + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 4241 + "license": "MIT" 4242 + }, 4243 + "node_modules/color-support": { 4244 + "version": "1.1.3", 4245 + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", 4246 + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", 4247 + "license": "ISC", 4248 + "bin": { 4249 + "color-support": "bin.js" 4250 + } 4251 + }, 4252 + "node_modules/colord": { 4253 + "version": "2.9.3", 4254 + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", 4255 + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", 4256 + "license": "MIT" 4257 + }, 4258 + "node_modules/commander": { 4259 + "version": "7.2.0", 4260 + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", 4261 + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", 4262 + "license": "MIT", 4263 + "engines": { 4264 + "node": ">= 10" 4265 + } 4266 + }, 4267 + "node_modules/commondir": { 4268 + "version": "1.0.1", 4269 + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", 4270 + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", 4271 + "license": "MIT" 4272 + }, 4273 + "node_modules/compatx": { 4274 + "version": "0.1.8", 4275 + "resolved": "https://registry.npmjs.org/compatx/-/compatx-0.1.8.tgz", 4276 + "integrity": "sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==", 4277 + "license": "MIT" 4278 + }, 4279 + "node_modules/compress-commons": { 4280 + "version": "6.0.2", 4281 + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz", 4282 + "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==", 4283 + "license": "MIT", 4284 + "dependencies": { 4285 + "crc-32": "^1.2.0", 4286 + "crc32-stream": "^6.0.0", 4287 + "is-stream": "^2.0.1", 4288 + "normalize-path": "^3.0.0", 4289 + "readable-stream": "^4.0.0" 4290 + }, 4291 + "engines": { 4292 + "node": ">= 14" 4293 + } 4294 + }, 4295 + "node_modules/compress-commons/node_modules/is-stream": { 4296 + "version": "2.0.1", 4297 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 4298 + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 4299 + "license": "MIT", 4300 + "engines": { 4301 + "node": ">=8" 4302 + }, 4303 + "funding": { 4304 + "url": "https://github.com/sponsors/sindresorhus" 4305 + } 4306 + }, 4307 + "node_modules/concat-map": { 4308 + "version": "0.0.1", 4309 + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 4310 + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 4311 + "license": "MIT" 4312 + }, 4313 + "node_modules/confbox": { 4314 + "version": "0.1.7", 4315 + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", 4316 + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", 4317 + "license": "MIT" 4318 + }, 4319 + "node_modules/consola": { 4320 + "version": "3.2.3", 4321 + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", 4322 + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", 4323 + "license": "MIT", 4324 + "engines": { 4325 + "node": "^14.18.0 || >=16.10.0" 4326 + } 4327 + }, 4328 + "node_modules/console-control-strings": { 4329 + "version": "1.1.0", 4330 + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 4331 + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", 4332 + "license": "ISC" 4333 + }, 4334 + "node_modules/content-disposition": { 4335 + "version": "0.5.4", 4336 + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 4337 + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 4338 + "license": "MIT", 4339 + "dependencies": { 4340 + "safe-buffer": "5.2.1" 4341 + }, 4342 + "engines": { 4343 + "node": ">= 0.6" 4344 + } 4345 + }, 4346 + "node_modules/content-type": { 4347 + "version": "1.0.5", 4348 + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 4349 + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 4350 + "license": "MIT", 4351 + "engines": { 4352 + "node": ">= 0.6" 4353 + } 4354 + }, 4355 + "node_modules/convert-source-map": { 4356 + "version": "2.0.0", 4357 + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 4358 + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 4359 + "license": "MIT" 4360 + }, 4361 + "node_modules/cookie-es": { 4362 + "version": "1.2.2", 4363 + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", 4364 + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", 4365 + "license": "MIT" 4366 + }, 4367 + "node_modules/cookies": { 4368 + "version": "0.9.1", 4369 + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.9.1.tgz", 4370 + "integrity": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==", 4371 + "license": "MIT", 4372 + "dependencies": { 4373 + "depd": "~2.0.0", 4374 + "keygrip": "~1.1.0" 4375 + }, 4376 + "engines": { 4377 + "node": ">= 0.8" 4378 + } 4379 + }, 4380 + "node_modules/copy-anything": { 4381 + "version": "3.0.5", 4382 + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", 4383 + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", 4384 + "license": "MIT", 4385 + "dependencies": { 4386 + "is-what": "^4.1.8" 4387 + }, 4388 + "engines": { 4389 + "node": ">=12.13" 4390 + }, 4391 + "funding": { 4392 + "url": "https://github.com/sponsors/mesqueeb" 4393 + } 4394 + }, 4395 + "node_modules/core-util-is": { 4396 + "version": "1.0.3", 4397 + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 4398 + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 4399 + "license": "MIT" 4400 + }, 4401 + "node_modules/crc-32": { 4402 + "version": "1.2.2", 4403 + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", 4404 + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", 4405 + "license": "Apache-2.0", 4406 + "bin": { 4407 + "crc32": "bin/crc32.njs" 4408 + }, 4409 + "engines": { 4410 + "node": ">=0.8" 4411 + } 4412 + }, 4413 + "node_modules/crc32-stream": { 4414 + "version": "6.0.0", 4415 + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz", 4416 + "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==", 4417 + "license": "MIT", 4418 + "dependencies": { 4419 + "crc-32": "^1.2.0", 4420 + "readable-stream": "^4.0.0" 4421 + }, 4422 + "engines": { 4423 + "node": ">= 14" 4424 + } 4425 + }, 4426 + "node_modules/create-require": { 4427 + "version": "1.1.1", 4428 + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", 4429 + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", 4430 + "license": "MIT" 4431 + }, 4432 + "node_modules/croner": { 4433 + "version": "8.1.1", 4434 + "resolved": "https://registry.npmjs.org/croner/-/croner-8.1.1.tgz", 4435 + "integrity": "sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==", 4436 + "license": "MIT", 4437 + "engines": { 4438 + "node": ">=18.0" 4439 + } 4440 + }, 4441 + "node_modules/cronstrue": { 4442 + "version": "2.50.0", 4443 + "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.50.0.tgz", 4444 + "integrity": "sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==", 4445 + "license": "MIT", 4446 + "bin": { 4447 + "cronstrue": "bin/cli.js" 4448 + } 4449 + }, 4450 + "node_modules/cross-spawn": { 4451 + "version": "7.0.3", 4452 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 4453 + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 4454 + "license": "MIT", 4455 + "dependencies": { 4456 + "path-key": "^3.1.0", 4457 + "shebang-command": "^2.0.0", 4458 + "which": "^2.0.1" 4459 + }, 4460 + "engines": { 4461 + "node": ">= 8" 4462 + } 4463 + }, 4464 + "node_modules/cross-spawn/node_modules/which": { 4465 + "version": "2.0.2", 4466 + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4467 + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4468 + "license": "ISC", 4469 + "dependencies": { 4470 + "isexe": "^2.0.0" 4471 + }, 4472 + "bin": { 4473 + "node-which": "bin/node-which" 4474 + }, 4475 + "engines": { 4476 + "node": ">= 8" 4477 + } 4478 + }, 4479 + "node_modules/crossws": { 4480 + "version": "0.2.4", 4481 + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", 4482 + "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", 4483 + "license": "MIT", 4484 + "peerDependencies": { 4485 + "uWebSockets.js": "*" 4486 + }, 4487 + "peerDependenciesMeta": { 4488 + "uWebSockets.js": { 4489 + "optional": true 4490 + } 4491 + } 4492 + }, 4493 + "node_modules/css-declaration-sorter": { 4494 + "version": "7.2.0", 4495 + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", 4496 + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", 4497 + "license": "ISC", 4498 + "engines": { 4499 + "node": "^14 || ^16 || >=18" 4500 + }, 4501 + "peerDependencies": { 4502 + "postcss": "^8.0.9" 4503 + } 4504 + }, 4505 + "node_modules/css-select": { 4506 + "version": "5.1.0", 4507 + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", 4508 + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", 4509 + "license": "BSD-2-Clause", 4510 + "dependencies": { 4511 + "boolbase": "^1.0.0", 4512 + "css-what": "^6.1.0", 4513 + "domhandler": "^5.0.2", 4514 + "domutils": "^3.0.1", 4515 + "nth-check": "^2.0.1" 4516 + }, 4517 + "funding": { 4518 + "url": "https://github.com/sponsors/fb55" 4519 + } 4520 + }, 4521 + "node_modules/css-tree": { 4522 + "version": "2.3.1", 4523 + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 4524 + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 4525 + "license": "MIT", 4526 + "dependencies": { 4527 + "mdn-data": "2.0.30", 4528 + "source-map-js": "^1.0.1" 4529 + }, 4530 + "engines": { 4531 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 4532 + } 4533 + }, 4534 + "node_modules/css-what": { 4535 + "version": "6.1.0", 4536 + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", 4537 + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", 4538 + "license": "BSD-2-Clause", 4539 + "engines": { 4540 + "node": ">= 6" 4541 + }, 4542 + "funding": { 4543 + "url": "https://github.com/sponsors/fb55" 4544 + } 4545 + }, 4546 + "node_modules/cssesc": { 4547 + "version": "3.0.0", 4548 + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 4549 + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 4550 + "license": "MIT", 4551 + "bin": { 4552 + "cssesc": "bin/cssesc" 4553 + }, 4554 + "engines": { 4555 + "node": ">=4" 4556 + } 4557 + }, 4558 + "node_modules/cssnano": { 4559 + "version": "7.0.4", 4560 + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.0.4.tgz", 4561 + "integrity": "sha512-rQgpZra72iFjiheNreXn77q1haS2GEy69zCMbu4cpXCFPMQF+D4Ik5V7ktMzUF/sA7xCIgcqHwGPnCD+0a1vHg==", 4562 + "license": "MIT", 4563 + "dependencies": { 4564 + "cssnano-preset-default": "^7.0.4", 4565 + "lilconfig": "^3.1.2" 4566 + }, 4567 + "engines": { 4568 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 4569 + }, 4570 + "funding": { 4571 + "type": "opencollective", 4572 + "url": "https://opencollective.com/cssnano" 4573 + }, 4574 + "peerDependencies": { 4575 + "postcss": "^8.4.31" 4576 + } 4577 + }, 4578 + "node_modules/cssnano-preset-default": { 4579 + "version": "7.0.4", 4580 + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.4.tgz", 4581 + "integrity": "sha512-jQ6zY9GAomQX7/YNLibMEsRZguqMUGuupXcEk2zZ+p3GUxwCAsobqPYE62VrJ9qZ0l9ltrv2rgjwZPBIFIjYtw==", 4582 + "license": "MIT", 4583 + "dependencies": { 4584 + "browserslist": "^4.23.1", 4585 + "css-declaration-sorter": "^7.2.0", 4586 + "cssnano-utils": "^5.0.0", 4587 + "postcss-calc": "^10.0.0", 4588 + "postcss-colormin": "^7.0.1", 4589 + "postcss-convert-values": "^7.0.2", 4590 + "postcss-discard-comments": "^7.0.1", 4591 + "postcss-discard-duplicates": "^7.0.0", 4592 + "postcss-discard-empty": "^7.0.0", 4593 + "postcss-discard-overridden": "^7.0.0", 4594 + "postcss-merge-longhand": "^7.0.2", 4595 + "postcss-merge-rules": "^7.0.2", 4596 + "postcss-minify-font-values": "^7.0.0", 4597 + "postcss-minify-gradients": "^7.0.0", 4598 + "postcss-minify-params": "^7.0.1", 4599 + "postcss-minify-selectors": "^7.0.2", 4600 + "postcss-normalize-charset": "^7.0.0", 4601 + "postcss-normalize-display-values": "^7.0.0", 4602 + "postcss-normalize-positions": "^7.0.0", 4603 + "postcss-normalize-repeat-style": "^7.0.0", 4604 + "postcss-normalize-string": "^7.0.0", 4605 + "postcss-normalize-timing-functions": "^7.0.0", 4606 + "postcss-normalize-unicode": "^7.0.1", 4607 + "postcss-normalize-url": "^7.0.0", 4608 + "postcss-normalize-whitespace": "^7.0.0", 4609 + "postcss-ordered-values": "^7.0.1", 4610 + "postcss-reduce-initial": "^7.0.1", 4611 + "postcss-reduce-transforms": "^7.0.0", 4612 + "postcss-svgo": "^7.0.1", 4613 + "postcss-unique-selectors": "^7.0.1" 4614 + }, 4615 + "engines": { 4616 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 4617 + }, 4618 + "peerDependencies": { 4619 + "postcss": "^8.4.31" 4620 + } 4621 + }, 4622 + "node_modules/cssnano-utils": { 4623 + "version": "5.0.0", 4624 + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz", 4625 + "integrity": "sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==", 4626 + "license": "MIT", 4627 + "engines": { 4628 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 4629 + }, 4630 + "peerDependencies": { 4631 + "postcss": "^8.4.31" 4632 + } 4633 + }, 4634 + "node_modules/csso": { 4635 + "version": "5.0.5", 4636 + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", 4637 + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", 4638 + "license": "MIT", 4639 + "dependencies": { 4640 + "css-tree": "~2.2.0" 4641 + }, 4642 + "engines": { 4643 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 4644 + "npm": ">=7.0.0" 4645 + } 4646 + }, 4647 + "node_modules/csso/node_modules/css-tree": { 4648 + "version": "2.2.1", 4649 + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", 4650 + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", 4651 + "license": "MIT", 4652 + "dependencies": { 4653 + "mdn-data": "2.0.28", 4654 + "source-map-js": "^1.0.1" 4655 + }, 4656 + "engines": { 4657 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 4658 + "npm": ">=7.0.0" 4659 + } 4660 + }, 4661 + "node_modules/csso/node_modules/mdn-data": { 4662 + "version": "2.0.28", 4663 + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", 4664 + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", 4665 + "license": "CC0-1.0" 4666 + }, 4667 + "node_modules/csstype": { 4668 + "version": "3.1.3", 4669 + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 4670 + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 4671 + "license": "MIT" 4672 + }, 4673 + "node_modules/db0": { 4674 + "version": "0.1.4", 4675 + "resolved": "https://registry.npmjs.org/db0/-/db0-0.1.4.tgz", 4676 + "integrity": "sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==", 4677 + "license": "MIT", 4678 + "peerDependencies": { 4679 + "@libsql/client": "^0.5.2", 4680 + "better-sqlite3": "^9.4.3", 4681 + "drizzle-orm": "^0.29.4" 4682 + }, 4683 + "peerDependenciesMeta": { 4684 + "@libsql/client": { 4685 + "optional": true 4686 + }, 4687 + "better-sqlite3": { 4688 + "optional": true 4689 + }, 4690 + "drizzle-orm": { 4691 + "optional": true 4692 + } 4693 + } 4694 + }, 4695 + "node_modules/debug": { 4696 + "version": "4.3.6", 4697 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", 4698 + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", 4699 + "license": "MIT", 4700 + "dependencies": { 4701 + "ms": "2.1.2" 4702 + }, 4703 + "engines": { 4704 + "node": ">=6.0" 4705 + }, 4706 + "peerDependenciesMeta": { 4707 + "supports-color": { 4708 + "optional": true 4709 + } 4710 + } 4711 + }, 4712 + "node_modules/deep-equal": { 4713 + "version": "1.0.1", 4714 + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", 4715 + "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", 4716 + "license": "MIT" 4717 + }, 4718 + "node_modules/deepmerge": { 4719 + "version": "4.3.1", 4720 + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 4721 + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 4722 + "license": "MIT", 4723 + "engines": { 4724 + "node": ">=0.10.0" 4725 + } 4726 + }, 4727 + "node_modules/default-browser": { 4728 + "version": "5.2.1", 4729 + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", 4730 + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", 4731 + "license": "MIT", 4732 + "dependencies": { 4733 + "bundle-name": "^4.1.0", 4734 + "default-browser-id": "^5.0.0" 4735 + }, 4736 + "engines": { 4737 + "node": ">=18" 4738 + }, 4739 + "funding": { 4740 + "url": "https://github.com/sponsors/sindresorhus" 4741 + } 4742 + }, 4743 + "node_modules/default-browser-id": { 4744 + "version": "5.0.0", 4745 + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", 4746 + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", 4747 + "license": "MIT", 4748 + "engines": { 4749 + "node": ">=18" 4750 + }, 4751 + "funding": { 4752 + "url": "https://github.com/sponsors/sindresorhus" 4753 + } 4754 + }, 4755 + "node_modules/define-lazy-prop": { 4756 + "version": "2.0.0", 4757 + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", 4758 + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", 4759 + "license": "MIT", 4760 + "engines": { 4761 + "node": ">=8" 4762 + } 4763 + }, 4764 + "node_modules/defu": { 4765 + "version": "6.1.4", 4766 + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 4767 + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 4768 + "license": "MIT" 4769 + }, 4770 + "node_modules/delegates": { 4771 + "version": "1.0.0", 4772 + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 4773 + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", 4774 + "license": "MIT" 4775 + }, 4776 + "node_modules/denque": { 4777 + "version": "2.1.0", 4778 + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", 4779 + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", 4780 + "license": "Apache-2.0", 4781 + "engines": { 4782 + "node": ">=0.10" 4783 + } 4784 + }, 4785 + "node_modules/depd": { 4786 + "version": "2.0.0", 4787 + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 4788 + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 4789 + "license": "MIT", 4790 + "engines": { 4791 + "node": ">= 0.8" 4792 + } 4793 + }, 4794 + "node_modules/destr": { 4795 + "version": "2.0.3", 4796 + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", 4797 + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", 4798 + "license": "MIT" 4799 + }, 4800 + "node_modules/destroy": { 4801 + "version": "1.2.0", 4802 + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 4803 + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 4804 + "license": "MIT", 4805 + "engines": { 4806 + "node": ">= 0.8", 4807 + "npm": "1.2.8000 || >= 1.4.16" 4808 + } 4809 + }, 4810 + "node_modules/detect-libc": { 4811 + "version": "2.0.3", 4812 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 4813 + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 4814 + "license": "Apache-2.0", 4815 + "engines": { 4816 + "node": ">=8" 4817 + } 4818 + }, 4819 + "node_modules/devalue": { 4820 + "version": "5.0.0", 4821 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", 4822 + "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==", 4823 + "license": "MIT" 4824 + }, 4825 + "node_modules/didyoumean": { 4826 + "version": "1.2.2", 4827 + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 4828 + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 4829 + "license": "Apache-2.0" 4830 + }, 4831 + "node_modules/diff": { 4832 + "version": "5.2.0", 4833 + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", 4834 + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", 4835 + "license": "BSD-3-Clause", 4836 + "engines": { 4837 + "node": ">=0.3.1" 4838 + } 4839 + }, 4840 + "node_modules/dlv": { 4841 + "version": "1.1.3", 4842 + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 4843 + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 4844 + "license": "MIT" 4845 + }, 4846 + "node_modules/dom-serializer": { 4847 + "version": "2.0.0", 4848 + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 4849 + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 4850 + "license": "MIT", 4851 + "dependencies": { 4852 + "domelementtype": "^2.3.0", 4853 + "domhandler": "^5.0.2", 4854 + "entities": "^4.2.0" 4855 + }, 4856 + "funding": { 4857 + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 4858 + } 4859 + }, 4860 + "node_modules/dom-serializer/node_modules/entities": { 4861 + "version": "4.5.0", 4862 + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 4863 + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 4864 + "license": "BSD-2-Clause", 4865 + "engines": { 4866 + "node": ">=0.12" 4867 + }, 4868 + "funding": { 4869 + "url": "https://github.com/fb55/entities?sponsor=1" 4870 + } 4871 + }, 4872 + "node_modules/domelementtype": { 4873 + "version": "2.3.0", 4874 + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 4875 + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 4876 + "funding": [ 4877 + { 4878 + "type": "github", 4879 + "url": "https://github.com/sponsors/fb55" 4880 + } 4881 + ], 4882 + "license": "BSD-2-Clause" 4883 + }, 4884 + "node_modules/domhandler": { 4885 + "version": "5.0.3", 4886 + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 4887 + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 4888 + "license": "BSD-2-Clause", 4889 + "dependencies": { 4890 + "domelementtype": "^2.3.0" 4891 + }, 4892 + "engines": { 4893 + "node": ">= 4" 4894 + }, 4895 + "funding": { 4896 + "url": "https://github.com/fb55/domhandler?sponsor=1" 4897 + } 4898 + }, 4899 + "node_modules/domutils": { 4900 + "version": "3.1.0", 4901 + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", 4902 + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", 4903 + "license": "BSD-2-Clause", 4904 + "dependencies": { 4905 + "dom-serializer": "^2.0.0", 4906 + "domelementtype": "^2.3.0", 4907 + "domhandler": "^5.0.3" 4908 + }, 4909 + "funding": { 4910 + "url": "https://github.com/fb55/domutils?sponsor=1" 4911 + } 4912 + }, 4913 + "node_modules/dot-prop": { 4914 + "version": "8.0.2", 4915 + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-8.0.2.tgz", 4916 + "integrity": "sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==", 4917 + "license": "MIT", 4918 + "dependencies": { 4919 + "type-fest": "^3.8.0" 4920 + }, 4921 + "engines": { 4922 + "node": ">=16" 4923 + }, 4924 + "funding": { 4925 + "url": "https://github.com/sponsors/sindresorhus" 4926 + } 4927 + }, 4928 + "node_modules/dotenv": { 4929 + "version": "16.4.5", 4930 + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 4931 + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 4932 + "license": "BSD-2-Clause", 4933 + "engines": { 4934 + "node": ">=12" 4935 + }, 4936 + "funding": { 4937 + "url": "https://dotenvx.com" 4938 + } 4939 + }, 4940 + "node_modules/duplexer": { 4941 + "version": "0.1.2", 4942 + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", 4943 + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", 4944 + "license": "MIT" 4945 + }, 4946 + "node_modules/eastasianwidth": { 4947 + "version": "0.2.0", 4948 + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 4949 + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 4950 + "license": "MIT" 4951 + }, 4952 + "node_modules/ee-first": { 4953 + "version": "1.1.1", 4954 + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 4955 + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 4956 + "license": "MIT" 4957 + }, 4958 + "node_modules/electron-to-chromium": { 4959 + "version": "1.5.5", 4960 + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.5.tgz", 4961 + "integrity": "sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==", 4962 + "license": "ISC" 4963 + }, 4964 + "node_modules/emoji-regex": { 4965 + "version": "8.0.0", 4966 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4967 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 4968 + "license": "MIT" 4969 + }, 4970 + "node_modules/encodeurl": { 4971 + "version": "1.0.2", 4972 + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 4973 + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 4974 + "license": "MIT", 4975 + "engines": { 4976 + "node": ">= 0.8" 4977 + } 4978 + }, 4979 + "node_modules/enhanced-resolve": { 4980 + "version": "5.17.1", 4981 + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", 4982 + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", 4983 + "license": "MIT", 4984 + "dependencies": { 4985 + "graceful-fs": "^4.2.4", 4986 + "tapable": "^2.2.0" 4987 + }, 4988 + "engines": { 4989 + "node": ">=10.13.0" 4990 + } 4991 + }, 4992 + "node_modules/entities": { 4993 + "version": "5.0.0", 4994 + "resolved": "https://registry.npmjs.org/entities/-/entities-5.0.0.tgz", 4995 + "integrity": "sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==", 4996 + "license": "BSD-2-Clause", 4997 + "engines": { 4998 + "node": ">=0.12" 4999 + }, 5000 + "funding": { 5001 + "url": "https://github.com/fb55/entities?sponsor=1" 5002 + } 5003 + }, 5004 + "node_modules/error-stack-parser-es": { 5005 + "version": "0.1.5", 5006 + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", 5007 + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", 5008 + "license": "MIT", 5009 + "funding": { 5010 + "url": "https://github.com/sponsors/antfu" 5011 + } 5012 + }, 5013 + "node_modules/errx": { 5014 + "version": "0.1.0", 5015 + "resolved": "https://registry.npmjs.org/errx/-/errx-0.1.0.tgz", 5016 + "integrity": "sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==", 5017 + "license": "MIT" 5018 + }, 5019 + "node_modules/esbuild": { 5020 + "version": "0.23.0", 5021 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.0.tgz", 5022 + "integrity": "sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==", 5023 + "hasInstallScript": true, 5024 + "license": "MIT", 5025 + "bin": { 5026 + "esbuild": "bin/esbuild" 5027 + }, 5028 + "engines": { 5029 + "node": ">=18" 5030 + }, 5031 + "optionalDependencies": { 5032 + "@esbuild/aix-ppc64": "0.23.0", 5033 + "@esbuild/android-arm": "0.23.0", 5034 + "@esbuild/android-arm64": "0.23.0", 5035 + "@esbuild/android-x64": "0.23.0", 5036 + "@esbuild/darwin-arm64": "0.23.0", 5037 + "@esbuild/darwin-x64": "0.23.0", 5038 + "@esbuild/freebsd-arm64": "0.23.0", 5039 + "@esbuild/freebsd-x64": "0.23.0", 5040 + "@esbuild/linux-arm": "0.23.0", 5041 + "@esbuild/linux-arm64": "0.23.0", 5042 + "@esbuild/linux-ia32": "0.23.0", 5043 + "@esbuild/linux-loong64": "0.23.0", 5044 + "@esbuild/linux-mips64el": "0.23.0", 5045 + "@esbuild/linux-ppc64": "0.23.0", 5046 + "@esbuild/linux-riscv64": "0.23.0", 5047 + "@esbuild/linux-s390x": "0.23.0", 5048 + "@esbuild/linux-x64": "0.23.0", 5049 + "@esbuild/netbsd-x64": "0.23.0", 5050 + "@esbuild/openbsd-arm64": "0.23.0", 5051 + "@esbuild/openbsd-x64": "0.23.0", 5052 + "@esbuild/sunos-x64": "0.23.0", 5053 + "@esbuild/win32-arm64": "0.23.0", 5054 + "@esbuild/win32-ia32": "0.23.0", 5055 + "@esbuild/win32-x64": "0.23.0" 5056 + } 5057 + }, 5058 + "node_modules/escalade": { 5059 + "version": "3.1.2", 5060 + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 5061 + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 5062 + "license": "MIT", 5063 + "engines": { 5064 + "node": ">=6" 5065 + } 5066 + }, 5067 + "node_modules/escape-html": { 5068 + "version": "1.0.3", 5069 + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 5070 + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 5071 + "license": "MIT" 5072 + }, 5073 + "node_modules/escape-string-regexp": { 5074 + "version": "5.0.0", 5075 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 5076 + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 5077 + "license": "MIT", 5078 + "engines": { 5079 + "node": ">=12" 5080 + }, 5081 + "funding": { 5082 + "url": "https://github.com/sponsors/sindresorhus" 5083 + } 5084 + }, 5085 + "node_modules/estree-walker": { 5086 + "version": "3.0.3", 5087 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 5088 + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 5089 + "license": "MIT", 5090 + "dependencies": { 5091 + "@types/estree": "^1.0.0" 5092 + } 5093 + }, 5094 + "node_modules/etag": { 5095 + "version": "1.8.1", 5096 + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 5097 + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 5098 + "license": "MIT", 5099 + "engines": { 5100 + "node": ">= 0.6" 5101 + } 5102 + }, 5103 + "node_modules/event-target-shim": { 5104 + "version": "5.0.1", 5105 + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 5106 + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 5107 + "license": "MIT", 5108 + "engines": { 5109 + "node": ">=6" 5110 + } 5111 + }, 5112 + "node_modules/events": { 5113 + "version": "3.3.0", 5114 + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", 5115 + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", 5116 + "license": "MIT", 5117 + "engines": { 5118 + "node": ">=0.8.x" 5119 + } 5120 + }, 5121 + "node_modules/execa": { 5122 + "version": "7.2.0", 5123 + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", 5124 + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", 5125 + "license": "MIT", 5126 + "dependencies": { 5127 + "cross-spawn": "^7.0.3", 5128 + "get-stream": "^6.0.1", 5129 + "human-signals": "^4.3.0", 5130 + "is-stream": "^3.0.0", 5131 + "merge-stream": "^2.0.0", 5132 + "npm-run-path": "^5.1.0", 5133 + "onetime": "^6.0.0", 5134 + "signal-exit": "^3.0.7", 5135 + "strip-final-newline": "^3.0.0" 5136 + }, 5137 + "engines": { 5138 + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 5139 + }, 5140 + "funding": { 5141 + "url": "https://github.com/sindresorhus/execa?sponsor=1" 5142 + } 5143 + }, 5144 + "node_modules/externality": { 5145 + "version": "1.0.2", 5146 + "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz", 5147 + "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==", 5148 + "license": "MIT", 5149 + "dependencies": { 5150 + "enhanced-resolve": "^5.14.1", 5151 + "mlly": "^1.3.0", 5152 + "pathe": "^1.1.1", 5153 + "ufo": "^1.1.2" 5154 + } 5155 + }, 5156 + "node_modules/fast-fifo": { 5157 + "version": "1.3.2", 5158 + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", 5159 + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", 5160 + "license": "MIT" 5161 + }, 5162 + "node_modules/fast-glob": { 5163 + "version": "3.3.2", 5164 + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 5165 + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 5166 + "license": "MIT", 5167 + "dependencies": { 5168 + "@nodelib/fs.stat": "^2.0.2", 5169 + "@nodelib/fs.walk": "^1.2.3", 5170 + "glob-parent": "^5.1.2", 5171 + "merge2": "^1.3.0", 5172 + "micromatch": "^4.0.4" 5173 + }, 5174 + "engines": { 5175 + "node": ">=8.6.0" 5176 + } 5177 + }, 5178 + "node_modules/fast-npm-meta": { 5179 + "version": "0.1.1", 5180 + "resolved": "https://registry.npmjs.org/fast-npm-meta/-/fast-npm-meta-0.1.1.tgz", 5181 + "integrity": "sha512-uS9DjGncI/9XZ6HJFrci0WzSi++N8Jskbb2uB7+9SQlrgA3VaLhXhV9Gl5HwIGESHkayYYZFGnVNhJwRDKCWIA==", 5182 + "license": "MIT", 5183 + "funding": { 5184 + "url": "https://github.com/sponsors/antfu" 5185 + } 5186 + }, 5187 + "node_modules/fastq": { 5188 + "version": "1.17.1", 5189 + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 5190 + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 5191 + "license": "ISC", 5192 + "dependencies": { 5193 + "reusify": "^1.0.4" 5194 + } 5195 + }, 5196 + "node_modules/file-uri-to-path": { 5197 + "version": "1.0.0", 5198 + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 5199 + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 5200 + "license": "MIT" 5201 + }, 5202 + "node_modules/fill-range": { 5203 + "version": "7.1.1", 5204 + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 5205 + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 5206 + "license": "MIT", 5207 + "dependencies": { 5208 + "to-regex-range": "^5.0.1" 5209 + }, 5210 + "engines": { 5211 + "node": ">=8" 5212 + } 5213 + }, 5214 + "node_modules/find-up": { 5215 + "version": "5.0.0", 5216 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 5217 + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 5218 + "license": "MIT", 5219 + "dependencies": { 5220 + "locate-path": "^6.0.0", 5221 + "path-exists": "^4.0.0" 5222 + }, 5223 + "engines": { 5224 + "node": ">=10" 5225 + }, 5226 + "funding": { 5227 + "url": "https://github.com/sponsors/sindresorhus" 5228 + } 5229 + }, 5230 + "node_modules/flatted": { 5231 + "version": "3.3.1", 5232 + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 5233 + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 5234 + "license": "ISC" 5235 + }, 5236 + "node_modules/foreground-child": { 5237 + "version": "3.3.0", 5238 + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 5239 + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 5240 + "license": "ISC", 5241 + "dependencies": { 5242 + "cross-spawn": "^7.0.0", 5243 + "signal-exit": "^4.0.1" 5244 + }, 5245 + "engines": { 5246 + "node": ">=14" 5247 + }, 5248 + "funding": { 5249 + "url": "https://github.com/sponsors/isaacs" 5250 + } 5251 + }, 5252 + "node_modules/foreground-child/node_modules/signal-exit": { 5253 + "version": "4.1.0", 5254 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 5255 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 5256 + "license": "ISC", 5257 + "engines": { 5258 + "node": ">=14" 5259 + }, 5260 + "funding": { 5261 + "url": "https://github.com/sponsors/isaacs" 5262 + } 5263 + }, 5264 + "node_modules/fraction.js": { 5265 + "version": "4.3.7", 5266 + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 5267 + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 5268 + "license": "MIT", 5269 + "engines": { 5270 + "node": "*" 5271 + }, 5272 + "funding": { 5273 + "type": "patreon", 5274 + "url": "https://github.com/sponsors/rawify" 5275 + } 5276 + }, 5277 + "node_modules/fresh": { 5278 + "version": "0.5.2", 5279 + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 5280 + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 5281 + "license": "MIT", 5282 + "engines": { 5283 + "node": ">= 0.6" 5284 + } 5285 + }, 5286 + "node_modules/fs-extra": { 5287 + "version": "11.2.0", 5288 + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", 5289 + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", 5290 + "license": "MIT", 5291 + "dependencies": { 5292 + "graceful-fs": "^4.2.0", 5293 + "jsonfile": "^6.0.1", 5294 + "universalify": "^2.0.0" 5295 + }, 5296 + "engines": { 5297 + "node": ">=14.14" 5298 + } 5299 + }, 5300 + "node_modules/fs-minipass": { 5301 + "version": "2.1.0", 5302 + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 5303 + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 5304 + "license": "ISC", 5305 + "dependencies": { 5306 + "minipass": "^3.0.0" 5307 + }, 5308 + "engines": { 5309 + "node": ">= 8" 5310 + } 5311 + }, 5312 + "node_modules/fs-minipass/node_modules/minipass": { 5313 + "version": "3.3.6", 5314 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 5315 + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 5316 + "license": "ISC", 5317 + "dependencies": { 5318 + "yallist": "^4.0.0" 5319 + }, 5320 + "engines": { 5321 + "node": ">=8" 5322 + } 5323 + }, 5324 + "node_modules/fs-minipass/node_modules/yallist": { 5325 + "version": "4.0.0", 5326 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 5327 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 5328 + "license": "ISC" 5329 + }, 5330 + "node_modules/fs.realpath": { 5331 + "version": "1.0.0", 5332 + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 5333 + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 5334 + "license": "ISC" 5335 + }, 5336 + "node_modules/fsevents": { 5337 + "version": "2.3.3", 5338 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 5339 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 5340 + "hasInstallScript": true, 5341 + "license": "MIT", 5342 + "optional": true, 5343 + "os": [ 5344 + "darwin" 5345 + ], 5346 + "engines": { 5347 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 5348 + } 5349 + }, 5350 + "node_modules/function-bind": { 5351 + "version": "1.1.2", 5352 + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 5353 + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 5354 + "license": "MIT", 5355 + "funding": { 5356 + "url": "https://github.com/sponsors/ljharb" 5357 + } 5358 + }, 5359 + "node_modules/fuse.js": { 5360 + "version": "6.6.2", 5361 + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", 5362 + "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", 5363 + "license": "Apache-2.0", 5364 + "engines": { 5365 + "node": ">=10" 5366 + } 5367 + }, 5368 + "node_modules/gauge": { 5369 + "version": "3.0.2", 5370 + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", 5371 + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", 5372 + "deprecated": "This package is no longer supported.", 5373 + "license": "ISC", 5374 + "dependencies": { 5375 + "aproba": "^1.0.3 || ^2.0.0", 5376 + "color-support": "^1.1.2", 5377 + "console-control-strings": "^1.0.0", 5378 + "has-unicode": "^2.0.1", 5379 + "object-assign": "^4.1.1", 5380 + "signal-exit": "^3.0.0", 5381 + "string-width": "^4.2.3", 5382 + "strip-ansi": "^6.0.1", 5383 + "wide-align": "^1.1.2" 5384 + }, 5385 + "engines": { 5386 + "node": ">=10" 5387 + } 5388 + }, 5389 + "node_modules/gensync": { 5390 + "version": "1.0.0-beta.2", 5391 + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 5392 + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 5393 + "license": "MIT", 5394 + "engines": { 5395 + "node": ">=6.9.0" 5396 + } 5397 + }, 5398 + "node_modules/get-caller-file": { 5399 + "version": "2.0.5", 5400 + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 5401 + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 5402 + "license": "ISC", 5403 + "engines": { 5404 + "node": "6.* || 8.* || >= 10.*" 5405 + } 5406 + }, 5407 + "node_modules/get-port-please": { 5408 + "version": "3.1.2", 5409 + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", 5410 + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==", 5411 + "license": "MIT" 5412 + }, 5413 + "node_modules/get-stream": { 5414 + "version": "6.0.1", 5415 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 5416 + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 5417 + "license": "MIT", 5418 + "engines": { 5419 + "node": ">=10" 5420 + }, 5421 + "funding": { 5422 + "url": "https://github.com/sponsors/sindresorhus" 5423 + } 5424 + }, 5425 + "node_modules/giget": { 5426 + "version": "1.2.3", 5427 + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", 5428 + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", 5429 + "license": "MIT", 5430 + "dependencies": { 5431 + "citty": "^0.1.6", 5432 + "consola": "^3.2.3", 5433 + "defu": "^6.1.4", 5434 + "node-fetch-native": "^1.6.3", 5435 + "nypm": "^0.3.8", 5436 + "ohash": "^1.1.3", 5437 + "pathe": "^1.1.2", 5438 + "tar": "^6.2.0" 5439 + }, 5440 + "bin": { 5441 + "giget": "dist/cli.mjs" 5442 + } 5443 + }, 5444 + "node_modules/git-config-path": { 5445 + "version": "2.0.0", 5446 + "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", 5447 + "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", 5448 + "license": "MIT", 5449 + "engines": { 5450 + "node": ">=4" 5451 + } 5452 + }, 5453 + "node_modules/git-up": { 5454 + "version": "7.0.0", 5455 + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", 5456 + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", 5457 + "license": "MIT", 5458 + "dependencies": { 5459 + "is-ssh": "^1.4.0", 5460 + "parse-url": "^8.1.0" 5461 + } 5462 + }, 5463 + "node_modules/git-url-parse": { 5464 + "version": "14.1.0", 5465 + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.1.0.tgz", 5466 + "integrity": "sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g==", 5467 + "license": "MIT", 5468 + "dependencies": { 5469 + "git-up": "^7.0.0" 5470 + } 5471 + }, 5472 + "node_modules/glob": { 5473 + "version": "8.1.0", 5474 + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 5475 + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 5476 + "deprecated": "Glob versions prior to v9 are no longer supported", 5477 + "license": "ISC", 5478 + "dependencies": { 5479 + "fs.realpath": "^1.0.0", 5480 + "inflight": "^1.0.4", 5481 + "inherits": "2", 5482 + "minimatch": "^5.0.1", 5483 + "once": "^1.3.0" 5484 + }, 5485 + "engines": { 5486 + "node": ">=12" 5487 + }, 5488 + "funding": { 5489 + "url": "https://github.com/sponsors/isaacs" 5490 + } 5491 + }, 5492 + "node_modules/glob-parent": { 5493 + "version": "5.1.2", 5494 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 5495 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 5496 + "license": "ISC", 5497 + "dependencies": { 5498 + "is-glob": "^4.0.1" 5499 + }, 5500 + "engines": { 5501 + "node": ">= 6" 5502 + } 5503 + }, 5504 + "node_modules/global-directory": { 5505 + "version": "4.0.1", 5506 + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", 5507 + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", 5508 + "license": "MIT", 5509 + "dependencies": { 5510 + "ini": "4.1.1" 5511 + }, 5512 + "engines": { 5513 + "node": ">=18" 5514 + }, 5515 + "funding": { 5516 + "url": "https://github.com/sponsors/sindresorhus" 5517 + } 5518 + }, 5519 + "node_modules/globals": { 5520 + "version": "11.12.0", 5521 + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 5522 + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 5523 + "license": "MIT", 5524 + "engines": { 5525 + "node": ">=4" 5526 + } 5527 + }, 5528 + "node_modules/globby": { 5529 + "version": "14.0.2", 5530 + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", 5531 + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", 5532 + "license": "MIT", 5533 + "dependencies": { 5534 + "@sindresorhus/merge-streams": "^2.1.0", 5535 + "fast-glob": "^3.3.2", 5536 + "ignore": "^5.2.4", 5537 + "path-type": "^5.0.0", 5538 + "slash": "^5.1.0", 5539 + "unicorn-magic": "^0.1.0" 5540 + }, 5541 + "engines": { 5542 + "node": ">=18" 5543 + }, 5544 + "funding": { 5545 + "url": "https://github.com/sponsors/sindresorhus" 5546 + } 5547 + }, 5548 + "node_modules/graceful-fs": { 5549 + "version": "4.2.11", 5550 + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 5551 + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 5552 + "license": "ISC" 5553 + }, 5554 + "node_modules/gzip-size": { 5555 + "version": "7.0.0", 5556 + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", 5557 + "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", 5558 + "license": "MIT", 5559 + "dependencies": { 5560 + "duplexer": "^0.1.2" 5561 + }, 5562 + "engines": { 5563 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 5564 + }, 5565 + "funding": { 5566 + "url": "https://github.com/sponsors/sindresorhus" 5567 + } 5568 + }, 5569 + "node_modules/h3": { 5570 + "version": "1.12.0", 5571 + "resolved": "https://registry.npmjs.org/h3/-/h3-1.12.0.tgz", 5572 + "integrity": "sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==", 5573 + "license": "MIT", 5574 + "dependencies": { 5575 + "cookie-es": "^1.1.0", 5576 + "crossws": "^0.2.4", 5577 + "defu": "^6.1.4", 5578 + "destr": "^2.0.3", 5579 + "iron-webcrypto": "^1.1.1", 5580 + "ohash": "^1.1.3", 5581 + "radix3": "^1.1.2", 5582 + "ufo": "^1.5.3", 5583 + "uncrypto": "^0.1.3", 5584 + "unenv": "^1.9.0" 5585 + } 5586 + }, 5587 + "node_modules/has-flag": { 5588 + "version": "3.0.0", 5589 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 5590 + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 5591 + "license": "MIT", 5592 + "engines": { 5593 + "node": ">=4" 5594 + } 5595 + }, 5596 + "node_modules/has-symbols": { 5597 + "version": "1.0.3", 5598 + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 5599 + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 5600 + "license": "MIT", 5601 + "engines": { 5602 + "node": ">= 0.4" 5603 + }, 5604 + "funding": { 5605 + "url": "https://github.com/sponsors/ljharb" 5606 + } 5607 + }, 5608 + "node_modules/has-tostringtag": { 5609 + "version": "1.0.2", 5610 + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 5611 + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 5612 + "license": "MIT", 5613 + "dependencies": { 5614 + "has-symbols": "^1.0.3" 5615 + }, 5616 + "engines": { 5617 + "node": ">= 0.4" 5618 + }, 5619 + "funding": { 5620 + "url": "https://github.com/sponsors/ljharb" 5621 + } 5622 + }, 5623 + "node_modules/has-unicode": { 5624 + "version": "2.0.1", 5625 + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 5626 + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", 5627 + "license": "ISC" 5628 + }, 5629 + "node_modules/hash-sum": { 5630 + "version": "2.0.0", 5631 + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", 5632 + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", 5633 + "license": "MIT" 5634 + }, 5635 + "node_modules/hasown": { 5636 + "version": "2.0.2", 5637 + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 5638 + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 5639 + "license": "MIT", 5640 + "dependencies": { 5641 + "function-bind": "^1.1.2" 5642 + }, 5643 + "engines": { 5644 + "node": ">= 0.4" 5645 + } 5646 + }, 5647 + "node_modules/hookable": { 5648 + "version": "5.5.3", 5649 + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", 5650 + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", 5651 + "license": "MIT" 5652 + }, 5653 + "node_modules/html-tags": { 5654 + "version": "3.3.1", 5655 + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", 5656 + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", 5657 + "license": "MIT", 5658 + "engines": { 5659 + "node": ">=8" 5660 + }, 5661 + "funding": { 5662 + "url": "https://github.com/sponsors/sindresorhus" 5663 + } 5664 + }, 5665 + "node_modules/http-assert": { 5666 + "version": "1.5.0", 5667 + "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", 5668 + "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", 5669 + "license": "MIT", 5670 + "dependencies": { 5671 + "deep-equal": "~1.0.1", 5672 + "http-errors": "~1.8.0" 5673 + }, 5674 + "engines": { 5675 + "node": ">= 0.8" 5676 + } 5677 + }, 5678 + "node_modules/http-assert/node_modules/depd": { 5679 + "version": "1.1.2", 5680 + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 5681 + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 5682 + "license": "MIT", 5683 + "engines": { 5684 + "node": ">= 0.6" 5685 + } 5686 + }, 5687 + "node_modules/http-assert/node_modules/http-errors": { 5688 + "version": "1.8.1", 5689 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", 5690 + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", 5691 + "license": "MIT", 5692 + "dependencies": { 5693 + "depd": "~1.1.2", 5694 + "inherits": "2.0.4", 5695 + "setprototypeof": "1.2.0", 5696 + "statuses": ">= 1.5.0 < 2", 5697 + "toidentifier": "1.0.1" 5698 + }, 5699 + "engines": { 5700 + "node": ">= 0.6" 5701 + } 5702 + }, 5703 + "node_modules/http-assert/node_modules/statuses": { 5704 + "version": "1.5.0", 5705 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 5706 + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 5707 + "license": "MIT", 5708 + "engines": { 5709 + "node": ">= 0.6" 5710 + } 5711 + }, 5712 + "node_modules/http-errors": { 5713 + "version": "2.0.0", 5714 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 5715 + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 5716 + "license": "MIT", 5717 + "dependencies": { 5718 + "depd": "2.0.0", 5719 + "inherits": "2.0.4", 5720 + "setprototypeof": "1.2.0", 5721 + "statuses": "2.0.1", 5722 + "toidentifier": "1.0.1" 5723 + }, 5724 + "engines": { 5725 + "node": ">= 0.8" 5726 + } 5727 + }, 5728 + "node_modules/http-shutdown": { 5729 + "version": "1.2.2", 5730 + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", 5731 + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", 5732 + "license": "MIT", 5733 + "engines": { 5734 + "iojs": ">= 1.0.0", 5735 + "node": ">= 0.12.0" 5736 + } 5737 + }, 5738 + "node_modules/https-proxy-agent": { 5739 + "version": "5.0.1", 5740 + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", 5741 + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", 5742 + "license": "MIT", 5743 + "dependencies": { 5744 + "agent-base": "6", 5745 + "debug": "4" 5746 + }, 5747 + "engines": { 5748 + "node": ">= 6" 5749 + } 5750 + }, 5751 + "node_modules/httpxy": { 5752 + "version": "0.1.5", 5753 + "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.5.tgz", 5754 + "integrity": "sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==", 5755 + "license": "MIT" 5756 + }, 5757 + "node_modules/human-signals": { 5758 + "version": "4.3.1", 5759 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 5760 + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 5761 + "license": "Apache-2.0", 5762 + "engines": { 5763 + "node": ">=14.18.0" 5764 + } 5765 + }, 5766 + "node_modules/ieee754": { 5767 + "version": "1.2.1", 5768 + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 5769 + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 5770 + "funding": [ 5771 + { 5772 + "type": "github", 5773 + "url": "https://github.com/sponsors/feross" 5774 + }, 5775 + { 5776 + "type": "patreon", 5777 + "url": "https://www.patreon.com/feross" 5778 + }, 5779 + { 5780 + "type": "consulting", 5781 + "url": "https://feross.org/support" 5782 + } 5783 + ], 5784 + "license": "BSD-3-Clause" 5785 + }, 5786 + "node_modules/ignore": { 5787 + "version": "5.3.1", 5788 + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 5789 + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 5790 + "license": "MIT", 5791 + "engines": { 5792 + "node": ">= 4" 5793 + } 5794 + }, 5795 + "node_modules/image-meta": { 5796 + "version": "0.2.1", 5797 + "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.1.tgz", 5798 + "integrity": "sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==", 5799 + "license": "MIT" 5800 + }, 5801 + "node_modules/inflight": { 5802 + "version": "1.0.6", 5803 + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 5804 + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 5805 + "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.", 5806 + "license": "ISC", 5807 + "dependencies": { 5808 + "once": "^1.3.0", 5809 + "wrappy": "1" 5810 + } 5811 + }, 5812 + "node_modules/inherits": { 5813 + "version": "2.0.4", 5814 + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 5815 + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 5816 + "license": "ISC" 5817 + }, 5818 + "node_modules/ini": { 5819 + "version": "4.1.1", 5820 + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", 5821 + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", 5822 + "license": "ISC", 5823 + "engines": { 5824 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 5825 + } 5826 + }, 5827 + "node_modules/ioredis": { 5828 + "version": "5.4.1", 5829 + "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.4.1.tgz", 5830 + "integrity": "sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==", 5831 + "license": "MIT", 5832 + "dependencies": { 5833 + "@ioredis/commands": "^1.1.1", 5834 + "cluster-key-slot": "^1.1.0", 5835 + "debug": "^4.3.4", 5836 + "denque": "^2.1.0", 5837 + "lodash.defaults": "^4.2.0", 5838 + "lodash.isarguments": "^3.1.0", 5839 + "redis-errors": "^1.2.0", 5840 + "redis-parser": "^3.0.0", 5841 + "standard-as-callback": "^2.1.0" 5842 + }, 5843 + "engines": { 5844 + "node": ">=12.22.0" 5845 + }, 5846 + "funding": { 5847 + "type": "opencollective", 5848 + "url": "https://opencollective.com/ioredis" 5849 + } 5850 + }, 5851 + "node_modules/iron-webcrypto": { 5852 + "version": "1.2.1", 5853 + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", 5854 + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", 5855 + "license": "MIT", 5856 + "funding": { 5857 + "url": "https://github.com/sponsors/brc-dd" 5858 + } 5859 + }, 5860 + "node_modules/is-binary-path": { 5861 + "version": "2.1.0", 5862 + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 5863 + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 5864 + "license": "MIT", 5865 + "dependencies": { 5866 + "binary-extensions": "^2.0.0" 5867 + }, 5868 + "engines": { 5869 + "node": ">=8" 5870 + } 5871 + }, 5872 + "node_modules/is-builtin-module": { 5873 + "version": "3.2.1", 5874 + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", 5875 + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", 5876 + "license": "MIT", 5877 + "dependencies": { 5878 + "builtin-modules": "^3.3.0" 5879 + }, 5880 + "engines": { 5881 + "node": ">=6" 5882 + }, 5883 + "funding": { 5884 + "url": "https://github.com/sponsors/sindresorhus" 5885 + } 5886 + }, 5887 + "node_modules/is-core-module": { 5888 + "version": "2.15.0", 5889 + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", 5890 + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", 5891 + "license": "MIT", 5892 + "dependencies": { 5893 + "hasown": "^2.0.2" 5894 + }, 5895 + "engines": { 5896 + "node": ">= 0.4" 5897 + }, 5898 + "funding": { 5899 + "url": "https://github.com/sponsors/ljharb" 5900 + } 5901 + }, 5902 + "node_modules/is-docker": { 5903 + "version": "3.0.0", 5904 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 5905 + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 5906 + "license": "MIT", 5907 + "bin": { 5908 + "is-docker": "cli.js" 5909 + }, 5910 + "engines": { 5911 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 5912 + }, 5913 + "funding": { 5914 + "url": "https://github.com/sponsors/sindresorhus" 5915 + } 5916 + }, 5917 + "node_modules/is-extglob": { 5918 + "version": "2.1.1", 5919 + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 5920 + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 5921 + "license": "MIT", 5922 + "engines": { 5923 + "node": ">=0.10.0" 5924 + } 5925 + }, 5926 + "node_modules/is-fullwidth-code-point": { 5927 + "version": "3.0.0", 5928 + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 5929 + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 5930 + "license": "MIT", 5931 + "engines": { 5932 + "node": ">=8" 5933 + } 5934 + }, 5935 + "node_modules/is-generator-function": { 5936 + "version": "1.0.10", 5937 + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 5938 + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 5939 + "license": "MIT", 5940 + "dependencies": { 5941 + "has-tostringtag": "^1.0.0" 5942 + }, 5943 + "engines": { 5944 + "node": ">= 0.4" 5945 + }, 5946 + "funding": { 5947 + "url": "https://github.com/sponsors/ljharb" 5948 + } 5949 + }, 5950 + "node_modules/is-glob": { 5951 + "version": "4.0.3", 5952 + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 5953 + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 5954 + "license": "MIT", 5955 + "dependencies": { 5956 + "is-extglob": "^2.1.1" 5957 + }, 5958 + "engines": { 5959 + "node": ">=0.10.0" 5960 + } 5961 + }, 5962 + "node_modules/is-inside-container": { 5963 + "version": "1.0.0", 5964 + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 5965 + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 5966 + "license": "MIT", 5967 + "dependencies": { 5968 + "is-docker": "^3.0.0" 5969 + }, 5970 + "bin": { 5971 + "is-inside-container": "cli.js" 5972 + }, 5973 + "engines": { 5974 + "node": ">=14.16" 5975 + }, 5976 + "funding": { 5977 + "url": "https://github.com/sponsors/sindresorhus" 5978 + } 5979 + }, 5980 + "node_modules/is-installed-globally": { 5981 + "version": "1.0.0", 5982 + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz", 5983 + "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", 5984 + "license": "MIT", 5985 + "dependencies": { 5986 + "global-directory": "^4.0.1", 5987 + "is-path-inside": "^4.0.0" 5988 + }, 5989 + "engines": { 5990 + "node": ">=18" 5991 + }, 5992 + "funding": { 5993 + "url": "https://github.com/sponsors/sindresorhus" 5994 + } 5995 + }, 5996 + "node_modules/is-module": { 5997 + "version": "1.0.0", 5998 + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", 5999 + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", 6000 + "license": "MIT" 6001 + }, 6002 + "node_modules/is-number": { 6003 + "version": "7.0.0", 6004 + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 6005 + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 6006 + "license": "MIT", 6007 + "engines": { 6008 + "node": ">=0.12.0" 6009 + } 6010 + }, 6011 + "node_modules/is-path-inside": { 6012 + "version": "4.0.0", 6013 + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", 6014 + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", 6015 + "license": "MIT", 6016 + "engines": { 6017 + "node": ">=12" 6018 + }, 6019 + "funding": { 6020 + "url": "https://github.com/sponsors/sindresorhus" 6021 + } 6022 + }, 6023 + "node_modules/is-reference": { 6024 + "version": "1.2.1", 6025 + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", 6026 + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", 6027 + "license": "MIT", 6028 + "dependencies": { 6029 + "@types/estree": "*" 6030 + } 6031 + }, 6032 + "node_modules/is-ssh": { 6033 + "version": "1.4.0", 6034 + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", 6035 + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", 6036 + "license": "MIT", 6037 + "dependencies": { 6038 + "protocols": "^2.0.1" 6039 + } 6040 + }, 6041 + "node_modules/is-stream": { 6042 + "version": "3.0.0", 6043 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 6044 + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 6045 + "license": "MIT", 6046 + "engines": { 6047 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 6048 + }, 6049 + "funding": { 6050 + "url": "https://github.com/sponsors/sindresorhus" 6051 + } 6052 + }, 6053 + "node_modules/is-what": { 6054 + "version": "4.1.16", 6055 + "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", 6056 + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", 6057 + "license": "MIT", 6058 + "engines": { 6059 + "node": ">=12.13" 6060 + }, 6061 + "funding": { 6062 + "url": "https://github.com/sponsors/mesqueeb" 6063 + } 6064 + }, 6065 + "node_modules/is-wsl": { 6066 + "version": "3.1.0", 6067 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", 6068 + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", 6069 + "license": "MIT", 6070 + "dependencies": { 6071 + "is-inside-container": "^1.0.0" 6072 + }, 6073 + "engines": { 6074 + "node": ">=16" 6075 + }, 6076 + "funding": { 6077 + "url": "https://github.com/sponsors/sindresorhus" 6078 + } 6079 + }, 6080 + "node_modules/is64bit": { 6081 + "version": "2.0.0", 6082 + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", 6083 + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", 6084 + "license": "MIT", 6085 + "dependencies": { 6086 + "system-architecture": "^0.1.0" 6087 + }, 6088 + "engines": { 6089 + "node": ">=18" 6090 + }, 6091 + "funding": { 6092 + "url": "https://github.com/sponsors/sindresorhus" 6093 + } 6094 + }, 6095 + "node_modules/isarray": { 6096 + "version": "1.0.0", 6097 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 6098 + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 6099 + "license": "MIT" 6100 + }, 6101 + "node_modules/isexe": { 6102 + "version": "2.0.0", 6103 + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 6104 + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 6105 + "license": "ISC" 6106 + }, 6107 + "node_modules/jackspeak": { 6108 + "version": "3.4.3", 6109 + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 6110 + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 6111 + "license": "BlueOak-1.0.0", 6112 + "dependencies": { 6113 + "@isaacs/cliui": "^8.0.2" 6114 + }, 6115 + "funding": { 6116 + "url": "https://github.com/sponsors/isaacs" 6117 + }, 6118 + "optionalDependencies": { 6119 + "@pkgjs/parseargs": "^0.11.0" 6120 + } 6121 + }, 6122 + "node_modules/jiti": { 6123 + "version": "1.21.6", 6124 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 6125 + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 6126 + "license": "MIT", 6127 + "bin": { 6128 + "jiti": "bin/jiti.js" 6129 + } 6130 + }, 6131 + "node_modules/js-tokens": { 6132 + "version": "4.0.0", 6133 + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 6134 + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 6135 + "license": "MIT" 6136 + }, 6137 + "node_modules/js-yaml": { 6138 + "version": "4.1.0", 6139 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 6140 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 6141 + "license": "MIT", 6142 + "dependencies": { 6143 + "argparse": "^2.0.1" 6144 + }, 6145 + "bin": { 6146 + "js-yaml": "bin/js-yaml.js" 6147 + } 6148 + }, 6149 + "node_modules/jsesc": { 6150 + "version": "2.5.2", 6151 + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 6152 + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 6153 + "license": "MIT", 6154 + "bin": { 6155 + "jsesc": "bin/jsesc" 6156 + }, 6157 + "engines": { 6158 + "node": ">=4" 6159 + } 6160 + }, 6161 + "node_modules/json5": { 6162 + "version": "2.2.3", 6163 + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 6164 + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 6165 + "license": "MIT", 6166 + "bin": { 6167 + "json5": "lib/cli.js" 6168 + }, 6169 + "engines": { 6170 + "node": ">=6" 6171 + } 6172 + }, 6173 + "node_modules/jsonfile": { 6174 + "version": "6.1.0", 6175 + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 6176 + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 6177 + "license": "MIT", 6178 + "dependencies": { 6179 + "universalify": "^2.0.0" 6180 + }, 6181 + "optionalDependencies": { 6182 + "graceful-fs": "^4.1.6" 6183 + } 6184 + }, 6185 + "node_modules/keygrip": { 6186 + "version": "1.1.0", 6187 + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", 6188 + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", 6189 + "license": "MIT", 6190 + "dependencies": { 6191 + "tsscmp": "1.0.6" 6192 + }, 6193 + "engines": { 6194 + "node": ">= 0.6" 6195 + } 6196 + }, 6197 + "node_modules/kleur": { 6198 + "version": "3.0.3", 6199 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 6200 + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 6201 + "license": "MIT", 6202 + "engines": { 6203 + "node": ">=6" 6204 + } 6205 + }, 6206 + "node_modules/klona": { 6207 + "version": "2.0.6", 6208 + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", 6209 + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", 6210 + "license": "MIT", 6211 + "engines": { 6212 + "node": ">= 8" 6213 + } 6214 + }, 6215 + "node_modules/knitwork": { 6216 + "version": "1.1.0", 6217 + "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.1.0.tgz", 6218 + "integrity": "sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==", 6219 + "license": "MIT" 6220 + }, 6221 + "node_modules/koa": { 6222 + "version": "2.15.3", 6223 + "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.3.tgz", 6224 + "integrity": "sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==", 6225 + "license": "MIT", 6226 + "dependencies": { 6227 + "accepts": "^1.3.5", 6228 + "cache-content-type": "^1.0.0", 6229 + "content-disposition": "~0.5.2", 6230 + "content-type": "^1.0.4", 6231 + "cookies": "~0.9.0", 6232 + "debug": "^4.3.2", 6233 + "delegates": "^1.0.0", 6234 + "depd": "^2.0.0", 6235 + "destroy": "^1.0.4", 6236 + "encodeurl": "^1.0.2", 6237 + "escape-html": "^1.0.3", 6238 + "fresh": "~0.5.2", 6239 + "http-assert": "^1.3.0", 6240 + "http-errors": "^1.6.3", 6241 + "is-generator-function": "^1.0.7", 6242 + "koa-compose": "^4.1.0", 6243 + "koa-convert": "^2.0.0", 6244 + "on-finished": "^2.3.0", 6245 + "only": "~0.0.2", 6246 + "parseurl": "^1.3.2", 6247 + "statuses": "^1.5.0", 6248 + "type-is": "^1.6.16", 6249 + "vary": "^1.1.2" 6250 + }, 6251 + "engines": { 6252 + "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" 6253 + } 6254 + }, 6255 + "node_modules/koa-compose": { 6256 + "version": "4.1.0", 6257 + "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", 6258 + "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", 6259 + "license": "MIT" 6260 + }, 6261 + "node_modules/koa-convert": { 6262 + "version": "2.0.0", 6263 + "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", 6264 + "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", 6265 + "license": "MIT", 6266 + "dependencies": { 6267 + "co": "^4.6.0", 6268 + "koa-compose": "^4.1.0" 6269 + }, 6270 + "engines": { 6271 + "node": ">= 10" 6272 + } 6273 + }, 6274 + "node_modules/koa-send": { 6275 + "version": "5.0.1", 6276 + "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", 6277 + "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", 6278 + "license": "MIT", 6279 + "dependencies": { 6280 + "debug": "^4.1.1", 6281 + "http-errors": "^1.7.3", 6282 + "resolve-path": "^1.4.0" 6283 + }, 6284 + "engines": { 6285 + "node": ">= 8" 6286 + } 6287 + }, 6288 + "node_modules/koa-send/node_modules/depd": { 6289 + "version": "1.1.2", 6290 + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 6291 + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 6292 + "license": "MIT", 6293 + "engines": { 6294 + "node": ">= 0.6" 6295 + } 6296 + }, 6297 + "node_modules/koa-send/node_modules/http-errors": { 6298 + "version": "1.8.1", 6299 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", 6300 + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", 6301 + "license": "MIT", 6302 + "dependencies": { 6303 + "depd": "~1.1.2", 6304 + "inherits": "2.0.4", 6305 + "setprototypeof": "1.2.0", 6306 + "statuses": ">= 1.5.0 < 2", 6307 + "toidentifier": "1.0.1" 6308 + }, 6309 + "engines": { 6310 + "node": ">= 0.6" 6311 + } 6312 + }, 6313 + "node_modules/koa-send/node_modules/statuses": { 6314 + "version": "1.5.0", 6315 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 6316 + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 6317 + "license": "MIT", 6318 + "engines": { 6319 + "node": ">= 0.6" 6320 + } 6321 + }, 6322 + "node_modules/koa-static": { 6323 + "version": "5.0.0", 6324 + "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", 6325 + "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", 6326 + "license": "MIT", 6327 + "dependencies": { 6328 + "debug": "^3.1.0", 6329 + "koa-send": "^5.0.0" 6330 + }, 6331 + "engines": { 6332 + "node": ">= 7.6.0" 6333 + } 6334 + }, 6335 + "node_modules/koa-static/node_modules/debug": { 6336 + "version": "3.2.7", 6337 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 6338 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 6339 + "license": "MIT", 6340 + "dependencies": { 6341 + "ms": "^2.1.1" 6342 + } 6343 + }, 6344 + "node_modules/koa/node_modules/http-errors": { 6345 + "version": "1.8.1", 6346 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", 6347 + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", 6348 + "license": "MIT", 6349 + "dependencies": { 6350 + "depd": "~1.1.2", 6351 + "inherits": "2.0.4", 6352 + "setprototypeof": "1.2.0", 6353 + "statuses": ">= 1.5.0 < 2", 6354 + "toidentifier": "1.0.1" 6355 + }, 6356 + "engines": { 6357 + "node": ">= 0.6" 6358 + } 6359 + }, 6360 + "node_modules/koa/node_modules/http-errors/node_modules/depd": { 6361 + "version": "1.1.2", 6362 + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 6363 + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 6364 + "license": "MIT", 6365 + "engines": { 6366 + "node": ">= 0.6" 6367 + } 6368 + }, 6369 + "node_modules/koa/node_modules/statuses": { 6370 + "version": "1.5.0", 6371 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 6372 + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 6373 + "license": "MIT", 6374 + "engines": { 6375 + "node": ">= 0.6" 6376 + } 6377 + }, 6378 + "node_modules/kolorist": { 6379 + "version": "1.8.0", 6380 + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", 6381 + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", 6382 + "license": "MIT" 6383 + }, 6384 + "node_modules/launch-editor": { 6385 + "version": "2.8.1", 6386 + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.1.tgz", 6387 + "integrity": "sha512-elBx2l/tp9z99X5H/qev8uyDywVh0VXAwEbjk8kJhnc5grOFkGh7aW6q55me9xnYbss261XtnUrysZ+XvGbhQA==", 6388 + "license": "MIT", 6389 + "dependencies": { 6390 + "picocolors": "^1.0.0", 6391 + "shell-quote": "^1.8.1" 6392 + } 6393 + }, 6394 + "node_modules/lazystream": { 6395 + "version": "1.0.1", 6396 + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", 6397 + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", 6398 + "license": "MIT", 6399 + "dependencies": { 6400 + "readable-stream": "^2.0.5" 6401 + }, 6402 + "engines": { 6403 + "node": ">= 0.6.3" 6404 + } 6405 + }, 6406 + "node_modules/lazystream/node_modules/readable-stream": { 6407 + "version": "2.3.8", 6408 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 6409 + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 6410 + "license": "MIT", 6411 + "dependencies": { 6412 + "core-util-is": "~1.0.0", 6413 + "inherits": "~2.0.3", 6414 + "isarray": "~1.0.0", 6415 + "process-nextick-args": "~2.0.0", 6416 + "safe-buffer": "~5.1.1", 6417 + "string_decoder": "~1.1.1", 6418 + "util-deprecate": "~1.0.1" 6419 + } 6420 + }, 6421 + "node_modules/lazystream/node_modules/safe-buffer": { 6422 + "version": "5.1.2", 6423 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 6424 + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 6425 + "license": "MIT" 6426 + }, 6427 + "node_modules/lazystream/node_modules/string_decoder": { 6428 + "version": "1.1.1", 6429 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 6430 + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 6431 + "license": "MIT", 6432 + "dependencies": { 6433 + "safe-buffer": "~5.1.0" 6434 + } 6435 + }, 6436 + "node_modules/lilconfig": { 6437 + "version": "3.1.2", 6438 + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", 6439 + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", 6440 + "license": "MIT", 6441 + "engines": { 6442 + "node": ">=14" 6443 + }, 6444 + "funding": { 6445 + "url": "https://github.com/sponsors/antonk52" 6446 + } 6447 + }, 6448 + "node_modules/lines-and-columns": { 6449 + "version": "1.2.4", 6450 + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 6451 + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 6452 + "license": "MIT" 6453 + }, 6454 + "node_modules/listhen": { 6455 + "version": "1.7.2", 6456 + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", 6457 + "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", 6458 + "license": "MIT", 6459 + "dependencies": { 6460 + "@parcel/watcher": "^2.4.1", 6461 + "@parcel/watcher-wasm": "^2.4.1", 6462 + "citty": "^0.1.6", 6463 + "clipboardy": "^4.0.0", 6464 + "consola": "^3.2.3", 6465 + "crossws": "^0.2.0", 6466 + "defu": "^6.1.4", 6467 + "get-port-please": "^3.1.2", 6468 + "h3": "^1.10.2", 6469 + "http-shutdown": "^1.2.2", 6470 + "jiti": "^1.21.0", 6471 + "mlly": "^1.6.1", 6472 + "node-forge": "^1.3.1", 6473 + "pathe": "^1.1.2", 6474 + "std-env": "^3.7.0", 6475 + "ufo": "^1.4.0", 6476 + "untun": "^0.1.3", 6477 + "uqr": "^0.1.2" 6478 + }, 6479 + "bin": { 6480 + "listen": "bin/listhen.mjs", 6481 + "listhen": "bin/listhen.mjs" 6482 + } 6483 + }, 6484 + "node_modules/local-pkg": { 6485 + "version": "0.5.0", 6486 + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", 6487 + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", 6488 + "license": "MIT", 6489 + "dependencies": { 6490 + "mlly": "^1.4.2", 6491 + "pkg-types": "^1.0.3" 6492 + }, 6493 + "engines": { 6494 + "node": ">=14" 6495 + }, 6496 + "funding": { 6497 + "url": "https://github.com/sponsors/antfu" 6498 + } 6499 + }, 6500 + "node_modules/locate-path": { 6501 + "version": "6.0.0", 6502 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 6503 + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 6504 + "license": "MIT", 6505 + "dependencies": { 6506 + "p-locate": "^5.0.0" 6507 + }, 6508 + "engines": { 6509 + "node": ">=10" 6510 + }, 6511 + "funding": { 6512 + "url": "https://github.com/sponsors/sindresorhus" 6513 + } 6514 + }, 6515 + "node_modules/lodash": { 6516 + "version": "4.17.21", 6517 + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 6518 + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 6519 + "license": "MIT" 6520 + }, 6521 + "node_modules/lodash.castarray": { 6522 + "version": "4.4.0", 6523 + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", 6524 + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", 6525 + "license": "MIT" 6526 + }, 6527 + "node_modules/lodash.defaults": { 6528 + "version": "4.2.0", 6529 + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", 6530 + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", 6531 + "license": "MIT" 6532 + }, 6533 + "node_modules/lodash.isarguments": { 6534 + "version": "3.1.0", 6535 + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", 6536 + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", 6537 + "license": "MIT" 6538 + }, 6539 + "node_modules/lodash.isplainobject": { 6540 + "version": "4.0.6", 6541 + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", 6542 + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", 6543 + "license": "MIT" 6544 + }, 6545 + "node_modules/lodash.memoize": { 6546 + "version": "4.1.2", 6547 + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 6548 + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 6549 + "license": "MIT" 6550 + }, 6551 + "node_modules/lodash.merge": { 6552 + "version": "4.6.2", 6553 + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 6554 + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 6555 + "license": "MIT" 6556 + }, 6557 + "node_modules/lodash.uniq": { 6558 + "version": "4.5.0", 6559 + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", 6560 + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", 6561 + "license": "MIT" 6562 + }, 6563 + "node_modules/lru-cache": { 6564 + "version": "5.1.1", 6565 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 6566 + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 6567 + "license": "ISC", 6568 + "dependencies": { 6569 + "yallist": "^3.0.2" 6570 + } 6571 + }, 6572 + "node_modules/magic-string": { 6573 + "version": "0.30.11", 6574 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", 6575 + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", 6576 + "license": "MIT", 6577 + "dependencies": { 6578 + "@jridgewell/sourcemap-codec": "^1.5.0" 6579 + } 6580 + }, 6581 + "node_modules/magic-string-ast": { 6582 + "version": "0.6.2", 6583 + "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.6.2.tgz", 6584 + "integrity": "sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==", 6585 + "license": "MIT", 6586 + "dependencies": { 6587 + "magic-string": "^0.30.10" 6588 + }, 6589 + "engines": { 6590 + "node": ">=16.14.0" 6591 + } 6592 + }, 6593 + "node_modules/magicast": { 6594 + "version": "0.3.4", 6595 + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz", 6596 + "integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==", 6597 + "license": "MIT", 6598 + "dependencies": { 6599 + "@babel/parser": "^7.24.4", 6600 + "@babel/types": "^7.24.0", 6601 + "source-map-js": "^1.2.0" 6602 + } 6603 + }, 6604 + "node_modules/make-dir": { 6605 + "version": "3.1.0", 6606 + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 6607 + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 6608 + "license": "MIT", 6609 + "dependencies": { 6610 + "semver": "^6.0.0" 6611 + }, 6612 + "engines": { 6613 + "node": ">=8" 6614 + }, 6615 + "funding": { 6616 + "url": "https://github.com/sponsors/sindresorhus" 6617 + } 6618 + }, 6619 + "node_modules/make-dir/node_modules/semver": { 6620 + "version": "6.3.1", 6621 + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 6622 + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 6623 + "license": "ISC", 6624 + "bin": { 6625 + "semver": "bin/semver.js" 6626 + } 6627 + }, 6628 + "node_modules/mdn-data": { 6629 + "version": "2.0.30", 6630 + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 6631 + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", 6632 + "license": "CC0-1.0" 6633 + }, 6634 + "node_modules/media-typer": { 6635 + "version": "0.3.0", 6636 + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 6637 + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 6638 + "license": "MIT", 6639 + "engines": { 6640 + "node": ">= 0.6" 6641 + } 6642 + }, 6643 + "node_modules/merge-stream": { 6644 + "version": "2.0.0", 6645 + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 6646 + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 6647 + "license": "MIT" 6648 + }, 6649 + "node_modules/merge2": { 6650 + "version": "1.4.1", 6651 + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 6652 + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 6653 + "license": "MIT", 6654 + "engines": { 6655 + "node": ">= 8" 6656 + } 6657 + }, 6658 + "node_modules/methods": { 6659 + "version": "1.1.2", 6660 + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 6661 + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 6662 + "license": "MIT", 6663 + "engines": { 6664 + "node": ">= 0.6" 6665 + } 6666 + }, 6667 + "node_modules/micromatch": { 6668 + "version": "4.0.7", 6669 + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 6670 + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 6671 + "license": "MIT", 6672 + "dependencies": { 6673 + "braces": "^3.0.3", 6674 + "picomatch": "^2.3.1" 6675 + }, 6676 + "engines": { 6677 + "node": ">=8.6" 6678 + } 6679 + }, 6680 + "node_modules/mime": { 6681 + "version": "4.0.4", 6682 + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.4.tgz", 6683 + "integrity": "sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==", 6684 + "funding": [ 6685 + "https://github.com/sponsors/broofa" 6686 + ], 6687 + "license": "MIT", 6688 + "bin": { 6689 + "mime": "bin/cli.js" 6690 + }, 6691 + "engines": { 6692 + "node": ">=16" 6693 + } 6694 + }, 6695 + "node_modules/mime-db": { 6696 + "version": "1.52.0", 6697 + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 6698 + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 6699 + "license": "MIT", 6700 + "engines": { 6701 + "node": ">= 0.6" 6702 + } 6703 + }, 6704 + "node_modules/mime-types": { 6705 + "version": "2.1.35", 6706 + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 6707 + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 6708 + "license": "MIT", 6709 + "dependencies": { 6710 + "mime-db": "1.52.0" 6711 + }, 6712 + "engines": { 6713 + "node": ">= 0.6" 6714 + } 6715 + }, 6716 + "node_modules/mimic-fn": { 6717 + "version": "4.0.0", 6718 + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 6719 + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 6720 + "license": "MIT", 6721 + "engines": { 6722 + "node": ">=12" 6723 + }, 6724 + "funding": { 6725 + "url": "https://github.com/sponsors/sindresorhus" 6726 + } 6727 + }, 6728 + "node_modules/mini-svg-data-uri": { 6729 + "version": "1.4.4", 6730 + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", 6731 + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", 6732 + "license": "MIT", 6733 + "bin": { 6734 + "mini-svg-data-uri": "cli.js" 6735 + } 6736 + }, 6737 + "node_modules/minimatch": { 6738 + "version": "5.1.6", 6739 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 6740 + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 6741 + "license": "ISC", 6742 + "dependencies": { 6743 + "brace-expansion": "^2.0.1" 6744 + }, 6745 + "engines": { 6746 + "node": ">=10" 6747 + } 6748 + }, 6749 + "node_modules/minimist": { 6750 + "version": "1.2.8", 6751 + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 6752 + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 6753 + "license": "MIT", 6754 + "funding": { 6755 + "url": "https://github.com/sponsors/ljharb" 6756 + } 6757 + }, 6758 + "node_modules/minipass": { 6759 + "version": "5.0.0", 6760 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 6761 + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 6762 + "license": "ISC", 6763 + "engines": { 6764 + "node": ">=8" 6765 + } 6766 + }, 6767 + "node_modules/minizlib": { 6768 + "version": "2.1.2", 6769 + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 6770 + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 6771 + "license": "MIT", 6772 + "dependencies": { 6773 + "minipass": "^3.0.0", 6774 + "yallist": "^4.0.0" 6775 + }, 6776 + "engines": { 6777 + "node": ">= 8" 6778 + } 6779 + }, 6780 + "node_modules/minizlib/node_modules/minipass": { 6781 + "version": "3.3.6", 6782 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 6783 + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 6784 + "license": "ISC", 6785 + "dependencies": { 6786 + "yallist": "^4.0.0" 6787 + }, 6788 + "engines": { 6789 + "node": ">=8" 6790 + } 6791 + }, 6792 + "node_modules/minizlib/node_modules/yallist": { 6793 + "version": "4.0.0", 6794 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 6795 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 6796 + "license": "ISC" 6797 + }, 6798 + "node_modules/mitt": { 6799 + "version": "3.0.1", 6800 + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 6801 + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 6802 + "license": "MIT" 6803 + }, 6804 + "node_modules/mkdirp": { 6805 + "version": "1.0.4", 6806 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 6807 + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 6808 + "license": "MIT", 6809 + "bin": { 6810 + "mkdirp": "bin/cmd.js" 6811 + }, 6812 + "engines": { 6813 + "node": ">=10" 6814 + } 6815 + }, 6816 + "node_modules/mlly": { 6817 + "version": "1.7.1", 6818 + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", 6819 + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", 6820 + "license": "MIT", 6821 + "dependencies": { 6822 + "acorn": "^8.11.3", 6823 + "pathe": "^1.1.2", 6824 + "pkg-types": "^1.1.1", 6825 + "ufo": "^1.5.3" 6826 + } 6827 + }, 6828 + "node_modules/mri": { 6829 + "version": "1.2.0", 6830 + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 6831 + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 6832 + "license": "MIT", 6833 + "engines": { 6834 + "node": ">=4" 6835 + } 6836 + }, 6837 + "node_modules/mrmime": { 6838 + "version": "2.0.0", 6839 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", 6840 + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", 6841 + "license": "MIT", 6842 + "engines": { 6843 + "node": ">=10" 6844 + } 6845 + }, 6846 + "node_modules/ms": { 6847 + "version": "2.1.2", 6848 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 6849 + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 6850 + "license": "MIT" 6851 + }, 6852 + "node_modules/mz": { 6853 + "version": "2.7.0", 6854 + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 6855 + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 6856 + "license": "MIT", 6857 + "dependencies": { 6858 + "any-promise": "^1.0.0", 6859 + "object-assign": "^4.0.1", 6860 + "thenify-all": "^1.0.0" 6861 + } 6862 + }, 6863 + "node_modules/nanoid": { 6864 + "version": "5.0.7", 6865 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz", 6866 + "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==", 6867 + "funding": [ 6868 + { 6869 + "type": "github", 6870 + "url": "https://github.com/sponsors/ai" 6871 + } 6872 + ], 6873 + "license": "MIT", 6874 + "bin": { 6875 + "nanoid": "bin/nanoid.js" 6876 + }, 6877 + "engines": { 6878 + "node": "^18 || >=20" 6879 + } 6880 + }, 6881 + "node_modules/negotiator": { 6882 + "version": "0.6.3", 6883 + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 6884 + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 6885 + "license": "MIT", 6886 + "engines": { 6887 + "node": ">= 0.6" 6888 + } 6889 + }, 6890 + "node_modules/nitropack": { 6891 + "version": "2.9.7", 6892 + "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.9.7.tgz", 6893 + "integrity": "sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==", 6894 + "license": "MIT", 6895 + "dependencies": { 6896 + "@cloudflare/kv-asset-handler": "^0.3.4", 6897 + "@netlify/functions": "^2.8.0", 6898 + "@rollup/plugin-alias": "^5.1.0", 6899 + "@rollup/plugin-commonjs": "^25.0.8", 6900 + "@rollup/plugin-inject": "^5.0.5", 6901 + "@rollup/plugin-json": "^6.1.0", 6902 + "@rollup/plugin-node-resolve": "^15.2.3", 6903 + "@rollup/plugin-replace": "^5.0.7", 6904 + "@rollup/plugin-terser": "^0.4.4", 6905 + "@rollup/pluginutils": "^5.1.0", 6906 + "@types/http-proxy": "^1.17.14", 6907 + "@vercel/nft": "^0.26.5", 6908 + "archiver": "^7.0.1", 6909 + "c12": "^1.11.1", 6910 + "chalk": "^5.3.0", 6911 + "chokidar": "^3.6.0", 6912 + "citty": "^0.1.6", 6913 + "consola": "^3.2.3", 6914 + "cookie-es": "^1.1.0", 6915 + "croner": "^8.0.2", 6916 + "crossws": "^0.2.4", 6917 + "db0": "^0.1.4", 6918 + "defu": "^6.1.4", 6919 + "destr": "^2.0.3", 6920 + "dot-prop": "^8.0.2", 6921 + "esbuild": "^0.20.2", 6922 + "escape-string-regexp": "^5.0.0", 6923 + "etag": "^1.8.1", 6924 + "fs-extra": "^11.2.0", 6925 + "globby": "^14.0.1", 6926 + "gzip-size": "^7.0.0", 6927 + "h3": "^1.12.0", 6928 + "hookable": "^5.5.3", 6929 + "httpxy": "^0.1.5", 6930 + "ioredis": "^5.4.1", 6931 + "jiti": "^1.21.6", 6932 + "klona": "^2.0.6", 6933 + "knitwork": "^1.1.0", 6934 + "listhen": "^1.7.2", 6935 + "magic-string": "^0.30.10", 6936 + "mime": "^4.0.3", 6937 + "mlly": "^1.7.1", 6938 + "mri": "^1.2.0", 6939 + "node-fetch-native": "^1.6.4", 6940 + "ofetch": "^1.3.4", 6941 + "ohash": "^1.1.3", 6942 + "openapi-typescript": "^6.7.6", 6943 + "pathe": "^1.1.2", 6944 + "perfect-debounce": "^1.0.0", 6945 + "pkg-types": "^1.1.1", 6946 + "pretty-bytes": "^6.1.1", 6947 + "radix3": "^1.1.2", 6948 + "rollup": "^4.18.0", 6949 + "rollup-plugin-visualizer": "^5.12.0", 6950 + "scule": "^1.3.0", 6951 + "semver": "^7.6.2", 6952 + "serve-placeholder": "^2.0.2", 6953 + "serve-static": "^1.15.0", 6954 + "std-env": "^3.7.0", 6955 + "ufo": "^1.5.3", 6956 + "uncrypto": "^0.1.3", 6957 + "unctx": "^2.3.1", 6958 + "unenv": "^1.9.0", 6959 + "unimport": "^3.7.2", 6960 + "unstorage": "^1.10.2", 6961 + "unwasm": "^0.3.9" 6962 + }, 6963 + "bin": { 6964 + "nitro": "dist/cli/index.mjs", 6965 + "nitropack": "dist/cli/index.mjs" 6966 + }, 6967 + "engines": { 6968 + "node": "^16.11.0 || >=17.0.0" 6969 + }, 6970 + "peerDependencies": { 6971 + "xml2js": "^0.6.2" 6972 + }, 6973 + "peerDependenciesMeta": { 6974 + "xml2js": { 6975 + "optional": true 6976 + } 6977 + } 6978 + }, 6979 + "node_modules/nitropack/node_modules/@esbuild/aix-ppc64": { 6980 + "version": "0.20.2", 6981 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", 6982 + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", 6983 + "cpu": [ 6984 + "ppc64" 6985 + ], 6986 + "license": "MIT", 6987 + "optional": true, 6988 + "os": [ 6989 + "aix" 6990 + ], 6991 + "engines": { 6992 + "node": ">=12" 6993 + } 6994 + }, 6995 + "node_modules/nitropack/node_modules/@esbuild/android-arm": { 6996 + "version": "0.20.2", 6997 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", 6998 + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", 6999 + "cpu": [ 7000 + "arm" 7001 + ], 7002 + "license": "MIT", 7003 + "optional": true, 7004 + "os": [ 7005 + "android" 7006 + ], 7007 + "engines": { 7008 + "node": ">=12" 7009 + } 7010 + }, 7011 + "node_modules/nitropack/node_modules/@esbuild/android-arm64": { 7012 + "version": "0.20.2", 7013 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", 7014 + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", 7015 + "cpu": [ 7016 + "arm64" 7017 + ], 7018 + "license": "MIT", 7019 + "optional": true, 7020 + "os": [ 7021 + "android" 7022 + ], 7023 + "engines": { 7024 + "node": ">=12" 7025 + } 7026 + }, 7027 + "node_modules/nitropack/node_modules/@esbuild/android-x64": { 7028 + "version": "0.20.2", 7029 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", 7030 + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", 7031 + "cpu": [ 7032 + "x64" 7033 + ], 7034 + "license": "MIT", 7035 + "optional": true, 7036 + "os": [ 7037 + "android" 7038 + ], 7039 + "engines": { 7040 + "node": ">=12" 7041 + } 7042 + }, 7043 + "node_modules/nitropack/node_modules/@esbuild/darwin-arm64": { 7044 + "version": "0.20.2", 7045 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", 7046 + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", 7047 + "cpu": [ 7048 + "arm64" 7049 + ], 7050 + "license": "MIT", 7051 + "optional": true, 7052 + "os": [ 7053 + "darwin" 7054 + ], 7055 + "engines": { 7056 + "node": ">=12" 7057 + } 7058 + }, 7059 + "node_modules/nitropack/node_modules/@esbuild/darwin-x64": { 7060 + "version": "0.20.2", 7061 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", 7062 + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", 7063 + "cpu": [ 7064 + "x64" 7065 + ], 7066 + "license": "MIT", 7067 + "optional": true, 7068 + "os": [ 7069 + "darwin" 7070 + ], 7071 + "engines": { 7072 + "node": ">=12" 7073 + } 7074 + }, 7075 + "node_modules/nitropack/node_modules/@esbuild/freebsd-arm64": { 7076 + "version": "0.20.2", 7077 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", 7078 + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", 7079 + "cpu": [ 7080 + "arm64" 7081 + ], 7082 + "license": "MIT", 7083 + "optional": true, 7084 + "os": [ 7085 + "freebsd" 7086 + ], 7087 + "engines": { 7088 + "node": ">=12" 7089 + } 7090 + }, 7091 + "node_modules/nitropack/node_modules/@esbuild/freebsd-x64": { 7092 + "version": "0.20.2", 7093 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", 7094 + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", 7095 + "cpu": [ 7096 + "x64" 7097 + ], 7098 + "license": "MIT", 7099 + "optional": true, 7100 + "os": [ 7101 + "freebsd" 7102 + ], 7103 + "engines": { 7104 + "node": ">=12" 7105 + } 7106 + }, 7107 + "node_modules/nitropack/node_modules/@esbuild/linux-arm": { 7108 + "version": "0.20.2", 7109 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", 7110 + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", 7111 + "cpu": [ 7112 + "arm" 7113 + ], 7114 + "license": "MIT", 7115 + "optional": true, 7116 + "os": [ 7117 + "linux" 7118 + ], 7119 + "engines": { 7120 + "node": ">=12" 7121 + } 7122 + }, 7123 + "node_modules/nitropack/node_modules/@esbuild/linux-arm64": { 7124 + "version": "0.20.2", 7125 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", 7126 + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", 7127 + "cpu": [ 7128 + "arm64" 7129 + ], 7130 + "license": "MIT", 7131 + "optional": true, 7132 + "os": [ 7133 + "linux" 7134 + ], 7135 + "engines": { 7136 + "node": ">=12" 7137 + } 7138 + }, 7139 + "node_modules/nitropack/node_modules/@esbuild/linux-ia32": { 7140 + "version": "0.20.2", 7141 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", 7142 + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", 7143 + "cpu": [ 7144 + "ia32" 7145 + ], 7146 + "license": "MIT", 7147 + "optional": true, 7148 + "os": [ 7149 + "linux" 7150 + ], 7151 + "engines": { 7152 + "node": ">=12" 7153 + } 7154 + }, 7155 + "node_modules/nitropack/node_modules/@esbuild/linux-loong64": { 7156 + "version": "0.20.2", 7157 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", 7158 + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", 7159 + "cpu": [ 7160 + "loong64" 7161 + ], 7162 + "license": "MIT", 7163 + "optional": true, 7164 + "os": [ 7165 + "linux" 7166 + ], 7167 + "engines": { 7168 + "node": ">=12" 7169 + } 7170 + }, 7171 + "node_modules/nitropack/node_modules/@esbuild/linux-mips64el": { 7172 + "version": "0.20.2", 7173 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", 7174 + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", 7175 + "cpu": [ 7176 + "mips64el" 7177 + ], 7178 + "license": "MIT", 7179 + "optional": true, 7180 + "os": [ 7181 + "linux" 7182 + ], 7183 + "engines": { 7184 + "node": ">=12" 7185 + } 7186 + }, 7187 + "node_modules/nitropack/node_modules/@esbuild/linux-ppc64": { 7188 + "version": "0.20.2", 7189 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", 7190 + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", 7191 + "cpu": [ 7192 + "ppc64" 7193 + ], 7194 + "license": "MIT", 7195 + "optional": true, 7196 + "os": [ 7197 + "linux" 7198 + ], 7199 + "engines": { 7200 + "node": ">=12" 7201 + } 7202 + }, 7203 + "node_modules/nitropack/node_modules/@esbuild/linux-riscv64": { 7204 + "version": "0.20.2", 7205 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", 7206 + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", 7207 + "cpu": [ 7208 + "riscv64" 7209 + ], 7210 + "license": "MIT", 7211 + "optional": true, 7212 + "os": [ 7213 + "linux" 7214 + ], 7215 + "engines": { 7216 + "node": ">=12" 7217 + } 7218 + }, 7219 + "node_modules/nitropack/node_modules/@esbuild/linux-s390x": { 7220 + "version": "0.20.2", 7221 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", 7222 + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", 7223 + "cpu": [ 7224 + "s390x" 7225 + ], 7226 + "license": "MIT", 7227 + "optional": true, 7228 + "os": [ 7229 + "linux" 7230 + ], 7231 + "engines": { 7232 + "node": ">=12" 7233 + } 7234 + }, 7235 + "node_modules/nitropack/node_modules/@esbuild/linux-x64": { 7236 + "version": "0.20.2", 7237 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", 7238 + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", 7239 + "cpu": [ 7240 + "x64" 7241 + ], 7242 + "license": "MIT", 7243 + "optional": true, 7244 + "os": [ 7245 + "linux" 7246 + ], 7247 + "engines": { 7248 + "node": ">=12" 7249 + } 7250 + }, 7251 + "node_modules/nitropack/node_modules/@esbuild/netbsd-x64": { 7252 + "version": "0.20.2", 7253 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", 7254 + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", 7255 + "cpu": [ 7256 + "x64" 7257 + ], 7258 + "license": "MIT", 7259 + "optional": true, 7260 + "os": [ 7261 + "netbsd" 7262 + ], 7263 + "engines": { 7264 + "node": ">=12" 7265 + } 7266 + }, 7267 + "node_modules/nitropack/node_modules/@esbuild/openbsd-x64": { 7268 + "version": "0.20.2", 7269 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", 7270 + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", 7271 + "cpu": [ 7272 + "x64" 7273 + ], 7274 + "license": "MIT", 7275 + "optional": true, 7276 + "os": [ 7277 + "openbsd" 7278 + ], 7279 + "engines": { 7280 + "node": ">=12" 7281 + } 7282 + }, 7283 + "node_modules/nitropack/node_modules/@esbuild/sunos-x64": { 7284 + "version": "0.20.2", 7285 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", 7286 + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", 7287 + "cpu": [ 7288 + "x64" 7289 + ], 7290 + "license": "MIT", 7291 + "optional": true, 7292 + "os": [ 7293 + "sunos" 7294 + ], 7295 + "engines": { 7296 + "node": ">=12" 7297 + } 7298 + }, 7299 + "node_modules/nitropack/node_modules/@esbuild/win32-arm64": { 7300 + "version": "0.20.2", 7301 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", 7302 + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", 7303 + "cpu": [ 7304 + "arm64" 7305 + ], 7306 + "license": "MIT", 7307 + "optional": true, 7308 + "os": [ 7309 + "win32" 7310 + ], 7311 + "engines": { 7312 + "node": ">=12" 7313 + } 7314 + }, 7315 + "node_modules/nitropack/node_modules/@esbuild/win32-ia32": { 7316 + "version": "0.20.2", 7317 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", 7318 + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", 7319 + "cpu": [ 7320 + "ia32" 7321 + ], 7322 + "license": "MIT", 7323 + "optional": true, 7324 + "os": [ 7325 + "win32" 7326 + ], 7327 + "engines": { 7328 + "node": ">=12" 7329 + } 7330 + }, 7331 + "node_modules/nitropack/node_modules/@esbuild/win32-x64": { 7332 + "version": "0.20.2", 7333 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", 7334 + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", 7335 + "cpu": [ 7336 + "x64" 7337 + ], 7338 + "license": "MIT", 7339 + "optional": true, 7340 + "os": [ 7341 + "win32" 7342 + ], 7343 + "engines": { 7344 + "node": ">=12" 7345 + } 7346 + }, 7347 + "node_modules/nitropack/node_modules/chalk": { 7348 + "version": "5.3.0", 7349 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", 7350 + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", 7351 + "license": "MIT", 7352 + "engines": { 7353 + "node": "^12.17.0 || ^14.13 || >=16.0.0" 7354 + }, 7355 + "funding": { 7356 + "url": "https://github.com/chalk/chalk?sponsor=1" 7357 + } 7358 + }, 7359 + "node_modules/nitropack/node_modules/esbuild": { 7360 + "version": "0.20.2", 7361 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", 7362 + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", 7363 + "hasInstallScript": true, 7364 + "license": "MIT", 7365 + "bin": { 7366 + "esbuild": "bin/esbuild" 7367 + }, 7368 + "engines": { 7369 + "node": ">=12" 7370 + }, 7371 + "optionalDependencies": { 7372 + "@esbuild/aix-ppc64": "0.20.2", 7373 + "@esbuild/android-arm": "0.20.2", 7374 + "@esbuild/android-arm64": "0.20.2", 7375 + "@esbuild/android-x64": "0.20.2", 7376 + "@esbuild/darwin-arm64": "0.20.2", 7377 + "@esbuild/darwin-x64": "0.20.2", 7378 + "@esbuild/freebsd-arm64": "0.20.2", 7379 + "@esbuild/freebsd-x64": "0.20.2", 7380 + "@esbuild/linux-arm": "0.20.2", 7381 + "@esbuild/linux-arm64": "0.20.2", 7382 + "@esbuild/linux-ia32": "0.20.2", 7383 + "@esbuild/linux-loong64": "0.20.2", 7384 + "@esbuild/linux-mips64el": "0.20.2", 7385 + "@esbuild/linux-ppc64": "0.20.2", 7386 + "@esbuild/linux-riscv64": "0.20.2", 7387 + "@esbuild/linux-s390x": "0.20.2", 7388 + "@esbuild/linux-x64": "0.20.2", 7389 + "@esbuild/netbsd-x64": "0.20.2", 7390 + "@esbuild/openbsd-x64": "0.20.2", 7391 + "@esbuild/sunos-x64": "0.20.2", 7392 + "@esbuild/win32-arm64": "0.20.2", 7393 + "@esbuild/win32-ia32": "0.20.2", 7394 + "@esbuild/win32-x64": "0.20.2" 7395 + } 7396 + }, 7397 + "node_modules/node-addon-api": { 7398 + "version": "7.1.1", 7399 + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", 7400 + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", 7401 + "license": "MIT" 7402 + }, 7403 + "node_modules/node-fetch": { 7404 + "version": "2.7.0", 7405 + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 7406 + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 7407 + "license": "MIT", 7408 + "dependencies": { 7409 + "whatwg-url": "^5.0.0" 7410 + }, 7411 + "engines": { 7412 + "node": "4.x || >=6.0.0" 7413 + }, 7414 + "peerDependencies": { 7415 + "encoding": "^0.1.0" 7416 + }, 7417 + "peerDependenciesMeta": { 7418 + "encoding": { 7419 + "optional": true 7420 + } 7421 + } 7422 + }, 7423 + "node_modules/node-fetch-native": { 7424 + "version": "1.6.4", 7425 + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", 7426 + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", 7427 + "license": "MIT" 7428 + }, 7429 + "node_modules/node-forge": { 7430 + "version": "1.3.1", 7431 + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", 7432 + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", 7433 + "license": "(BSD-3-Clause OR GPL-2.0)", 7434 + "engines": { 7435 + "node": ">= 6.13.0" 7436 + } 7437 + }, 7438 + "node_modules/node-gyp-build": { 7439 + "version": "4.8.1", 7440 + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", 7441 + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", 7442 + "license": "MIT", 7443 + "bin": { 7444 + "node-gyp-build": "bin.js", 7445 + "node-gyp-build-optional": "optional.js", 7446 + "node-gyp-build-test": "build-test.js" 7447 + } 7448 + }, 7449 + "node_modules/node-releases": { 7450 + "version": "2.0.18", 7451 + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 7452 + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 7453 + "license": "MIT" 7454 + }, 7455 + "node_modules/nopt": { 7456 + "version": "5.0.0", 7457 + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", 7458 + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", 7459 + "license": "ISC", 7460 + "dependencies": { 7461 + "abbrev": "1" 7462 + }, 7463 + "bin": { 7464 + "nopt": "bin/nopt.js" 7465 + }, 7466 + "engines": { 7467 + "node": ">=6" 7468 + } 7469 + }, 7470 + "node_modules/normalize-path": { 7471 + "version": "3.0.0", 7472 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 7473 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 7474 + "license": "MIT", 7475 + "engines": { 7476 + "node": ">=0.10.0" 7477 + } 7478 + }, 7479 + "node_modules/normalize-range": { 7480 + "version": "0.1.2", 7481 + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 7482 + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 7483 + "license": "MIT", 7484 + "engines": { 7485 + "node": ">=0.10.0" 7486 + } 7487 + }, 7488 + "node_modules/npm-run-path": { 7489 + "version": "5.3.0", 7490 + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", 7491 + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", 7492 + "license": "MIT", 7493 + "dependencies": { 7494 + "path-key": "^4.0.0" 7495 + }, 7496 + "engines": { 7497 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 7498 + }, 7499 + "funding": { 7500 + "url": "https://github.com/sponsors/sindresorhus" 7501 + } 7502 + }, 7503 + "node_modules/npm-run-path/node_modules/path-key": { 7504 + "version": "4.0.0", 7505 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 7506 + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 7507 + "license": "MIT", 7508 + "engines": { 7509 + "node": ">=12" 7510 + }, 7511 + "funding": { 7512 + "url": "https://github.com/sponsors/sindresorhus" 7513 + } 7514 + }, 7515 + "node_modules/npmlog": { 7516 + "version": "5.0.1", 7517 + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", 7518 + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", 7519 + "deprecated": "This package is no longer supported.", 7520 + "license": "ISC", 7521 + "dependencies": { 7522 + "are-we-there-yet": "^2.0.0", 7523 + "console-control-strings": "^1.1.0", 7524 + "gauge": "^3.0.0", 7525 + "set-blocking": "^2.0.0" 7526 + } 7527 + }, 7528 + "node_modules/nth-check": { 7529 + "version": "2.1.1", 7530 + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 7531 + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 7532 + "license": "BSD-2-Clause", 7533 + "dependencies": { 7534 + "boolbase": "^1.0.0" 7535 + }, 7536 + "funding": { 7537 + "url": "https://github.com/fb55/nth-check?sponsor=1" 7538 + } 7539 + }, 7540 + "node_modules/nuxi": { 7541 + "version": "3.12.0", 7542 + "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.12.0.tgz", 7543 + "integrity": "sha512-6vRdiXTw9SajEQOUi6Ze/XaIXzy1q/sD5UqHQSv3yqTu7Pot5S7fEihNXV8LpcgLz+9HzjVt70r7jYe7R99c2w==", 7544 + "license": "MIT", 7545 + "bin": { 7546 + "nuxi": "bin/nuxi.mjs", 7547 + "nuxi-ng": "bin/nuxi.mjs", 7548 + "nuxt": "bin/nuxi.mjs", 7549 + "nuxt-cli": "bin/nuxi.mjs" 7550 + }, 7551 + "engines": { 7552 + "node": "^16.10.0 || >=18.0.0" 7553 + }, 7554 + "optionalDependencies": { 7555 + "fsevents": "~2.3.3" 7556 + } 7557 + }, 7558 + "node_modules/nuxt": { 7559 + "version": "3.12.4", 7560 + "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.12.4.tgz", 7561 + "integrity": "sha512-/ddvyc2kgYYIN2UEjP8QIz48O/W3L0lZm7wChIDbOCj0vF/yLLeZHBaTb3aNvS9Hwp269nfjrm8j/mVxQK4RhA==", 7562 + "license": "MIT", 7563 + "dependencies": { 7564 + "@nuxt/devalue": "^2.0.2", 7565 + "@nuxt/devtools": "^1.3.9", 7566 + "@nuxt/kit": "3.12.4", 7567 + "@nuxt/schema": "3.12.4", 7568 + "@nuxt/telemetry": "^2.5.4", 7569 + "@nuxt/vite-builder": "3.12.4", 7570 + "@unhead/dom": "^1.9.16", 7571 + "@unhead/ssr": "^1.9.16", 7572 + "@unhead/vue": "^1.9.16", 7573 + "@vue/shared": "^3.4.32", 7574 + "acorn": "8.12.1", 7575 + "c12": "^1.11.1", 7576 + "chokidar": "^3.6.0", 7577 + "compatx": "^0.1.8", 7578 + "consola": "^3.2.3", 7579 + "cookie-es": "^1.1.0", 7580 + "defu": "^6.1.4", 7581 + "destr": "^2.0.3", 7582 + "devalue": "^5.0.0", 7583 + "errx": "^0.1.0", 7584 + "esbuild": "^0.23.0", 7585 + "escape-string-regexp": "^5.0.0", 7586 + "estree-walker": "^3.0.3", 7587 + "globby": "^14.0.2", 7588 + "h3": "^1.12.0", 7589 + "hookable": "^5.5.3", 7590 + "ignore": "^5.3.1", 7591 + "jiti": "^1.21.6", 7592 + "klona": "^2.0.6", 7593 + "knitwork": "^1.1.0", 7594 + "magic-string": "^0.30.10", 7595 + "mlly": "^1.7.1", 7596 + "nitropack": "^2.9.7", 7597 + "nuxi": "^3.12.0", 7598 + "nypm": "^0.3.9", 7599 + "ofetch": "^1.3.4", 7600 + "ohash": "^1.1.3", 7601 + "pathe": "^1.1.2", 7602 + "perfect-debounce": "^1.0.0", 7603 + "pkg-types": "^1.1.3", 7604 + "radix3": "^1.1.2", 7605 + "scule": "^1.3.0", 7606 + "semver": "^7.6.3", 7607 + "std-env": "^3.7.0", 7608 + "strip-literal": "^2.1.0", 7609 + "ufo": "^1.5.4", 7610 + "ultrahtml": "^1.5.3", 7611 + "uncrypto": "^0.1.3", 7612 + "unctx": "^2.3.1", 7613 + "unenv": "^1.10.0", 7614 + "unimport": "^3.9.0", 7615 + "unplugin": "^1.11.0", 7616 + "unplugin-vue-router": "^0.10.0", 7617 + "unstorage": "^1.10.2", 7618 + "untyped": "^1.4.2", 7619 + "vue": "^3.4.32", 7620 + "vue-bundle-renderer": "^2.1.0", 7621 + "vue-devtools-stub": "^0.1.0", 7622 + "vue-router": "^4.4.0" 7623 + }, 7624 + "bin": { 7625 + "nuxi": "bin/nuxt.mjs", 7626 + "nuxt": "bin/nuxt.mjs" 7627 + }, 7628 + "engines": { 7629 + "node": "^14.18.0 || >=16.10.0" 7630 + }, 7631 + "peerDependencies": { 7632 + "@parcel/watcher": "^2.1.0", 7633 + "@types/node": "^14.18.0 || >=16.10.0" 7634 + }, 7635 + "peerDependenciesMeta": { 7636 + "@parcel/watcher": { 7637 + "optional": true 7638 + }, 7639 + "@types/node": { 7640 + "optional": true 7641 + } 7642 + } 7643 + }, 7644 + "node_modules/nuxt-ollama": { 7645 + "version": "1.0.7", 7646 + "resolved": "https://registry.npmjs.org/nuxt-ollama/-/nuxt-ollama-1.0.7.tgz", 7647 + "integrity": "sha512-q0nuLj+tSMfc1Q1OH47Gj5aVOzLv9GgCgfP7u5N6d1Uz2ThWWSS7ThFY0+9VZR9Py8krQM0a9yMzg8S9I6dglQ==", 7648 + "license": "MIT", 7649 + "dependencies": { 7650 + "@nuxt/kit": "^3.12.4", 7651 + "defu": "^6.1.4", 7652 + "ollama": "^0.5.6" 7653 + } 7654 + }, 7655 + "node_modules/nypm": { 7656 + "version": "0.3.9", 7657 + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.9.tgz", 7658 + "integrity": "sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==", 7659 + "license": "MIT", 7660 + "dependencies": { 7661 + "citty": "^0.1.6", 7662 + "consola": "^3.2.3", 7663 + "execa": "^8.0.1", 7664 + "pathe": "^1.1.2", 7665 + "pkg-types": "^1.1.1", 7666 + "ufo": "^1.5.3" 7667 + }, 7668 + "bin": { 7669 + "nypm": "dist/cli.mjs" 7670 + }, 7671 + "engines": { 7672 + "node": "^14.16.0 || >=16.10.0" 7673 + } 7674 + }, 7675 + "node_modules/nypm/node_modules/execa": { 7676 + "version": "8.0.1", 7677 + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", 7678 + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", 7679 + "license": "MIT", 7680 + "dependencies": { 7681 + "cross-spawn": "^7.0.3", 7682 + "get-stream": "^8.0.1", 7683 + "human-signals": "^5.0.0", 7684 + "is-stream": "^3.0.0", 7685 + "merge-stream": "^2.0.0", 7686 + "npm-run-path": "^5.1.0", 7687 + "onetime": "^6.0.0", 7688 + "signal-exit": "^4.1.0", 7689 + "strip-final-newline": "^3.0.0" 7690 + }, 7691 + "engines": { 7692 + "node": ">=16.17" 7693 + }, 7694 + "funding": { 7695 + "url": "https://github.com/sindresorhus/execa?sponsor=1" 7696 + } 7697 + }, 7698 + "node_modules/nypm/node_modules/get-stream": { 7699 + "version": "8.0.1", 7700 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", 7701 + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", 7702 + "license": "MIT", 7703 + "engines": { 7704 + "node": ">=16" 7705 + }, 7706 + "funding": { 7707 + "url": "https://github.com/sponsors/sindresorhus" 7708 + } 7709 + }, 7710 + "node_modules/nypm/node_modules/human-signals": { 7711 + "version": "5.0.0", 7712 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", 7713 + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", 7714 + "license": "Apache-2.0", 7715 + "engines": { 7716 + "node": ">=16.17.0" 7717 + } 7718 + }, 7719 + "node_modules/nypm/node_modules/signal-exit": { 7720 + "version": "4.1.0", 7721 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 7722 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 7723 + "license": "ISC", 7724 + "engines": { 7725 + "node": ">=14" 7726 + }, 7727 + "funding": { 7728 + "url": "https://github.com/sponsors/isaacs" 7729 + } 7730 + }, 7731 + "node_modules/object-assign": { 7732 + "version": "4.1.1", 7733 + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 7734 + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 7735 + "license": "MIT", 7736 + "engines": { 7737 + "node": ">=0.10.0" 7738 + } 7739 + }, 7740 + "node_modules/object-hash": { 7741 + "version": "3.0.0", 7742 + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 7743 + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 7744 + "license": "MIT", 7745 + "engines": { 7746 + "node": ">= 6" 7747 + } 7748 + }, 7749 + "node_modules/ofetch": { 7750 + "version": "1.3.4", 7751 + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", 7752 + "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", 7753 + "license": "MIT", 7754 + "dependencies": { 7755 + "destr": "^2.0.3", 7756 + "node-fetch-native": "^1.6.3", 7757 + "ufo": "^1.5.3" 7758 + } 7759 + }, 7760 + "node_modules/ohash": { 7761 + "version": "1.1.3", 7762 + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", 7763 + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", 7764 + "license": "MIT" 7765 + }, 7766 + "node_modules/ollama": { 7767 + "version": "0.5.6", 7768 + "resolved": "https://registry.npmjs.org/ollama/-/ollama-0.5.6.tgz", 7769 + "integrity": "sha512-4BySAMt96+OCt4emL6DE78UBCGqC7GvteM9LRCd6WwJyefn0x9w2BrcUcLm9nJ9bYpRsmkhf0Au18Q5MhsA14w==", 7770 + "license": "MIT", 7771 + "dependencies": { 7772 + "whatwg-fetch": "^3.6.20" 7773 + } 7774 + }, 7775 + "node_modules/on-finished": { 7776 + "version": "2.4.1", 7777 + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 7778 + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 7779 + "license": "MIT", 7780 + "dependencies": { 7781 + "ee-first": "1.1.1" 7782 + }, 7783 + "engines": { 7784 + "node": ">= 0.8" 7785 + } 7786 + }, 7787 + "node_modules/once": { 7788 + "version": "1.4.0", 7789 + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 7790 + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 7791 + "license": "ISC", 7792 + "dependencies": { 7793 + "wrappy": "1" 7794 + } 7795 + }, 7796 + "node_modules/onetime": { 7797 + "version": "6.0.0", 7798 + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 7799 + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 7800 + "license": "MIT", 7801 + "dependencies": { 7802 + "mimic-fn": "^4.0.0" 7803 + }, 7804 + "engines": { 7805 + "node": ">=12" 7806 + }, 7807 + "funding": { 7808 + "url": "https://github.com/sponsors/sindresorhus" 7809 + } 7810 + }, 7811 + "node_modules/only": { 7812 + "version": "0.0.2", 7813 + "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", 7814 + "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" 7815 + }, 7816 + "node_modules/open": { 7817 + "version": "8.4.2", 7818 + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", 7819 + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", 7820 + "license": "MIT", 7821 + "dependencies": { 7822 + "define-lazy-prop": "^2.0.0", 7823 + "is-docker": "^2.1.1", 7824 + "is-wsl": "^2.2.0" 7825 + }, 7826 + "engines": { 7827 + "node": ">=12" 7828 + }, 7829 + "funding": { 7830 + "url": "https://github.com/sponsors/sindresorhus" 7831 + } 7832 + }, 7833 + "node_modules/open/node_modules/is-docker": { 7834 + "version": "2.2.1", 7835 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 7836 + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 7837 + "license": "MIT", 7838 + "bin": { 7839 + "is-docker": "cli.js" 7840 + }, 7841 + "engines": { 7842 + "node": ">=8" 7843 + }, 7844 + "funding": { 7845 + "url": "https://github.com/sponsors/sindresorhus" 7846 + } 7847 + }, 7848 + "node_modules/open/node_modules/is-wsl": { 7849 + "version": "2.2.0", 7850 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 7851 + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 7852 + "license": "MIT", 7853 + "dependencies": { 7854 + "is-docker": "^2.0.0" 7855 + }, 7856 + "engines": { 7857 + "node": ">=8" 7858 + } 7859 + }, 7860 + "node_modules/openapi-typescript": { 7861 + "version": "6.7.6", 7862 + "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-6.7.6.tgz", 7863 + "integrity": "sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==", 7864 + "license": "MIT", 7865 + "dependencies": { 7866 + "ansi-colors": "^4.1.3", 7867 + "fast-glob": "^3.3.2", 7868 + "js-yaml": "^4.1.0", 7869 + "supports-color": "^9.4.0", 7870 + "undici": "^5.28.4", 7871 + "yargs-parser": "^21.1.1" 7872 + }, 7873 + "bin": { 7874 + "openapi-typescript": "bin/cli.js" 7875 + } 7876 + }, 7877 + "node_modules/openapi-typescript/node_modules/supports-color": { 7878 + "version": "9.4.0", 7879 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", 7880 + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", 7881 + "license": "MIT", 7882 + "engines": { 7883 + "node": ">=12" 7884 + }, 7885 + "funding": { 7886 + "url": "https://github.com/chalk/supports-color?sponsor=1" 7887 + } 7888 + }, 7889 + "node_modules/p-limit": { 7890 + "version": "3.1.0", 7891 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 7892 + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 7893 + "license": "MIT", 7894 + "dependencies": { 7895 + "yocto-queue": "^0.1.0" 7896 + }, 7897 + "engines": { 7898 + "node": ">=10" 7899 + }, 7900 + "funding": { 7901 + "url": "https://github.com/sponsors/sindresorhus" 7902 + } 7903 + }, 7904 + "node_modules/p-locate": { 7905 + "version": "5.0.0", 7906 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 7907 + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 7908 + "license": "MIT", 7909 + "dependencies": { 7910 + "p-limit": "^3.0.2" 7911 + }, 7912 + "engines": { 7913 + "node": ">=10" 7914 + }, 7915 + "funding": { 7916 + "url": "https://github.com/sponsors/sindresorhus" 7917 + } 7918 + }, 7919 + "node_modules/package-json-from-dist": { 7920 + "version": "1.0.0", 7921 + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", 7922 + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", 7923 + "license": "BlueOak-1.0.0" 7924 + }, 7925 + "node_modules/parse-git-config": { 7926 + "version": "3.0.0", 7927 + "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", 7928 + "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", 7929 + "license": "MIT", 7930 + "dependencies": { 7931 + "git-config-path": "^2.0.0", 7932 + "ini": "^1.3.5" 7933 + }, 7934 + "engines": { 7935 + "node": ">=8" 7936 + } 7937 + }, 7938 + "node_modules/parse-git-config/node_modules/ini": { 7939 + "version": "1.3.8", 7940 + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 7941 + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", 7942 + "license": "ISC" 7943 + }, 7944 + "node_modules/parse-path": { 7945 + "version": "7.0.0", 7946 + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", 7947 + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", 7948 + "license": "MIT", 7949 + "dependencies": { 7950 + "protocols": "^2.0.0" 7951 + } 7952 + }, 7953 + "node_modules/parse-url": { 7954 + "version": "8.1.0", 7955 + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", 7956 + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", 7957 + "license": "MIT", 7958 + "dependencies": { 7959 + "parse-path": "^7.0.0" 7960 + } 7961 + }, 7962 + "node_modules/parseurl": { 7963 + "version": "1.3.3", 7964 + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 7965 + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 7966 + "license": "MIT", 7967 + "engines": { 7968 + "node": ">= 0.8" 7969 + } 7970 + }, 7971 + "node_modules/path-exists": { 7972 + "version": "4.0.0", 7973 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 7974 + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 7975 + "license": "MIT", 7976 + "engines": { 7977 + "node": ">=8" 7978 + } 7979 + }, 7980 + "node_modules/path-is-absolute": { 7981 + "version": "1.0.1", 7982 + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 7983 + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 7984 + "license": "MIT", 7985 + "engines": { 7986 + "node": ">=0.10.0" 7987 + } 7988 + }, 7989 + "node_modules/path-key": { 7990 + "version": "3.1.1", 7991 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 7992 + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 7993 + "license": "MIT", 7994 + "engines": { 7995 + "node": ">=8" 7996 + } 7997 + }, 7998 + "node_modules/path-parse": { 7999 + "version": "1.0.7", 8000 + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 8001 + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 8002 + "license": "MIT" 8003 + }, 8004 + "node_modules/path-scurry": { 8005 + "version": "1.11.1", 8006 + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 8007 + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 8008 + "license": "BlueOak-1.0.0", 8009 + "dependencies": { 8010 + "lru-cache": "^10.2.0", 8011 + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 8012 + }, 8013 + "engines": { 8014 + "node": ">=16 || 14 >=14.18" 8015 + }, 8016 + "funding": { 8017 + "url": "https://github.com/sponsors/isaacs" 8018 + } 8019 + }, 8020 + "node_modules/path-scurry/node_modules/lru-cache": { 8021 + "version": "10.4.3", 8022 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 8023 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 8024 + "license": "ISC" 8025 + }, 8026 + "node_modules/path-to-regexp": { 8027 + "version": "6.2.2", 8028 + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.2.tgz", 8029 + "integrity": "sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==", 8030 + "license": "MIT" 8031 + }, 8032 + "node_modules/path-type": { 8033 + "version": "5.0.0", 8034 + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", 8035 + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", 8036 + "license": "MIT", 8037 + "engines": { 8038 + "node": ">=12" 8039 + }, 8040 + "funding": { 8041 + "url": "https://github.com/sponsors/sindresorhus" 8042 + } 8043 + }, 8044 + "node_modules/pathe": { 8045 + "version": "1.1.2", 8046 + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", 8047 + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", 8048 + "license": "MIT" 8049 + }, 8050 + "node_modules/perfect-debounce": { 8051 + "version": "1.0.0", 8052 + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 8053 + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 8054 + "license": "MIT" 8055 + }, 8056 + "node_modules/picocolors": { 8057 + "version": "1.0.1", 8058 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 8059 + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 8060 + "license": "ISC" 8061 + }, 8062 + "node_modules/picomatch": { 8063 + "version": "2.3.1", 8064 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 8065 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 8066 + "license": "MIT", 8067 + "engines": { 8068 + "node": ">=8.6" 8069 + }, 8070 + "funding": { 8071 + "url": "https://github.com/sponsors/jonschlinkert" 8072 + } 8073 + }, 8074 + "node_modules/pify": { 8075 + "version": "2.3.0", 8076 + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 8077 + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 8078 + "license": "MIT", 8079 + "engines": { 8080 + "node": ">=0.10.0" 8081 + } 8082 + }, 8083 + "node_modules/pirates": { 8084 + "version": "4.0.6", 8085 + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 8086 + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 8087 + "license": "MIT", 8088 + "engines": { 8089 + "node": ">= 6" 8090 + } 8091 + }, 8092 + "node_modules/pkg-types": { 8093 + "version": "1.1.3", 8094 + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.3.tgz", 8095 + "integrity": "sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==", 8096 + "license": "MIT", 8097 + "dependencies": { 8098 + "confbox": "^0.1.7", 8099 + "mlly": "^1.7.1", 8100 + "pathe": "^1.1.2" 8101 + } 8102 + }, 8103 + "node_modules/portfinder": { 8104 + "version": "1.0.32", 8105 + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", 8106 + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", 8107 + "license": "MIT", 8108 + "dependencies": { 8109 + "async": "^2.6.4", 8110 + "debug": "^3.2.7", 8111 + "mkdirp": "^0.5.6" 8112 + }, 8113 + "engines": { 8114 + "node": ">= 0.12.0" 8115 + } 8116 + }, 8117 + "node_modules/portfinder/node_modules/async": { 8118 + "version": "2.6.4", 8119 + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", 8120 + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", 8121 + "license": "MIT", 8122 + "dependencies": { 8123 + "lodash": "^4.17.14" 8124 + } 8125 + }, 8126 + "node_modules/portfinder/node_modules/debug": { 8127 + "version": "3.2.7", 8128 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 8129 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 8130 + "license": "MIT", 8131 + "dependencies": { 8132 + "ms": "^2.1.1" 8133 + } 8134 + }, 8135 + "node_modules/portfinder/node_modules/mkdirp": { 8136 + "version": "0.5.6", 8137 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 8138 + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 8139 + "license": "MIT", 8140 + "dependencies": { 8141 + "minimist": "^1.2.6" 8142 + }, 8143 + "bin": { 8144 + "mkdirp": "bin/cmd.js" 8145 + } 8146 + }, 8147 + "node_modules/postcss": { 8148 + "version": "8.4.41", 8149 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", 8150 + "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", 8151 + "funding": [ 8152 + { 8153 + "type": "opencollective", 8154 + "url": "https://opencollective.com/postcss/" 8155 + }, 8156 + { 8157 + "type": "tidelift", 8158 + "url": "https://tidelift.com/funding/github/npm/postcss" 8159 + }, 8160 + { 8161 + "type": "github", 8162 + "url": "https://github.com/sponsors/ai" 8163 + } 8164 + ], 8165 + "license": "MIT", 8166 + "dependencies": { 8167 + "nanoid": "^3.3.7", 8168 + "picocolors": "^1.0.1", 8169 + "source-map-js": "^1.2.0" 8170 + }, 8171 + "engines": { 8172 + "node": "^10 || ^12 || >=14" 8173 + } 8174 + }, 8175 + "node_modules/postcss-calc": { 8176 + "version": "10.0.1", 8177 + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.0.1.tgz", 8178 + "integrity": "sha512-pp1Z3FxtxA+xHAoWXcOXgnBN1WPu4ZiJ5LWGjKyf9MMreagAsaTUtnqFK1y1sHhyJddAkYTPu6XSuLgb3oYCjw==", 8179 + "license": "MIT", 8180 + "dependencies": { 8181 + "postcss-selector-parser": "^6.1.1", 8182 + "postcss-value-parser": "^4.2.0" 8183 + }, 8184 + "engines": { 8185 + "node": "^18.12 || ^20.9 || >=22.0" 8186 + }, 8187 + "peerDependencies": { 8188 + "postcss": "^8.4.38" 8189 + } 8190 + }, 8191 + "node_modules/postcss-colormin": { 8192 + "version": "7.0.1", 8193 + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.1.tgz", 8194 + "integrity": "sha512-uszdT0dULt3FQs47G5UHCduYK+FnkLYlpu1HpWu061eGsKZ7setoG7kA+WC9NQLsOJf69D5TxGHgnAdRgylnFQ==", 8195 + "license": "MIT", 8196 + "dependencies": { 8197 + "browserslist": "^4.23.1", 8198 + "caniuse-api": "^3.0.0", 8199 + "colord": "^2.9.3", 8200 + "postcss-value-parser": "^4.2.0" 8201 + }, 8202 + "engines": { 8203 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8204 + }, 8205 + "peerDependencies": { 8206 + "postcss": "^8.4.31" 8207 + } 8208 + }, 8209 + "node_modules/postcss-convert-values": { 8210 + "version": "7.0.2", 8211 + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.2.tgz", 8212 + "integrity": "sha512-MuZIF6HJ4izko07Q0TgW6pClalI4al6wHRNPkFzqQdwAwG7hPn0lA58VZdxyb2Vl5AYjJ1piO+jgF9EnTjQwQQ==", 8213 + "license": "MIT", 8214 + "dependencies": { 8215 + "browserslist": "^4.23.1", 8216 + "postcss-value-parser": "^4.2.0" 8217 + }, 8218 + "engines": { 8219 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8220 + }, 8221 + "peerDependencies": { 8222 + "postcss": "^8.4.31" 8223 + } 8224 + }, 8225 + "node_modules/postcss-discard-comments": { 8226 + "version": "7.0.1", 8227 + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.1.tgz", 8228 + "integrity": "sha512-GVrQxUOhmle1W6jX2SvNLt4kmN+JYhV7mzI6BMnkAWR9DtVvg8e67rrV0NfdWhn7x1zxvzdWkMBPdBDCls+uwQ==", 8229 + "license": "MIT", 8230 + "dependencies": { 8231 + "postcss-selector-parser": "^6.1.0" 8232 + }, 8233 + "engines": { 8234 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8235 + }, 8236 + "peerDependencies": { 8237 + "postcss": "^8.4.31" 8238 + } 8239 + }, 8240 + "node_modules/postcss-discard-duplicates": { 8241 + "version": "7.0.0", 8242 + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.0.tgz", 8243 + "integrity": "sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw==", 8244 + "license": "MIT", 8245 + "engines": { 8246 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8247 + }, 8248 + "peerDependencies": { 8249 + "postcss": "^8.4.31" 8250 + } 8251 + }, 8252 + "node_modules/postcss-discard-empty": { 8253 + "version": "7.0.0", 8254 + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz", 8255 + "integrity": "sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==", 8256 + "license": "MIT", 8257 + "engines": { 8258 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8259 + }, 8260 + "peerDependencies": { 8261 + "postcss": "^8.4.31" 8262 + } 8263 + }, 8264 + "node_modules/postcss-discard-overridden": { 8265 + "version": "7.0.0", 8266 + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz", 8267 + "integrity": "sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==", 8268 + "license": "MIT", 8269 + "engines": { 8270 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8271 + }, 8272 + "peerDependencies": { 8273 + "postcss": "^8.4.31" 8274 + } 8275 + }, 8276 + "node_modules/postcss-import": { 8277 + "version": "15.1.0", 8278 + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 8279 + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 8280 + "license": "MIT", 8281 + "dependencies": { 8282 + "postcss-value-parser": "^4.0.0", 8283 + "read-cache": "^1.0.0", 8284 + "resolve": "^1.1.7" 8285 + }, 8286 + "engines": { 8287 + "node": ">=14.0.0" 8288 + }, 8289 + "peerDependencies": { 8290 + "postcss": "^8.0.0" 8291 + } 8292 + }, 8293 + "node_modules/postcss-js": { 8294 + "version": "4.0.1", 8295 + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 8296 + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 8297 + "license": "MIT", 8298 + "dependencies": { 8299 + "camelcase-css": "^2.0.1" 8300 + }, 8301 + "engines": { 8302 + "node": "^12 || ^14 || >= 16" 8303 + }, 8304 + "funding": { 8305 + "type": "opencollective", 8306 + "url": "https://opencollective.com/postcss/" 8307 + }, 8308 + "peerDependencies": { 8309 + "postcss": "^8.4.21" 8310 + } 8311 + }, 8312 + "node_modules/postcss-load-config": { 8313 + "version": "4.0.2", 8314 + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 8315 + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 8316 + "funding": [ 8317 + { 8318 + "type": "opencollective", 8319 + "url": "https://opencollective.com/postcss/" 8320 + }, 8321 + { 8322 + "type": "github", 8323 + "url": "https://github.com/sponsors/ai" 8324 + } 8325 + ], 8326 + "license": "MIT", 8327 + "dependencies": { 8328 + "lilconfig": "^3.0.0", 8329 + "yaml": "^2.3.4" 8330 + }, 8331 + "engines": { 8332 + "node": ">= 14" 8333 + }, 8334 + "peerDependencies": { 8335 + "postcss": ">=8.0.9", 8336 + "ts-node": ">=9.0.0" 8337 + }, 8338 + "peerDependenciesMeta": { 8339 + "postcss": { 8340 + "optional": true 8341 + }, 8342 + "ts-node": { 8343 + "optional": true 8344 + } 8345 + } 8346 + }, 8347 + "node_modules/postcss-merge-longhand": { 8348 + "version": "7.0.2", 8349 + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.2.tgz", 8350 + "integrity": "sha512-06vrW6ZWi9qeP7KMS9fsa9QW56+tIMW55KYqF7X3Ccn+NI2pIgPV6gFfvXTMQ05H90Y5DvnCDPZ2IuHa30PMUg==", 8351 + "license": "MIT", 8352 + "dependencies": { 8353 + "postcss-value-parser": "^4.2.0", 8354 + "stylehacks": "^7.0.2" 8355 + }, 8356 + "engines": { 8357 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8358 + }, 8359 + "peerDependencies": { 8360 + "postcss": "^8.4.31" 8361 + } 8362 + }, 8363 + "node_modules/postcss-merge-rules": { 8364 + "version": "7.0.2", 8365 + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.2.tgz", 8366 + "integrity": "sha512-VAR47UNvRsdrTHLe7TV1CeEtF9SJYR5ukIB9U4GZyZOptgtsS20xSxy+k5wMrI3udST6O1XuIn7cjQkg7sDAAw==", 8367 + "license": "MIT", 8368 + "dependencies": { 8369 + "browserslist": "^4.23.1", 8370 + "caniuse-api": "^3.0.0", 8371 + "cssnano-utils": "^5.0.0", 8372 + "postcss-selector-parser": "^6.1.0" 8373 + }, 8374 + "engines": { 8375 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8376 + }, 8377 + "peerDependencies": { 8378 + "postcss": "^8.4.31" 8379 + } 8380 + }, 8381 + "node_modules/postcss-minify-font-values": { 8382 + "version": "7.0.0", 8383 + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz", 8384 + "integrity": "sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==", 8385 + "license": "MIT", 8386 + "dependencies": { 8387 + "postcss-value-parser": "^4.2.0" 8388 + }, 8389 + "engines": { 8390 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8391 + }, 8392 + "peerDependencies": { 8393 + "postcss": "^8.4.31" 8394 + } 8395 + }, 8396 + "node_modules/postcss-minify-gradients": { 8397 + "version": "7.0.0", 8398 + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz", 8399 + "integrity": "sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==", 8400 + "license": "MIT", 8401 + "dependencies": { 8402 + "colord": "^2.9.3", 8403 + "cssnano-utils": "^5.0.0", 8404 + "postcss-value-parser": "^4.2.0" 8405 + }, 8406 + "engines": { 8407 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8408 + }, 8409 + "peerDependencies": { 8410 + "postcss": "^8.4.31" 8411 + } 8412 + }, 8413 + "node_modules/postcss-minify-params": { 8414 + "version": "7.0.1", 8415 + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.1.tgz", 8416 + "integrity": "sha512-e+Xt8xErSRPgSRFxHeBCSxMiO8B8xng7lh8E0A5ep1VfwYhY8FXhu4Q3APMjgx9YDDbSp53IBGENrzygbUvgUQ==", 8417 + "license": "MIT", 8418 + "dependencies": { 8419 + "browserslist": "^4.23.1", 8420 + "cssnano-utils": "^5.0.0", 8421 + "postcss-value-parser": "^4.2.0" 8422 + }, 8423 + "engines": { 8424 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8425 + }, 8426 + "peerDependencies": { 8427 + "postcss": "^8.4.31" 8428 + } 8429 + }, 8430 + "node_modules/postcss-minify-selectors": { 8431 + "version": "7.0.2", 8432 + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.2.tgz", 8433 + "integrity": "sha512-dCzm04wqW1uqLmDZ41XYNBJfjgps3ZugDpogAmJXoCb5oCiTzIX4oPXXKxDpTvWOnKxQKR4EbV4ZawJBLcdXXA==", 8434 + "license": "MIT", 8435 + "dependencies": { 8436 + "cssesc": "^3.0.0", 8437 + "postcss-selector-parser": "^6.1.0" 8438 + }, 8439 + "engines": { 8440 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8441 + }, 8442 + "peerDependencies": { 8443 + "postcss": "^8.4.31" 8444 + } 8445 + }, 8446 + "node_modules/postcss-nested": { 8447 + "version": "6.2.0", 8448 + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", 8449 + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 8450 + "funding": [ 8451 + { 8452 + "type": "opencollective", 8453 + "url": "https://opencollective.com/postcss/" 8454 + }, 8455 + { 8456 + "type": "github", 8457 + "url": "https://github.com/sponsors/ai" 8458 + } 8459 + ], 8460 + "license": "MIT", 8461 + "dependencies": { 8462 + "postcss-selector-parser": "^6.1.1" 8463 + }, 8464 + "engines": { 8465 + "node": ">=12.0" 8466 + }, 8467 + "peerDependencies": { 8468 + "postcss": "^8.2.14" 8469 + } 8470 + }, 8471 + "node_modules/postcss-nesting": { 8472 + "version": "12.1.5", 8473 + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.1.5.tgz", 8474 + "integrity": "sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==", 8475 + "funding": [ 8476 + { 8477 + "type": "github", 8478 + "url": "https://github.com/sponsors/csstools" 8479 + }, 8480 + { 8481 + "type": "opencollective", 8482 + "url": "https://opencollective.com/csstools" 8483 + } 8484 + ], 8485 + "license": "MIT-0", 8486 + "dependencies": { 8487 + "@csstools/selector-resolve-nested": "^1.1.0", 8488 + "@csstools/selector-specificity": "^3.1.1", 8489 + "postcss-selector-parser": "^6.1.0" 8490 + }, 8491 + "engines": { 8492 + "node": "^14 || ^16 || >=18" 8493 + }, 8494 + "peerDependencies": { 8495 + "postcss": "^8.4" 8496 + } 8497 + }, 8498 + "node_modules/postcss-normalize-charset": { 8499 + "version": "7.0.0", 8500 + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz", 8501 + "integrity": "sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==", 8502 + "license": "MIT", 8503 + "engines": { 8504 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8505 + }, 8506 + "peerDependencies": { 8507 + "postcss": "^8.4.31" 8508 + } 8509 + }, 8510 + "node_modules/postcss-normalize-display-values": { 8511 + "version": "7.0.0", 8512 + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz", 8513 + "integrity": "sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==", 8514 + "license": "MIT", 8515 + "dependencies": { 8516 + "postcss-value-parser": "^4.2.0" 8517 + }, 8518 + "engines": { 8519 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8520 + }, 8521 + "peerDependencies": { 8522 + "postcss": "^8.4.31" 8523 + } 8524 + }, 8525 + "node_modules/postcss-normalize-positions": { 8526 + "version": "7.0.0", 8527 + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz", 8528 + "integrity": "sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==", 8529 + "license": "MIT", 8530 + "dependencies": { 8531 + "postcss-value-parser": "^4.2.0" 8532 + }, 8533 + "engines": { 8534 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8535 + }, 8536 + "peerDependencies": { 8537 + "postcss": "^8.4.31" 8538 + } 8539 + }, 8540 + "node_modules/postcss-normalize-repeat-style": { 8541 + "version": "7.0.0", 8542 + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz", 8543 + "integrity": "sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==", 8544 + "license": "MIT", 8545 + "dependencies": { 8546 + "postcss-value-parser": "^4.2.0" 8547 + }, 8548 + "engines": { 8549 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8550 + }, 8551 + "peerDependencies": { 8552 + "postcss": "^8.4.31" 8553 + } 8554 + }, 8555 + "node_modules/postcss-normalize-string": { 8556 + "version": "7.0.0", 8557 + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz", 8558 + "integrity": "sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==", 8559 + "license": "MIT", 8560 + "dependencies": { 8561 + "postcss-value-parser": "^4.2.0" 8562 + }, 8563 + "engines": { 8564 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8565 + }, 8566 + "peerDependencies": { 8567 + "postcss": "^8.4.31" 8568 + } 8569 + }, 8570 + "node_modules/postcss-normalize-timing-functions": { 8571 + "version": "7.0.0", 8572 + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz", 8573 + "integrity": "sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==", 8574 + "license": "MIT", 8575 + "dependencies": { 8576 + "postcss-value-parser": "^4.2.0" 8577 + }, 8578 + "engines": { 8579 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8580 + }, 8581 + "peerDependencies": { 8582 + "postcss": "^8.4.31" 8583 + } 8584 + }, 8585 + "node_modules/postcss-normalize-unicode": { 8586 + "version": "7.0.1", 8587 + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.1.tgz", 8588 + "integrity": "sha512-PTPGdY9xAkTw+8ZZ71DUePb7M/Vtgkbbq+EoI33EuyQEzbKemEQMhe5QSr0VP5UfZlreANDPxSfcdSprENcbsg==", 8589 + "license": "MIT", 8590 + "dependencies": { 8591 + "browserslist": "^4.23.1", 8592 + "postcss-value-parser": "^4.2.0" 8593 + }, 8594 + "engines": { 8595 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8596 + }, 8597 + "peerDependencies": { 8598 + "postcss": "^8.4.31" 8599 + } 8600 + }, 8601 + "node_modules/postcss-normalize-url": { 8602 + "version": "7.0.0", 8603 + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz", 8604 + "integrity": "sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==", 8605 + "license": "MIT", 8606 + "dependencies": { 8607 + "postcss-value-parser": "^4.2.0" 8608 + }, 8609 + "engines": { 8610 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8611 + }, 8612 + "peerDependencies": { 8613 + "postcss": "^8.4.31" 8614 + } 8615 + }, 8616 + "node_modules/postcss-normalize-whitespace": { 8617 + "version": "7.0.0", 8618 + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz", 8619 + "integrity": "sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==", 8620 + "license": "MIT", 8621 + "dependencies": { 8622 + "postcss-value-parser": "^4.2.0" 8623 + }, 8624 + "engines": { 8625 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8626 + }, 8627 + "peerDependencies": { 8628 + "postcss": "^8.4.31" 8629 + } 8630 + }, 8631 + "node_modules/postcss-ordered-values": { 8632 + "version": "7.0.1", 8633 + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz", 8634 + "integrity": "sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==", 8635 + "license": "MIT", 8636 + "dependencies": { 8637 + "cssnano-utils": "^5.0.0", 8638 + "postcss-value-parser": "^4.2.0" 8639 + }, 8640 + "engines": { 8641 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8642 + }, 8643 + "peerDependencies": { 8644 + "postcss": "^8.4.31" 8645 + } 8646 + }, 8647 + "node_modules/postcss-reduce-initial": { 8648 + "version": "7.0.1", 8649 + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.1.tgz", 8650 + "integrity": "sha512-0JDUSV4bGB5FGM5g8MkS+rvqKukJZ7OTHw/lcKn7xPNqeaqJyQbUO8/dJpvyTpaVwPsd3Uc33+CfNzdVowp2WA==", 8651 + "license": "MIT", 8652 + "dependencies": { 8653 + "browserslist": "^4.23.1", 8654 + "caniuse-api": "^3.0.0" 8655 + }, 8656 + "engines": { 8657 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8658 + }, 8659 + "peerDependencies": { 8660 + "postcss": "^8.4.31" 8661 + } 8662 + }, 8663 + "node_modules/postcss-reduce-transforms": { 8664 + "version": "7.0.0", 8665 + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz", 8666 + "integrity": "sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==", 8667 + "license": "MIT", 8668 + "dependencies": { 8669 + "postcss-value-parser": "^4.2.0" 8670 + }, 8671 + "engines": { 8672 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8673 + }, 8674 + "peerDependencies": { 8675 + "postcss": "^8.4.31" 8676 + } 8677 + }, 8678 + "node_modules/postcss-selector-parser": { 8679 + "version": "6.1.1", 8680 + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", 8681 + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", 8682 + "license": "MIT", 8683 + "dependencies": { 8684 + "cssesc": "^3.0.0", 8685 + "util-deprecate": "^1.0.2" 8686 + }, 8687 + "engines": { 8688 + "node": ">=4" 8689 + } 8690 + }, 8691 + "node_modules/postcss-svgo": { 8692 + "version": "7.0.1", 8693 + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz", 8694 + "integrity": "sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==", 8695 + "license": "MIT", 8696 + "dependencies": { 8697 + "postcss-value-parser": "^4.2.0", 8698 + "svgo": "^3.3.2" 8699 + }, 8700 + "engines": { 8701 + "node": "^18.12.0 || ^20.9.0 || >= 18" 8702 + }, 8703 + "peerDependencies": { 8704 + "postcss": "^8.4.31" 8705 + } 8706 + }, 8707 + "node_modules/postcss-unique-selectors": { 8708 + "version": "7.0.1", 8709 + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.1.tgz", 8710 + "integrity": "sha512-MH7QE/eKUftTB5ta40xcHLl7hkZjgDFydpfTK+QWXeHxghVt3VoPqYL5/G+zYZPPIs+8GuqFXSTgxBSoB1RZtQ==", 8711 + "license": "MIT", 8712 + "dependencies": { 8713 + "postcss-selector-parser": "^6.1.0" 8714 + }, 8715 + "engines": { 8716 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 8717 + }, 8718 + "peerDependencies": { 8719 + "postcss": "^8.4.31" 8720 + } 8721 + }, 8722 + "node_modules/postcss-value-parser": { 8723 + "version": "4.2.0", 8724 + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 8725 + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 8726 + "license": "MIT" 8727 + }, 8728 + "node_modules/postcss/node_modules/nanoid": { 8729 + "version": "3.3.7", 8730 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 8731 + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 8732 + "funding": [ 8733 + { 8734 + "type": "github", 8735 + "url": "https://github.com/sponsors/ai" 8736 + } 8737 + ], 8738 + "license": "MIT", 8739 + "bin": { 8740 + "nanoid": "bin/nanoid.cjs" 8741 + }, 8742 + "engines": { 8743 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 8744 + } 8745 + }, 8746 + "node_modules/pretty-bytes": { 8747 + "version": "6.1.1", 8748 + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", 8749 + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", 8750 + "license": "MIT", 8751 + "engines": { 8752 + "node": "^14.13.1 || >=16.0.0" 8753 + }, 8754 + "funding": { 8755 + "url": "https://github.com/sponsors/sindresorhus" 8756 + } 8757 + }, 8758 + "node_modules/process": { 8759 + "version": "0.11.10", 8760 + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 8761 + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", 8762 + "license": "MIT", 8763 + "engines": { 8764 + "node": ">= 0.6.0" 8765 + } 8766 + }, 8767 + "node_modules/process-nextick-args": { 8768 + "version": "2.0.1", 8769 + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 8770 + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 8771 + "license": "MIT" 8772 + }, 8773 + "node_modules/prompts": { 8774 + "version": "2.4.2", 8775 + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 8776 + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 8777 + "license": "MIT", 8778 + "dependencies": { 8779 + "kleur": "^3.0.3", 8780 + "sisteransi": "^1.0.5" 8781 + }, 8782 + "engines": { 8783 + "node": ">= 6" 8784 + } 8785 + }, 8786 + "node_modules/protocols": { 8787 + "version": "2.0.1", 8788 + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", 8789 + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", 8790 + "license": "MIT" 8791 + }, 8792 + "node_modules/queue-microtask": { 8793 + "version": "1.2.3", 8794 + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 8795 + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 8796 + "funding": [ 8797 + { 8798 + "type": "github", 8799 + "url": "https://github.com/sponsors/feross" 8800 + }, 8801 + { 8802 + "type": "patreon", 8803 + "url": "https://www.patreon.com/feross" 8804 + }, 8805 + { 8806 + "type": "consulting", 8807 + "url": "https://feross.org/support" 8808 + } 8809 + ], 8810 + "license": "MIT" 8811 + }, 8812 + "node_modules/queue-tick": { 8813 + "version": "1.0.1", 8814 + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", 8815 + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", 8816 + "license": "MIT" 8817 + }, 8818 + "node_modules/radix3": { 8819 + "version": "1.1.2", 8820 + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", 8821 + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", 8822 + "license": "MIT" 8823 + }, 8824 + "node_modules/randombytes": { 8825 + "version": "2.1.0", 8826 + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 8827 + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 8828 + "license": "MIT", 8829 + "dependencies": { 8830 + "safe-buffer": "^5.1.0" 8831 + } 8832 + }, 8833 + "node_modules/range-parser": { 8834 + "version": "1.2.1", 8835 + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 8836 + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 8837 + "license": "MIT", 8838 + "engines": { 8839 + "node": ">= 0.6" 8840 + } 8841 + }, 8842 + "node_modules/rc9": { 8843 + "version": "2.1.2", 8844 + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz", 8845 + "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==", 8846 + "license": "MIT", 8847 + "dependencies": { 8848 + "defu": "^6.1.4", 8849 + "destr": "^2.0.3" 8850 + } 8851 + }, 8852 + "node_modules/read-cache": { 8853 + "version": "1.0.0", 8854 + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 8855 + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 8856 + "license": "MIT", 8857 + "dependencies": { 8858 + "pify": "^2.3.0" 8859 + } 8860 + }, 8861 + "node_modules/readable-stream": { 8862 + "version": "4.5.2", 8863 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", 8864 + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", 8865 + "license": "MIT", 8866 + "dependencies": { 8867 + "abort-controller": "^3.0.0", 8868 + "buffer": "^6.0.3", 8869 + "events": "^3.3.0", 8870 + "process": "^0.11.10", 8871 + "string_decoder": "^1.3.0" 8872 + }, 8873 + "engines": { 8874 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 8875 + } 8876 + }, 8877 + "node_modules/readdir-glob": { 8878 + "version": "1.1.3", 8879 + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", 8880 + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", 8881 + "license": "Apache-2.0", 8882 + "dependencies": { 8883 + "minimatch": "^5.1.0" 8884 + } 8885 + }, 8886 + "node_modules/readdirp": { 8887 + "version": "3.6.0", 8888 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 8889 + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 8890 + "license": "MIT", 8891 + "dependencies": { 8892 + "picomatch": "^2.2.1" 8893 + }, 8894 + "engines": { 8895 + "node": ">=8.10.0" 8896 + } 8897 + }, 8898 + "node_modules/redis-errors": { 8899 + "version": "1.2.0", 8900 + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", 8901 + "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", 8902 + "license": "MIT", 8903 + "engines": { 8904 + "node": ">=4" 8905 + } 8906 + }, 8907 + "node_modules/redis-parser": { 8908 + "version": "3.0.0", 8909 + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", 8910 + "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", 8911 + "license": "MIT", 8912 + "dependencies": { 8913 + "redis-errors": "^1.0.0" 8914 + }, 8915 + "engines": { 8916 + "node": ">=4" 8917 + } 8918 + }, 8919 + "node_modules/replace-in-file": { 8920 + "version": "6.3.5", 8921 + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-6.3.5.tgz", 8922 + "integrity": "sha512-arB9d3ENdKva2fxRnSjwBEXfK1npgyci7ZZuwysgAp7ORjHSyxz6oqIjTEv8R0Ydl4Ll7uOAZXL4vbkhGIizCg==", 8923 + "license": "MIT", 8924 + "dependencies": { 8925 + "chalk": "^4.1.2", 8926 + "glob": "^7.2.0", 8927 + "yargs": "^17.2.1" 8928 + }, 8929 + "bin": { 8930 + "replace-in-file": "bin/cli.js" 8931 + }, 8932 + "engines": { 8933 + "node": ">=10" 8934 + } 8935 + }, 8936 + "node_modules/replace-in-file/node_modules/ansi-styles": { 8937 + "version": "4.3.0", 8938 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 8939 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 8940 + "license": "MIT", 8941 + "dependencies": { 8942 + "color-convert": "^2.0.1" 8943 + }, 8944 + "engines": { 8945 + "node": ">=8" 8946 + }, 8947 + "funding": { 8948 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 8949 + } 8950 + }, 8951 + "node_modules/replace-in-file/node_modules/brace-expansion": { 8952 + "version": "1.1.11", 8953 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 8954 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 8955 + "license": "MIT", 8956 + "dependencies": { 8957 + "balanced-match": "^1.0.0", 8958 + "concat-map": "0.0.1" 8959 + } 8960 + }, 8961 + "node_modules/replace-in-file/node_modules/chalk": { 8962 + "version": "4.1.2", 8963 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 8964 + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 8965 + "license": "MIT", 8966 + "dependencies": { 8967 + "ansi-styles": "^4.1.0", 8968 + "supports-color": "^7.1.0" 8969 + }, 8970 + "engines": { 8971 + "node": ">=10" 8972 + }, 8973 + "funding": { 8974 + "url": "https://github.com/chalk/chalk?sponsor=1" 8975 + } 8976 + }, 8977 + "node_modules/replace-in-file/node_modules/color-convert": { 8978 + "version": "2.0.1", 8979 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 8980 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 8981 + "license": "MIT", 8982 + "dependencies": { 8983 + "color-name": "~1.1.4" 8984 + }, 8985 + "engines": { 8986 + "node": ">=7.0.0" 8987 + } 8988 + }, 8989 + "node_modules/replace-in-file/node_modules/color-name": { 8990 + "version": "1.1.4", 8991 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 8992 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 8993 + "license": "MIT" 8994 + }, 8995 + "node_modules/replace-in-file/node_modules/glob": { 8996 + "version": "7.2.3", 8997 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 8998 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 8999 + "deprecated": "Glob versions prior to v9 are no longer supported", 9000 + "license": "ISC", 9001 + "dependencies": { 9002 + "fs.realpath": "^1.0.0", 9003 + "inflight": "^1.0.4", 9004 + "inherits": "2", 9005 + "minimatch": "^3.1.1", 9006 + "once": "^1.3.0", 9007 + "path-is-absolute": "^1.0.0" 9008 + }, 9009 + "engines": { 9010 + "node": "*" 9011 + }, 9012 + "funding": { 9013 + "url": "https://github.com/sponsors/isaacs" 9014 + } 9015 + }, 9016 + "node_modules/replace-in-file/node_modules/has-flag": { 9017 + "version": "4.0.0", 9018 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 9019 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 9020 + "license": "MIT", 9021 + "engines": { 9022 + "node": ">=8" 9023 + } 9024 + }, 9025 + "node_modules/replace-in-file/node_modules/minimatch": { 9026 + "version": "3.1.2", 9027 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 9028 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 9029 + "license": "ISC", 9030 + "dependencies": { 9031 + "brace-expansion": "^1.1.7" 9032 + }, 9033 + "engines": { 9034 + "node": "*" 9035 + } 9036 + }, 9037 + "node_modules/replace-in-file/node_modules/supports-color": { 9038 + "version": "7.2.0", 9039 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 9040 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 9041 + "license": "MIT", 9042 + "dependencies": { 9043 + "has-flag": "^4.0.0" 9044 + }, 9045 + "engines": { 9046 + "node": ">=8" 9047 + } 9048 + }, 9049 + "node_modules/require-directory": { 9050 + "version": "2.1.1", 9051 + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 9052 + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 9053 + "license": "MIT", 9054 + "engines": { 9055 + "node": ">=0.10.0" 9056 + } 9057 + }, 9058 + "node_modules/resolve": { 9059 + "version": "1.22.8", 9060 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 9061 + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 9062 + "license": "MIT", 9063 + "dependencies": { 9064 + "is-core-module": "^2.13.0", 9065 + "path-parse": "^1.0.7", 9066 + "supports-preserve-symlinks-flag": "^1.0.0" 9067 + }, 9068 + "bin": { 9069 + "resolve": "bin/resolve" 9070 + }, 9071 + "funding": { 9072 + "url": "https://github.com/sponsors/ljharb" 9073 + } 9074 + }, 9075 + "node_modules/resolve-from": { 9076 + "version": "5.0.0", 9077 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 9078 + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 9079 + "license": "MIT", 9080 + "engines": { 9081 + "node": ">=8" 9082 + } 9083 + }, 9084 + "node_modules/resolve-path": { 9085 + "version": "1.4.0", 9086 + "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", 9087 + "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", 9088 + "license": "MIT", 9089 + "dependencies": { 9090 + "http-errors": "~1.6.2", 9091 + "path-is-absolute": "1.0.1" 9092 + }, 9093 + "engines": { 9094 + "node": ">= 0.8" 9095 + } 9096 + }, 9097 + "node_modules/resolve-path/node_modules/depd": { 9098 + "version": "1.1.2", 9099 + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 9100 + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", 9101 + "license": "MIT", 9102 + "engines": { 9103 + "node": ">= 0.6" 9104 + } 9105 + }, 9106 + "node_modules/resolve-path/node_modules/http-errors": { 9107 + "version": "1.6.3", 9108 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", 9109 + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", 9110 + "license": "MIT", 9111 + "dependencies": { 9112 + "depd": "~1.1.2", 9113 + "inherits": "2.0.3", 9114 + "setprototypeof": "1.1.0", 9115 + "statuses": ">= 1.4.0 < 2" 9116 + }, 9117 + "engines": { 9118 + "node": ">= 0.6" 9119 + } 9120 + }, 9121 + "node_modules/resolve-path/node_modules/inherits": { 9122 + "version": "2.0.3", 9123 + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 9124 + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", 9125 + "license": "ISC" 9126 + }, 9127 + "node_modules/resolve-path/node_modules/setprototypeof": { 9128 + "version": "1.1.0", 9129 + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", 9130 + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", 9131 + "license": "ISC" 9132 + }, 9133 + "node_modules/resolve-path/node_modules/statuses": { 9134 + "version": "1.5.0", 9135 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 9136 + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 9137 + "license": "MIT", 9138 + "engines": { 9139 + "node": ">= 0.6" 9140 + } 9141 + }, 9142 + "node_modules/reusify": { 9143 + "version": "1.0.4", 9144 + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 9145 + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 9146 + "license": "MIT", 9147 + "engines": { 9148 + "iojs": ">=1.0.0", 9149 + "node": ">=0.10.0" 9150 + } 9151 + }, 9152 + "node_modules/rfdc": { 9153 + "version": "1.4.1", 9154 + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 9155 + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 9156 + "license": "MIT" 9157 + }, 9158 + "node_modules/rimraf": { 9159 + "version": "3.0.2", 9160 + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 9161 + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 9162 + "deprecated": "Rimraf versions prior to v4 are no longer supported", 9163 + "license": "ISC", 9164 + "dependencies": { 9165 + "glob": "^7.1.3" 9166 + }, 9167 + "bin": { 9168 + "rimraf": "bin.js" 9169 + }, 9170 + "funding": { 9171 + "url": "https://github.com/sponsors/isaacs" 9172 + } 9173 + }, 9174 + "node_modules/rimraf/node_modules/brace-expansion": { 9175 + "version": "1.1.11", 9176 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 9177 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 9178 + "license": "MIT", 9179 + "dependencies": { 9180 + "balanced-match": "^1.0.0", 9181 + "concat-map": "0.0.1" 9182 + } 9183 + }, 9184 + "node_modules/rimraf/node_modules/glob": { 9185 + "version": "7.2.3", 9186 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 9187 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 9188 + "deprecated": "Glob versions prior to v9 are no longer supported", 9189 + "license": "ISC", 9190 + "dependencies": { 9191 + "fs.realpath": "^1.0.0", 9192 + "inflight": "^1.0.4", 9193 + "inherits": "2", 9194 + "minimatch": "^3.1.1", 9195 + "once": "^1.3.0", 9196 + "path-is-absolute": "^1.0.0" 9197 + }, 9198 + "engines": { 9199 + "node": "*" 9200 + }, 9201 + "funding": { 9202 + "url": "https://github.com/sponsors/isaacs" 9203 + } 9204 + }, 9205 + "node_modules/rimraf/node_modules/minimatch": { 9206 + "version": "3.1.2", 9207 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 9208 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 9209 + "license": "ISC", 9210 + "dependencies": { 9211 + "brace-expansion": "^1.1.7" 9212 + }, 9213 + "engines": { 9214 + "node": "*" 9215 + } 9216 + }, 9217 + "node_modules/rollup": { 9218 + "version": "4.20.0", 9219 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.20.0.tgz", 9220 + "integrity": "sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==", 9221 + "license": "MIT", 9222 + "dependencies": { 9223 + "@types/estree": "1.0.5" 9224 + }, 9225 + "bin": { 9226 + "rollup": "dist/bin/rollup" 9227 + }, 9228 + "engines": { 9229 + "node": ">=18.0.0", 9230 + "npm": ">=8.0.0" 9231 + }, 9232 + "optionalDependencies": { 9233 + "@rollup/rollup-android-arm-eabi": "4.20.0", 9234 + "@rollup/rollup-android-arm64": "4.20.0", 9235 + "@rollup/rollup-darwin-arm64": "4.20.0", 9236 + "@rollup/rollup-darwin-x64": "4.20.0", 9237 + "@rollup/rollup-linux-arm-gnueabihf": "4.20.0", 9238 + "@rollup/rollup-linux-arm-musleabihf": "4.20.0", 9239 + "@rollup/rollup-linux-arm64-gnu": "4.20.0", 9240 + "@rollup/rollup-linux-arm64-musl": "4.20.0", 9241 + "@rollup/rollup-linux-powerpc64le-gnu": "4.20.0", 9242 + "@rollup/rollup-linux-riscv64-gnu": "4.20.0", 9243 + "@rollup/rollup-linux-s390x-gnu": "4.20.0", 9244 + "@rollup/rollup-linux-x64-gnu": "4.20.0", 9245 + "@rollup/rollup-linux-x64-musl": "4.20.0", 9246 + "@rollup/rollup-win32-arm64-msvc": "4.20.0", 9247 + "@rollup/rollup-win32-ia32-msvc": "4.20.0", 9248 + "@rollup/rollup-win32-x64-msvc": "4.20.0", 9249 + "fsevents": "~2.3.2" 9250 + } 9251 + }, 9252 + "node_modules/rollup-plugin-visualizer": { 9253 + "version": "5.12.0", 9254 + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", 9255 + "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", 9256 + "license": "MIT", 9257 + "dependencies": { 9258 + "open": "^8.4.0", 9259 + "picomatch": "^2.3.1", 9260 + "source-map": "^0.7.4", 9261 + "yargs": "^17.5.1" 9262 + }, 9263 + "bin": { 9264 + "rollup-plugin-visualizer": "dist/bin/cli.js" 9265 + }, 9266 + "engines": { 9267 + "node": ">=14" 9268 + }, 9269 + "peerDependencies": { 9270 + "rollup": "2.x || 3.x || 4.x" 9271 + }, 9272 + "peerDependenciesMeta": { 9273 + "rollup": { 9274 + "optional": true 9275 + } 9276 + } 9277 + }, 9278 + "node_modules/run-applescript": { 9279 + "version": "7.0.0", 9280 + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", 9281 + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", 9282 + "license": "MIT", 9283 + "engines": { 9284 + "node": ">=18" 9285 + }, 9286 + "funding": { 9287 + "url": "https://github.com/sponsors/sindresorhus" 9288 + } 9289 + }, 9290 + "node_modules/run-parallel": { 9291 + "version": "1.2.0", 9292 + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 9293 + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 9294 + "funding": [ 9295 + { 9296 + "type": "github", 9297 + "url": "https://github.com/sponsors/feross" 9298 + }, 9299 + { 9300 + "type": "patreon", 9301 + "url": "https://www.patreon.com/feross" 9302 + }, 9303 + { 9304 + "type": "consulting", 9305 + "url": "https://feross.org/support" 9306 + } 9307 + ], 9308 + "license": "MIT", 9309 + "dependencies": { 9310 + "queue-microtask": "^1.2.2" 9311 + } 9312 + }, 9313 + "node_modules/safe-buffer": { 9314 + "version": "5.2.1", 9315 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 9316 + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 9317 + "funding": [ 9318 + { 9319 + "type": "github", 9320 + "url": "https://github.com/sponsors/feross" 9321 + }, 9322 + { 9323 + "type": "patreon", 9324 + "url": "https://www.patreon.com/feross" 9325 + }, 9326 + { 9327 + "type": "consulting", 9328 + "url": "https://feross.org/support" 9329 + } 9330 + ], 9331 + "license": "MIT" 9332 + }, 9333 + "node_modules/scule": { 9334 + "version": "1.3.0", 9335 + "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz", 9336 + "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==", 9337 + "license": "MIT" 9338 + }, 9339 + "node_modules/semver": { 9340 + "version": "7.6.3", 9341 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 9342 + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 9343 + "license": "ISC", 9344 + "bin": { 9345 + "semver": "bin/semver.js" 9346 + }, 9347 + "engines": { 9348 + "node": ">=10" 9349 + } 9350 + }, 9351 + "node_modules/send": { 9352 + "version": "0.18.0", 9353 + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 9354 + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 9355 + "license": "MIT", 9356 + "dependencies": { 9357 + "debug": "2.6.9", 9358 + "depd": "2.0.0", 9359 + "destroy": "1.2.0", 9360 + "encodeurl": "~1.0.2", 9361 + "escape-html": "~1.0.3", 9362 + "etag": "~1.8.1", 9363 + "fresh": "0.5.2", 9364 + "http-errors": "2.0.0", 9365 + "mime": "1.6.0", 9366 + "ms": "2.1.3", 9367 + "on-finished": "2.4.1", 9368 + "range-parser": "~1.2.1", 9369 + "statuses": "2.0.1" 9370 + }, 9371 + "engines": { 9372 + "node": ">= 0.8.0" 9373 + } 9374 + }, 9375 + "node_modules/send/node_modules/debug": { 9376 + "version": "2.6.9", 9377 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 9378 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 9379 + "license": "MIT", 9380 + "dependencies": { 9381 + "ms": "2.0.0" 9382 + } 9383 + }, 9384 + "node_modules/send/node_modules/debug/node_modules/ms": { 9385 + "version": "2.0.0", 9386 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 9387 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 9388 + "license": "MIT" 9389 + }, 9390 + "node_modules/send/node_modules/mime": { 9391 + "version": "1.6.0", 9392 + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 9393 + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 9394 + "license": "MIT", 9395 + "bin": { 9396 + "mime": "cli.js" 9397 + }, 9398 + "engines": { 9399 + "node": ">=4" 9400 + } 9401 + }, 9402 + "node_modules/send/node_modules/ms": { 9403 + "version": "2.1.3", 9404 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 9405 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 9406 + "license": "MIT" 9407 + }, 9408 + "node_modules/serialize-javascript": { 9409 + "version": "6.0.2", 9410 + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 9411 + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 9412 + "license": "BSD-3-Clause", 9413 + "dependencies": { 9414 + "randombytes": "^2.1.0" 9415 + } 9416 + }, 9417 + "node_modules/serve-placeholder": { 9418 + "version": "2.0.2", 9419 + "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.2.tgz", 9420 + "integrity": "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==", 9421 + "license": "MIT", 9422 + "dependencies": { 9423 + "defu": "^6.1.4" 9424 + } 9425 + }, 9426 + "node_modules/serve-static": { 9427 + "version": "1.15.0", 9428 + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 9429 + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 9430 + "license": "MIT", 9431 + "dependencies": { 9432 + "encodeurl": "~1.0.2", 9433 + "escape-html": "~1.0.3", 9434 + "parseurl": "~1.3.3", 9435 + "send": "0.18.0" 9436 + }, 9437 + "engines": { 9438 + "node": ">= 0.8.0" 9439 + } 9440 + }, 9441 + "node_modules/set-blocking": { 9442 + "version": "2.0.0", 9443 + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 9444 + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", 9445 + "license": "ISC" 9446 + }, 9447 + "node_modules/setprototypeof": { 9448 + "version": "1.2.0", 9449 + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 9450 + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 9451 + "license": "ISC" 9452 + }, 9453 + "node_modules/shebang-command": { 9454 + "version": "2.0.0", 9455 + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 9456 + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 9457 + "license": "MIT", 9458 + "dependencies": { 9459 + "shebang-regex": "^3.0.0" 9460 + }, 9461 + "engines": { 9462 + "node": ">=8" 9463 + } 9464 + }, 9465 + "node_modules/shebang-regex": { 9466 + "version": "3.0.0", 9467 + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 9468 + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 9469 + "license": "MIT", 9470 + "engines": { 9471 + "node": ">=8" 9472 + } 9473 + }, 9474 + "node_modules/shell-quote": { 9475 + "version": "1.8.1", 9476 + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", 9477 + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", 9478 + "license": "MIT", 9479 + "funding": { 9480 + "url": "https://github.com/sponsors/ljharb" 9481 + } 9482 + }, 9483 + "node_modules/signal-exit": { 9484 + "version": "3.0.7", 9485 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 9486 + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 9487 + "license": "ISC" 9488 + }, 9489 + "node_modules/simple-git": { 9490 + "version": "3.25.0", 9491 + "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.25.0.tgz", 9492 + "integrity": "sha512-KIY5sBnzc4yEcJXW7Tdv4viEz8KyG+nU0hay+DWZasvdFOYKeUZ6Xc25LUHHjw0tinPT7O1eY6pzX7pRT1K8rw==", 9493 + "license": "MIT", 9494 + "dependencies": { 9495 + "@kwsites/file-exists": "^1.1.1", 9496 + "@kwsites/promise-deferred": "^1.1.1", 9497 + "debug": "^4.3.5" 9498 + }, 9499 + "funding": { 9500 + "type": "github", 9501 + "url": "https://github.com/steveukx/git-js?sponsor=1" 9502 + } 9503 + }, 9504 + "node_modules/sirv": { 9505 + "version": "2.0.4", 9506 + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", 9507 + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", 9508 + "license": "MIT", 9509 + "dependencies": { 9510 + "@polka/url": "^1.0.0-next.24", 9511 + "mrmime": "^2.0.0", 9512 + "totalist": "^3.0.0" 9513 + }, 9514 + "engines": { 9515 + "node": ">= 10" 9516 + } 9517 + }, 9518 + "node_modules/sisteransi": { 9519 + "version": "1.0.5", 9520 + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 9521 + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 9522 + "license": "MIT" 9523 + }, 9524 + "node_modules/slash": { 9525 + "version": "5.1.0", 9526 + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 9527 + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 9528 + "license": "MIT", 9529 + "engines": { 9530 + "node": ">=14.16" 9531 + }, 9532 + "funding": { 9533 + "url": "https://github.com/sponsors/sindresorhus" 9534 + } 9535 + }, 9536 + "node_modules/smob": { 9537 + "version": "1.5.0", 9538 + "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", 9539 + "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", 9540 + "license": "MIT" 9541 + }, 9542 + "node_modules/smooth-dnd": { 9543 + "version": "0.12.1", 9544 + "resolved": "https://registry.npmjs.org/smooth-dnd/-/smooth-dnd-0.12.1.tgz", 9545 + "integrity": "sha512-Dndj/MOG7VP83mvzfGCLGzV2HuK1lWachMtWl/Iuk6zV7noDycIBnflwaPuDzoaapEl3Pc4+ybJArkkx9sxPZg==", 9546 + "license": "MIT" 9547 + }, 9548 + "node_modules/source-map": { 9549 + "version": "0.7.4", 9550 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", 9551 + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", 9552 + "license": "BSD-3-Clause", 9553 + "engines": { 9554 + "node": ">= 8" 9555 + } 9556 + }, 9557 + "node_modules/source-map-js": { 9558 + "version": "1.2.0", 9559 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 9560 + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 9561 + "license": "BSD-3-Clause", 9562 + "engines": { 9563 + "node": ">=0.10.0" 9564 + } 9565 + }, 9566 + "node_modules/source-map-support": { 9567 + "version": "0.5.21", 9568 + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 9569 + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 9570 + "license": "MIT", 9571 + "dependencies": { 9572 + "buffer-from": "^1.0.0", 9573 + "source-map": "^0.6.0" 9574 + } 9575 + }, 9576 + "node_modules/source-map-support/node_modules/source-map": { 9577 + "version": "0.6.1", 9578 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 9579 + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 9580 + "license": "BSD-3-Clause", 9581 + "engines": { 9582 + "node": ">=0.10.0" 9583 + } 9584 + }, 9585 + "node_modules/speakingurl": { 9586 + "version": "14.0.1", 9587 + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", 9588 + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", 9589 + "license": "BSD-3-Clause", 9590 + "engines": { 9591 + "node": ">=0.10.0" 9592 + } 9593 + }, 9594 + "node_modules/standard-as-callback": { 9595 + "version": "2.1.0", 9596 + "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", 9597 + "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==", 9598 + "license": "MIT" 9599 + }, 9600 + "node_modules/statuses": { 9601 + "version": "2.0.1", 9602 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 9603 + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 9604 + "license": "MIT", 9605 + "engines": { 9606 + "node": ">= 0.8" 9607 + } 9608 + }, 9609 + "node_modules/std-env": { 9610 + "version": "3.7.0", 9611 + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", 9612 + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==", 9613 + "license": "MIT" 9614 + }, 9615 + "node_modules/streamx": { 9616 + "version": "2.18.0", 9617 + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", 9618 + "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", 9619 + "license": "MIT", 9620 + "dependencies": { 9621 + "fast-fifo": "^1.3.2", 9622 + "queue-tick": "^1.0.1", 9623 + "text-decoder": "^1.1.0" 9624 + }, 9625 + "optionalDependencies": { 9626 + "bare-events": "^2.2.0" 9627 + } 9628 + }, 9629 + "node_modules/string_decoder": { 9630 + "version": "1.3.0", 9631 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 9632 + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 9633 + "license": "MIT", 9634 + "dependencies": { 9635 + "safe-buffer": "~5.2.0" 9636 + } 9637 + }, 9638 + "node_modules/string-width": { 9639 + "version": "4.2.3", 9640 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 9641 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 9642 + "license": "MIT", 9643 + "dependencies": { 9644 + "emoji-regex": "^8.0.0", 9645 + "is-fullwidth-code-point": "^3.0.0", 9646 + "strip-ansi": "^6.0.1" 9647 + }, 9648 + "engines": { 9649 + "node": ">=8" 9650 + } 9651 + }, 9652 + "node_modules/string-width-cjs": { 9653 + "name": "string-width", 9654 + "version": "4.2.3", 9655 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 9656 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 9657 + "license": "MIT", 9658 + "dependencies": { 9659 + "emoji-regex": "^8.0.0", 9660 + "is-fullwidth-code-point": "^3.0.0", 9661 + "strip-ansi": "^6.0.1" 9662 + }, 9663 + "engines": { 9664 + "node": ">=8" 9665 + } 9666 + }, 9667 + "node_modules/strip-ansi": { 9668 + "version": "6.0.1", 9669 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 9670 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 9671 + "license": "MIT", 9672 + "dependencies": { 9673 + "ansi-regex": "^5.0.1" 9674 + }, 9675 + "engines": { 9676 + "node": ">=8" 9677 + } 9678 + }, 9679 + "node_modules/strip-ansi-cjs": { 9680 + "name": "strip-ansi", 9681 + "version": "6.0.1", 9682 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 9683 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 9684 + "license": "MIT", 9685 + "dependencies": { 9686 + "ansi-regex": "^5.0.1" 9687 + }, 9688 + "engines": { 9689 + "node": ">=8" 9690 + } 9691 + }, 9692 + "node_modules/strip-final-newline": { 9693 + "version": "3.0.0", 9694 + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 9695 + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 9696 + "license": "MIT", 9697 + "engines": { 9698 + "node": ">=12" 9699 + }, 9700 + "funding": { 9701 + "url": "https://github.com/sponsors/sindresorhus" 9702 + } 9703 + }, 9704 + "node_modules/strip-literal": { 9705 + "version": "2.1.0", 9706 + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-2.1.0.tgz", 9707 + "integrity": "sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==", 9708 + "license": "MIT", 9709 + "dependencies": { 9710 + "js-tokens": "^9.0.0" 9711 + }, 9712 + "funding": { 9713 + "url": "https://github.com/sponsors/antfu" 9714 + } 9715 + }, 9716 + "node_modules/strip-literal/node_modules/js-tokens": { 9717 + "version": "9.0.0", 9718 + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.0.tgz", 9719 + "integrity": "sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==", 9720 + "license": "MIT" 9721 + }, 9722 + "node_modules/stylehacks": { 9723 + "version": "7.0.2", 9724 + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.2.tgz", 9725 + "integrity": "sha512-HdkWZS9b4gbgYTdMg4gJLmm7biAUug1qTqXjS+u8X+/pUd+9Px1E+520GnOW3rST9MNsVOVpsJG+mPHNosxjOQ==", 9726 + "license": "MIT", 9727 + "dependencies": { 9728 + "browserslist": "^4.23.1", 9729 + "postcss-selector-parser": "^6.1.0" 9730 + }, 9731 + "engines": { 9732 + "node": "^18.12.0 || ^20.9.0 || >=22.0" 9733 + }, 9734 + "peerDependencies": { 9735 + "postcss": "^8.4.31" 9736 + } 9737 + }, 9738 + "node_modules/sucrase": { 9739 + "version": "3.35.0", 9740 + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 9741 + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 9742 + "license": "MIT", 9743 + "dependencies": { 9744 + "@jridgewell/gen-mapping": "^0.3.2", 9745 + "commander": "^4.0.0", 9746 + "glob": "^10.3.10", 9747 + "lines-and-columns": "^1.1.6", 9748 + "mz": "^2.7.0", 9749 + "pirates": "^4.0.1", 9750 + "ts-interface-checker": "^0.1.9" 9751 + }, 9752 + "bin": { 9753 + "sucrase": "bin/sucrase", 9754 + "sucrase-node": "bin/sucrase-node" 9755 + }, 9756 + "engines": { 9757 + "node": ">=16 || 14 >=14.17" 9758 + } 9759 + }, 9760 + "node_modules/sucrase/node_modules/commander": { 9761 + "version": "4.1.1", 9762 + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 9763 + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 9764 + "license": "MIT", 9765 + "engines": { 9766 + "node": ">= 6" 9767 + } 9768 + }, 9769 + "node_modules/sucrase/node_modules/glob": { 9770 + "version": "10.4.5", 9771 + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 9772 + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 9773 + "license": "ISC", 9774 + "dependencies": { 9775 + "foreground-child": "^3.1.0", 9776 + "jackspeak": "^3.1.2", 9777 + "minimatch": "^9.0.4", 9778 + "minipass": "^7.1.2", 9779 + "package-json-from-dist": "^1.0.0", 9780 + "path-scurry": "^1.11.1" 9781 + }, 9782 + "bin": { 9783 + "glob": "dist/esm/bin.mjs" 9784 + }, 9785 + "funding": { 9786 + "url": "https://github.com/sponsors/isaacs" 9787 + } 9788 + }, 9789 + "node_modules/sucrase/node_modules/minimatch": { 9790 + "version": "9.0.5", 9791 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 9792 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 9793 + "license": "ISC", 9794 + "dependencies": { 9795 + "brace-expansion": "^2.0.1" 9796 + }, 9797 + "engines": { 9798 + "node": ">=16 || 14 >=14.17" 9799 + }, 9800 + "funding": { 9801 + "url": "https://github.com/sponsors/isaacs" 9802 + } 9803 + }, 9804 + "node_modules/sucrase/node_modules/minipass": { 9805 + "version": "7.1.2", 9806 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 9807 + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 9808 + "license": "ISC", 9809 + "engines": { 9810 + "node": ">=16 || 14 >=14.17" 9811 + } 9812 + }, 9813 + "node_modules/superjson": { 9814 + "version": "2.2.1", 9815 + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", 9816 + "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", 9817 + "license": "MIT", 9818 + "dependencies": { 9819 + "copy-anything": "^3.0.2" 9820 + }, 9821 + "engines": { 9822 + "node": ">=16" 9823 + } 9824 + }, 9825 + "node_modules/supports-color": { 9826 + "version": "5.5.0", 9827 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 9828 + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 9829 + "license": "MIT", 9830 + "dependencies": { 9831 + "has-flag": "^3.0.0" 9832 + }, 9833 + "engines": { 9834 + "node": ">=4" 9835 + } 9836 + }, 9837 + "node_modules/supports-preserve-symlinks-flag": { 9838 + "version": "1.0.0", 9839 + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 9840 + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 9841 + "license": "MIT", 9842 + "engines": { 9843 + "node": ">= 0.4" 9844 + }, 9845 + "funding": { 9846 + "url": "https://github.com/sponsors/ljharb" 9847 + } 9848 + }, 9849 + "node_modules/svg-tags": { 9850 + "version": "1.0.0", 9851 + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", 9852 + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" 9853 + }, 9854 + "node_modules/svgo": { 9855 + "version": "3.3.2", 9856 + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", 9857 + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", 9858 + "license": "MIT", 9859 + "dependencies": { 9860 + "@trysound/sax": "0.2.0", 9861 + "commander": "^7.2.0", 9862 + "css-select": "^5.1.0", 9863 + "css-tree": "^2.3.1", 9864 + "css-what": "^6.1.0", 9865 + "csso": "^5.0.5", 9866 + "picocolors": "^1.0.0" 9867 + }, 9868 + "bin": { 9869 + "svgo": "bin/svgo" 9870 + }, 9871 + "engines": { 9872 + "node": ">=14.0.0" 9873 + }, 9874 + "funding": { 9875 + "type": "opencollective", 9876 + "url": "https://opencollective.com/svgo" 9877 + } 9878 + }, 9879 + "node_modules/system-architecture": { 9880 + "version": "0.1.0", 9881 + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", 9882 + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", 9883 + "license": "MIT", 9884 + "engines": { 9885 + "node": ">=18" 9886 + }, 9887 + "funding": { 9888 + "url": "https://github.com/sponsors/sindresorhus" 9889 + } 9890 + }, 9891 + "node_modules/tailwind-config-viewer": { 9892 + "version": "2.0.4", 9893 + "resolved": "https://registry.npmjs.org/tailwind-config-viewer/-/tailwind-config-viewer-2.0.4.tgz", 9894 + "integrity": "sha512-icvcmdMmt9dphvas8wL40qttrHwAnW3QEN4ExJ2zICjwRsPj7gowd1cOceaWG3IfTuM/cTNGQcx+bsjMtmV+cw==", 9895 + "license": "MIT", 9896 + "dependencies": { 9897 + "@koa/router": "^12.0.1", 9898 + "commander": "^6.0.0", 9899 + "fs-extra": "^9.0.1", 9900 + "koa": "^2.14.2", 9901 + "koa-static": "^5.0.0", 9902 + "open": "^7.0.4", 9903 + "portfinder": "^1.0.26", 9904 + "replace-in-file": "^6.1.0" 9905 + }, 9906 + "bin": { 9907 + "tailwind-config-viewer": "cli/index.js", 9908 + "tailwindcss-config-viewer": "cli/index.js" 9909 + }, 9910 + "engines": { 9911 + "node": ">=13" 9912 + }, 9913 + "peerDependencies": { 9914 + "tailwindcss": "1 || 2 || 2.0.1-compat || 3" 9915 + } 9916 + }, 9917 + "node_modules/tailwind-config-viewer/node_modules/commander": { 9918 + "version": "6.2.1", 9919 + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", 9920 + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", 9921 + "license": "MIT", 9922 + "engines": { 9923 + "node": ">= 6" 9924 + } 9925 + }, 9926 + "node_modules/tailwind-config-viewer/node_modules/fs-extra": { 9927 + "version": "9.1.0", 9928 + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", 9929 + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", 9930 + "license": "MIT", 9931 + "dependencies": { 9932 + "at-least-node": "^1.0.0", 9933 + "graceful-fs": "^4.2.0", 9934 + "jsonfile": "^6.0.1", 9935 + "universalify": "^2.0.0" 9936 + }, 9937 + "engines": { 9938 + "node": ">=10" 9939 + } 9940 + }, 9941 + "node_modules/tailwind-config-viewer/node_modules/is-docker": { 9942 + "version": "2.2.1", 9943 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 9944 + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 9945 + "license": "MIT", 9946 + "bin": { 9947 + "is-docker": "cli.js" 9948 + }, 9949 + "engines": { 9950 + "node": ">=8" 9951 + }, 9952 + "funding": { 9953 + "url": "https://github.com/sponsors/sindresorhus" 9954 + } 9955 + }, 9956 + "node_modules/tailwind-config-viewer/node_modules/is-wsl": { 9957 + "version": "2.2.0", 9958 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 9959 + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 9960 + "license": "MIT", 9961 + "dependencies": { 9962 + "is-docker": "^2.0.0" 9963 + }, 9964 + "engines": { 9965 + "node": ">=8" 9966 + } 9967 + }, 9968 + "node_modules/tailwind-config-viewer/node_modules/open": { 9969 + "version": "7.4.2", 9970 + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", 9971 + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", 9972 + "license": "MIT", 9973 + "dependencies": { 9974 + "is-docker": "^2.0.0", 9975 + "is-wsl": "^2.1.1" 9976 + }, 9977 + "engines": { 9978 + "node": ">=8" 9979 + }, 9980 + "funding": { 9981 + "url": "https://github.com/sponsors/sindresorhus" 9982 + } 9983 + }, 9984 + "node_modules/tailwind-merge": { 9985 + "version": "2.4.0", 9986 + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.4.0.tgz", 9987 + "integrity": "sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==", 9988 + "license": "MIT", 9989 + "funding": { 9990 + "type": "github", 9991 + "url": "https://github.com/sponsors/dcastil" 9992 + } 9993 + }, 9994 + "node_modules/tailwindcss": { 9995 + "version": "3.4.9", 9996 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.9.tgz", 9997 + "integrity": "sha512-1SEOvRr6sSdV5IDf9iC+NU4dhwdqzF4zKKq3sAbasUWHEM6lsMhX+eNN5gkPx1BvLFEnZQEUFbXnGj8Qlp83Pg==", 9998 + "license": "MIT", 9999 + "dependencies": { 10000 + "@alloc/quick-lru": "^5.2.0", 10001 + "arg": "^5.0.2", 10002 + "chokidar": "^3.5.3", 10003 + "didyoumean": "^1.2.2", 10004 + "dlv": "^1.1.3", 10005 + "fast-glob": "^3.3.0", 10006 + "glob-parent": "^6.0.2", 10007 + "is-glob": "^4.0.3", 10008 + "jiti": "^1.21.0", 10009 + "lilconfig": "^2.1.0", 10010 + "micromatch": "^4.0.5", 10011 + "normalize-path": "^3.0.0", 10012 + "object-hash": "^3.0.0", 10013 + "picocolors": "^1.0.0", 10014 + "postcss": "^8.4.23", 10015 + "postcss-import": "^15.1.0", 10016 + "postcss-js": "^4.0.1", 10017 + "postcss-load-config": "^4.0.1", 10018 + "postcss-nested": "^6.0.1", 10019 + "postcss-selector-parser": "^6.0.11", 10020 + "resolve": "^1.22.2", 10021 + "sucrase": "^3.32.0" 10022 + }, 10023 + "bin": { 10024 + "tailwind": "lib/cli.js", 10025 + "tailwindcss": "lib/cli.js" 10026 + }, 10027 + "engines": { 10028 + "node": ">=14.0.0" 10029 + } 10030 + }, 10031 + "node_modules/tailwindcss/node_modules/glob-parent": { 10032 + "version": "6.0.2", 10033 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 10034 + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 10035 + "license": "ISC", 10036 + "dependencies": { 10037 + "is-glob": "^4.0.3" 10038 + }, 10039 + "engines": { 10040 + "node": ">=10.13.0" 10041 + } 10042 + }, 10043 + "node_modules/tailwindcss/node_modules/lilconfig": { 10044 + "version": "2.1.0", 10045 + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 10046 + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 10047 + "license": "MIT", 10048 + "engines": { 10049 + "node": ">=10" 10050 + } 10051 + }, 10052 + "node_modules/tapable": { 10053 + "version": "2.2.1", 10054 + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 10055 + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 10056 + "license": "MIT", 10057 + "engines": { 10058 + "node": ">=6" 10059 + } 10060 + }, 10061 + "node_modules/tar": { 10062 + "version": "6.2.1", 10063 + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 10064 + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 10065 + "license": "ISC", 10066 + "dependencies": { 10067 + "chownr": "^2.0.0", 10068 + "fs-minipass": "^2.0.0", 10069 + "minipass": "^5.0.0", 10070 + "minizlib": "^2.1.1", 10071 + "mkdirp": "^1.0.3", 10072 + "yallist": "^4.0.0" 10073 + }, 10074 + "engines": { 10075 + "node": ">=10" 10076 + } 10077 + }, 10078 + "node_modules/tar-stream": { 10079 + "version": "3.1.7", 10080 + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", 10081 + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", 10082 + "license": "MIT", 10083 + "dependencies": { 10084 + "b4a": "^1.6.4", 10085 + "fast-fifo": "^1.2.0", 10086 + "streamx": "^2.15.0" 10087 + } 10088 + }, 10089 + "node_modules/tar/node_modules/yallist": { 10090 + "version": "4.0.0", 10091 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 10092 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 10093 + "license": "ISC" 10094 + }, 10095 + "node_modules/terser": { 10096 + "version": "5.31.5", 10097 + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.5.tgz", 10098 + "integrity": "sha512-YPmas0L0rE1UyLL/llTWA0SiDOqIcAQYLeUj7cJYzXHlRTAnMSg9pPe4VJ5PlKvTrPQsdVFuiRiwyeNlYgwh2Q==", 10099 + "license": "BSD-2-Clause", 10100 + "dependencies": { 10101 + "@jridgewell/source-map": "^0.3.3", 10102 + "acorn": "^8.8.2", 10103 + "commander": "^2.20.0", 10104 + "source-map-support": "~0.5.20" 10105 + }, 10106 + "bin": { 10107 + "terser": "bin/terser" 10108 + }, 10109 + "engines": { 10110 + "node": ">=10" 10111 + } 10112 + }, 10113 + "node_modules/terser/node_modules/commander": { 10114 + "version": "2.20.3", 10115 + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 10116 + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 10117 + "license": "MIT" 10118 + }, 10119 + "node_modules/text-decoder": { 10120 + "version": "1.1.1", 10121 + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.1.tgz", 10122 + "integrity": "sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==", 10123 + "license": "Apache-2.0", 10124 + "dependencies": { 10125 + "b4a": "^1.6.4" 10126 + } 10127 + }, 10128 + "node_modules/thenify": { 10129 + "version": "3.3.1", 10130 + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 10131 + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 10132 + "license": "MIT", 10133 + "dependencies": { 10134 + "any-promise": "^1.0.0" 10135 + } 10136 + }, 10137 + "node_modules/thenify-all": { 10138 + "version": "1.6.0", 10139 + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 10140 + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 10141 + "license": "MIT", 10142 + "dependencies": { 10143 + "thenify": ">= 3.1.0 < 4" 10144 + }, 10145 + "engines": { 10146 + "node": ">=0.8" 10147 + } 10148 + }, 10149 + "node_modules/tiny-invariant": { 10150 + "version": "1.3.3", 10151 + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", 10152 + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", 10153 + "license": "MIT" 10154 + }, 10155 + "node_modules/tinyrainbow": { 10156 + "version": "1.2.0", 10157 + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", 10158 + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", 10159 + "license": "MIT", 10160 + "engines": { 10161 + "node": ">=14.0.0" 10162 + } 10163 + }, 10164 + "node_modules/to-fast-properties": { 10165 + "version": "2.0.0", 10166 + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 10167 + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 10168 + "license": "MIT", 10169 + "engines": { 10170 + "node": ">=4" 10171 + } 10172 + }, 10173 + "node_modules/to-regex-range": { 10174 + "version": "5.0.1", 10175 + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 10176 + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 10177 + "license": "MIT", 10178 + "dependencies": { 10179 + "is-number": "^7.0.0" 10180 + }, 10181 + "engines": { 10182 + "node": ">=8.0" 10183 + } 10184 + }, 10185 + "node_modules/toidentifier": { 10186 + "version": "1.0.1", 10187 + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 10188 + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 10189 + "license": "MIT", 10190 + "engines": { 10191 + "node": ">=0.6" 10192 + } 10193 + }, 10194 + "node_modules/totalist": { 10195 + "version": "3.0.1", 10196 + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 10197 + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 10198 + "license": "MIT", 10199 + "engines": { 10200 + "node": ">=6" 10201 + } 10202 + }, 10203 + "node_modules/tr46": { 10204 + "version": "0.0.3", 10205 + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 10206 + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 10207 + "license": "MIT" 10208 + }, 10209 + "node_modules/ts-interface-checker": { 10210 + "version": "0.1.13", 10211 + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 10212 + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 10213 + "license": "Apache-2.0" 10214 + }, 10215 + "node_modules/tsscmp": { 10216 + "version": "1.0.6", 10217 + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", 10218 + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", 10219 + "license": "MIT", 10220 + "engines": { 10221 + "node": ">=0.6.x" 10222 + } 10223 + }, 10224 + "node_modules/type-fest": { 10225 + "version": "3.13.1", 10226 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", 10227 + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", 10228 + "license": "(MIT OR CC0-1.0)", 10229 + "engines": { 10230 + "node": ">=14.16" 10231 + }, 10232 + "funding": { 10233 + "url": "https://github.com/sponsors/sindresorhus" 10234 + } 10235 + }, 10236 + "node_modules/type-is": { 10237 + "version": "1.6.18", 10238 + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 10239 + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 10240 + "license": "MIT", 10241 + "dependencies": { 10242 + "media-typer": "0.3.0", 10243 + "mime-types": "~2.1.24" 10244 + }, 10245 + "engines": { 10246 + "node": ">= 0.6" 10247 + } 10248 + }, 10249 + "node_modules/ufo": { 10250 + "version": "1.5.4", 10251 + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", 10252 + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", 10253 + "license": "MIT" 10254 + }, 10255 + "node_modules/ultrahtml": { 10256 + "version": "1.5.3", 10257 + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz", 10258 + "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==", 10259 + "license": "MIT" 10260 + }, 10261 + "node_modules/uncrypto": { 10262 + "version": "0.1.3", 10263 + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", 10264 + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", 10265 + "license": "MIT" 10266 + }, 10267 + "node_modules/unctx": { 10268 + "version": "2.3.1", 10269 + "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.3.1.tgz", 10270 + "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", 10271 + "license": "MIT", 10272 + "dependencies": { 10273 + "acorn": "^8.8.2", 10274 + "estree-walker": "^3.0.3", 10275 + "magic-string": "^0.30.0", 10276 + "unplugin": "^1.3.1" 10277 + } 10278 + }, 10279 + "node_modules/undici": { 10280 + "version": "5.28.4", 10281 + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", 10282 + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", 10283 + "license": "MIT", 10284 + "dependencies": { 10285 + "@fastify/busboy": "^2.0.0" 10286 + }, 10287 + "engines": { 10288 + "node": ">=14.0" 10289 + } 10290 + }, 10291 + "node_modules/undici-types": { 10292 + "version": "6.13.0", 10293 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.13.0.tgz", 10294 + "integrity": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==", 10295 + "license": "MIT" 10296 + }, 10297 + "node_modules/unenv": { 10298 + "version": "1.10.0", 10299 + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.10.0.tgz", 10300 + "integrity": "sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==", 10301 + "license": "MIT", 10302 + "dependencies": { 10303 + "consola": "^3.2.3", 10304 + "defu": "^6.1.4", 10305 + "mime": "^3.0.0", 10306 + "node-fetch-native": "^1.6.4", 10307 + "pathe": "^1.1.2" 10308 + } 10309 + }, 10310 + "node_modules/unenv/node_modules/mime": { 10311 + "version": "3.0.0", 10312 + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", 10313 + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", 10314 + "license": "MIT", 10315 + "bin": { 10316 + "mime": "cli.js" 10317 + }, 10318 + "engines": { 10319 + "node": ">=10.0.0" 10320 + } 10321 + }, 10322 + "node_modules/unhead": { 10323 + "version": "1.9.16", 10324 + "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.9.16.tgz", 10325 + "integrity": "sha512-FOoXkuRNDwt7PUaNE0LXNCb6RCz4vTpkGymz4tJ8rcaG5uUJ0lxGK536hzCFwFw3Xkp3n+tkt2yCcbAZE/FOvA==", 10326 + "license": "MIT", 10327 + "dependencies": { 10328 + "@unhead/dom": "1.9.16", 10329 + "@unhead/schema": "1.9.16", 10330 + "@unhead/shared": "1.9.16", 10331 + "hookable": "^5.5.3" 10332 + }, 10333 + "funding": { 10334 + "url": "https://github.com/sponsors/harlan-zw" 10335 + } 10336 + }, 10337 + "node_modules/unicorn-magic": { 10338 + "version": "0.1.0", 10339 + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 10340 + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 10341 + "license": "MIT", 10342 + "engines": { 10343 + "node": ">=18" 10344 + }, 10345 + "funding": { 10346 + "url": "https://github.com/sponsors/sindresorhus" 10347 + } 10348 + }, 10349 + "node_modules/unimport": { 10350 + "version": "3.10.0", 10351 + "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.10.0.tgz", 10352 + "integrity": "sha512-/UvKRfWx3mNDWwWQhR62HsoM3wxHwYdTq8ellZzMOHnnw4Dp8tovgthyW7DjTrbjDL+i4idOp06voz2VKlvrLw==", 10353 + "license": "MIT", 10354 + "dependencies": { 10355 + "@rollup/pluginutils": "^5.1.0", 10356 + "acorn": "^8.12.1", 10357 + "escape-string-regexp": "^5.0.0", 10358 + "estree-walker": "^3.0.3", 10359 + "fast-glob": "^3.3.2", 10360 + "local-pkg": "^0.5.0", 10361 + "magic-string": "^0.30.11", 10362 + "mlly": "^1.7.1", 10363 + "pathe": "^1.1.2", 10364 + "pkg-types": "^1.1.3", 10365 + "scule": "^1.3.0", 10366 + "strip-literal": "^2.1.0", 10367 + "unplugin": "^1.12.0" 10368 + } 10369 + }, 10370 + "node_modules/universalify": { 10371 + "version": "2.0.1", 10372 + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 10373 + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 10374 + "license": "MIT", 10375 + "engines": { 10376 + "node": ">= 10.0.0" 10377 + } 10378 + }, 10379 + "node_modules/unplugin": { 10380 + "version": "1.12.1", 10381 + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.12.1.tgz", 10382 + "integrity": "sha512-aXEH9c5qi3uYZHo0niUtxDlT9ylG/luMW/dZslSCkbtC31wCyFkmM0kyoBBh+Grhn7CL+/kvKLfN61/EdxPxMQ==", 10383 + "license": "MIT", 10384 + "dependencies": { 10385 + "acorn": "^8.12.1", 10386 + "chokidar": "^3.6.0", 10387 + "webpack-sources": "^3.2.3", 10388 + "webpack-virtual-modules": "^0.6.2" 10389 + }, 10390 + "engines": { 10391 + "node": ">=14.0.0" 10392 + } 10393 + }, 10394 + "node_modules/unplugin-vue-router": { 10395 + "version": "0.10.2", 10396 + "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.10.2.tgz", 10397 + "integrity": "sha512-aG1UzB96cu4Lu+EdQxl22NIKFrde5b+k568JdsaJ2gzPqnQufPk2j1gCA5DxFfGz9zg4tYTqy2A2JHForVbyXg==", 10398 + "license": "MIT", 10399 + "dependencies": { 10400 + "@babel/types": "^7.25.2", 10401 + "@rollup/pluginutils": "^5.1.0", 10402 + "@vue-macros/common": "^1.11.0", 10403 + "ast-walker-scope": "^0.6.1", 10404 + "chokidar": "^3.6.0", 10405 + "fast-glob": "^3.3.2", 10406 + "json5": "^2.2.3", 10407 + "local-pkg": "^0.5.0", 10408 + "mlly": "^1.7.1", 10409 + "pathe": "^1.1.2", 10410 + "scule": "^1.3.0", 10411 + "unplugin": "^1.12.0", 10412 + "yaml": "^2.5.0" 10413 + }, 10414 + "peerDependencies": { 10415 + "vue-router": "^4.4.0" 10416 + }, 10417 + "peerDependenciesMeta": { 10418 + "vue-router": { 10419 + "optional": true 10420 + } 10421 + } 10422 + }, 10423 + "node_modules/unstorage": { 10424 + "version": "1.10.2", 10425 + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", 10426 + "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", 10427 + "license": "MIT", 10428 + "dependencies": { 10429 + "anymatch": "^3.1.3", 10430 + "chokidar": "^3.6.0", 10431 + "destr": "^2.0.3", 10432 + "h3": "^1.11.1", 10433 + "listhen": "^1.7.2", 10434 + "lru-cache": "^10.2.0", 10435 + "mri": "^1.2.0", 10436 + "node-fetch-native": "^1.6.2", 10437 + "ofetch": "^1.3.3", 10438 + "ufo": "^1.4.0" 10439 + }, 10440 + "peerDependencies": { 10441 + "@azure/app-configuration": "^1.5.0", 10442 + "@azure/cosmos": "^4.0.0", 10443 + "@azure/data-tables": "^13.2.2", 10444 + "@azure/identity": "^4.0.1", 10445 + "@azure/keyvault-secrets": "^4.8.0", 10446 + "@azure/storage-blob": "^12.17.0", 10447 + "@capacitor/preferences": "^5.0.7", 10448 + "@netlify/blobs": "^6.5.0 || ^7.0.0", 10449 + "@planetscale/database": "^1.16.0", 10450 + "@upstash/redis": "^1.28.4", 10451 + "@vercel/kv": "^1.0.1", 10452 + "idb-keyval": "^6.2.1", 10453 + "ioredis": "^5.3.2" 10454 + }, 10455 + "peerDependenciesMeta": { 10456 + "@azure/app-configuration": { 10457 + "optional": true 10458 + }, 10459 + "@azure/cosmos": { 10460 + "optional": true 10461 + }, 10462 + "@azure/data-tables": { 10463 + "optional": true 10464 + }, 10465 + "@azure/identity": { 10466 + "optional": true 10467 + }, 10468 + "@azure/keyvault-secrets": { 10469 + "optional": true 10470 + }, 10471 + "@azure/storage-blob": { 10472 + "optional": true 10473 + }, 10474 + "@capacitor/preferences": { 10475 + "optional": true 10476 + }, 10477 + "@netlify/blobs": { 10478 + "optional": true 10479 + }, 10480 + "@planetscale/database": { 10481 + "optional": true 10482 + }, 10483 + "@upstash/redis": { 10484 + "optional": true 10485 + }, 10486 + "@vercel/kv": { 10487 + "optional": true 10488 + }, 10489 + "idb-keyval": { 10490 + "optional": true 10491 + }, 10492 + "ioredis": { 10493 + "optional": true 10494 + } 10495 + } 10496 + }, 10497 + "node_modules/unstorage/node_modules/lru-cache": { 10498 + "version": "10.4.3", 10499 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 10500 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 10501 + "license": "ISC" 10502 + }, 10503 + "node_modules/untun": { 10504 + "version": "0.1.3", 10505 + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", 10506 + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", 10507 + "license": "MIT", 10508 + "dependencies": { 10509 + "citty": "^0.1.5", 10510 + "consola": "^3.2.3", 10511 + "pathe": "^1.1.1" 10512 + }, 10513 + "bin": { 10514 + "untun": "bin/untun.mjs" 10515 + } 10516 + }, 10517 + "node_modules/untyped": { 10518 + "version": "1.4.2", 10519 + "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.4.2.tgz", 10520 + "integrity": "sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==", 10521 + "license": "MIT", 10522 + "dependencies": { 10523 + "@babel/core": "^7.23.7", 10524 + "@babel/standalone": "^7.23.8", 10525 + "@babel/types": "^7.23.6", 10526 + "defu": "^6.1.4", 10527 + "jiti": "^1.21.0", 10528 + "mri": "^1.2.0", 10529 + "scule": "^1.2.0" 10530 + }, 10531 + "bin": { 10532 + "untyped": "dist/cli.mjs" 10533 + } 10534 + }, 10535 + "node_modules/unwasm": { 10536 + "version": "0.3.9", 10537 + "resolved": "https://registry.npmjs.org/unwasm/-/unwasm-0.3.9.tgz", 10538 + "integrity": "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==", 10539 + "license": "MIT", 10540 + "dependencies": { 10541 + "knitwork": "^1.0.0", 10542 + "magic-string": "^0.30.8", 10543 + "mlly": "^1.6.1", 10544 + "pathe": "^1.1.2", 10545 + "pkg-types": "^1.0.3", 10546 + "unplugin": "^1.10.0" 10547 + } 10548 + }, 10549 + "node_modules/update-browserslist-db": { 10550 + "version": "1.1.0", 10551 + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", 10552 + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", 10553 + "funding": [ 10554 + { 10555 + "type": "opencollective", 10556 + "url": "https://opencollective.com/browserslist" 10557 + }, 10558 + { 10559 + "type": "tidelift", 10560 + "url": "https://tidelift.com/funding/github/npm/browserslist" 10561 + }, 10562 + { 10563 + "type": "github", 10564 + "url": "https://github.com/sponsors/ai" 10565 + } 10566 + ], 10567 + "license": "MIT", 10568 + "dependencies": { 10569 + "escalade": "^3.1.2", 10570 + "picocolors": "^1.0.1" 10571 + }, 10572 + "bin": { 10573 + "update-browserslist-db": "cli.js" 10574 + }, 10575 + "peerDependencies": { 10576 + "browserslist": ">= 4.21.0" 10577 + } 10578 + }, 10579 + "node_modules/uqr": { 10580 + "version": "0.1.2", 10581 + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", 10582 + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==", 10583 + "license": "MIT" 10584 + }, 10585 + "node_modules/urlpattern-polyfill": { 10586 + "version": "8.0.2", 10587 + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", 10588 + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", 10589 + "license": "MIT" 10590 + }, 10591 + "node_modules/util-deprecate": { 10592 + "version": "1.0.2", 10593 + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 10594 + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 10595 + "license": "MIT" 10596 + }, 10597 + "node_modules/vary": { 10598 + "version": "1.1.2", 10599 + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 10600 + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 10601 + "license": "MIT", 10602 + "engines": { 10603 + "node": ">= 0.8" 10604 + } 10605 + }, 10606 + "node_modules/vite": { 10607 + "version": "5.4.0", 10608 + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.0.tgz", 10609 + "integrity": "sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==", 10610 + "license": "MIT", 10611 + "dependencies": { 10612 + "esbuild": "^0.21.3", 10613 + "postcss": "^8.4.40", 10614 + "rollup": "^4.13.0" 10615 + }, 10616 + "bin": { 10617 + "vite": "bin/vite.js" 10618 + }, 10619 + "engines": { 10620 + "node": "^18.0.0 || >=20.0.0" 10621 + }, 10622 + "funding": { 10623 + "url": "https://github.com/vitejs/vite?sponsor=1" 10624 + }, 10625 + "optionalDependencies": { 10626 + "fsevents": "~2.3.3" 10627 + }, 10628 + "peerDependencies": { 10629 + "@types/node": "^18.0.0 || >=20.0.0", 10630 + "less": "*", 10631 + "lightningcss": "^1.21.0", 10632 + "sass": "*", 10633 + "sass-embedded": "*", 10634 + "stylus": "*", 10635 + "sugarss": "*", 10636 + "terser": "^5.4.0" 10637 + }, 10638 + "peerDependenciesMeta": { 10639 + "@types/node": { 10640 + "optional": true 10641 + }, 10642 + "less": { 10643 + "optional": true 10644 + }, 10645 + "lightningcss": { 10646 + "optional": true 10647 + }, 10648 + "sass": { 10649 + "optional": true 10650 + }, 10651 + "sass-embedded": { 10652 + "optional": true 10653 + }, 10654 + "stylus": { 10655 + "optional": true 10656 + }, 10657 + "sugarss": { 10658 + "optional": true 10659 + }, 10660 + "terser": { 10661 + "optional": true 10662 + } 10663 + } 10664 + }, 10665 + "node_modules/vite-hot-client": { 10666 + "version": "0.2.3", 10667 + "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-0.2.3.tgz", 10668 + "integrity": "sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==", 10669 + "license": "MIT", 10670 + "funding": { 10671 + "url": "https://github.com/sponsors/antfu" 10672 + }, 10673 + "peerDependencies": { 10674 + "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0" 10675 + } 10676 + }, 10677 + "node_modules/vite-node": { 10678 + "version": "2.0.5", 10679 + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.0.5.tgz", 10680 + "integrity": "sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==", 10681 + "license": "MIT", 10682 + "dependencies": { 10683 + "cac": "^6.7.14", 10684 + "debug": "^4.3.5", 10685 + "pathe": "^1.1.2", 10686 + "tinyrainbow": "^1.2.0", 10687 + "vite": "^5.0.0" 10688 + }, 10689 + "bin": { 10690 + "vite-node": "vite-node.mjs" 10691 + }, 10692 + "engines": { 10693 + "node": "^18.0.0 || >=20.0.0" 10694 + }, 10695 + "funding": { 10696 + "url": "https://opencollective.com/vitest" 10697 + } 10698 + }, 10699 + "node_modules/vite-plugin-checker": { 10700 + "version": "0.7.2", 10701 + "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.7.2.tgz", 10702 + "integrity": "sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==", 10703 + "license": "MIT", 10704 + "dependencies": { 10705 + "@babel/code-frame": "^7.12.13", 10706 + "ansi-escapes": "^4.3.0", 10707 + "chalk": "^4.1.1", 10708 + "chokidar": "^3.5.1", 10709 + "commander": "^8.0.0", 10710 + "fast-glob": "^3.2.7", 10711 + "fs-extra": "^11.1.0", 10712 + "npm-run-path": "^4.0.1", 10713 + "strip-ansi": "^6.0.0", 10714 + "tiny-invariant": "^1.1.0", 10715 + "vscode-languageclient": "^7.0.0", 10716 + "vscode-languageserver": "^7.0.0", 10717 + "vscode-languageserver-textdocument": "^1.0.1", 10718 + "vscode-uri": "^3.0.2" 10719 + }, 10720 + "engines": { 10721 + "node": ">=14.16" 10722 + }, 10723 + "peerDependencies": { 10724 + "@biomejs/biome": ">=1.7", 10725 + "eslint": ">=7", 10726 + "meow": "^9.0.0", 10727 + "optionator": "^0.9.1", 10728 + "stylelint": ">=13", 10729 + "typescript": "*", 10730 + "vite": ">=2.0.0", 10731 + "vls": "*", 10732 + "vti": "*", 10733 + "vue-tsc": ">=2.0.0" 10734 + }, 10735 + "peerDependenciesMeta": { 10736 + "@biomejs/biome": { 10737 + "optional": true 10738 + }, 10739 + "eslint": { 10740 + "optional": true 10741 + }, 10742 + "meow": { 10743 + "optional": true 10744 + }, 10745 + "optionator": { 10746 + "optional": true 10747 + }, 10748 + "stylelint": { 10749 + "optional": true 10750 + }, 10751 + "typescript": { 10752 + "optional": true 10753 + }, 10754 + "vls": { 10755 + "optional": true 10756 + }, 10757 + "vti": { 10758 + "optional": true 10759 + }, 10760 + "vue-tsc": { 10761 + "optional": true 10762 + } 10763 + } 10764 + }, 10765 + "node_modules/vite-plugin-checker/node_modules/ansi-styles": { 10766 + "version": "4.3.0", 10767 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 10768 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 10769 + "license": "MIT", 10770 + "dependencies": { 10771 + "color-convert": "^2.0.1" 10772 + }, 10773 + "engines": { 10774 + "node": ">=8" 10775 + }, 10776 + "funding": { 10777 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 10778 + } 10779 + }, 10780 + "node_modules/vite-plugin-checker/node_modules/chalk": { 10781 + "version": "4.1.2", 10782 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 10783 + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 10784 + "license": "MIT", 10785 + "dependencies": { 10786 + "ansi-styles": "^4.1.0", 10787 + "supports-color": "^7.1.0" 10788 + }, 10789 + "engines": { 10790 + "node": ">=10" 10791 + }, 10792 + "funding": { 10793 + "url": "https://github.com/chalk/chalk?sponsor=1" 10794 + } 10795 + }, 10796 + "node_modules/vite-plugin-checker/node_modules/color-convert": { 10797 + "version": "2.0.1", 10798 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 10799 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 10800 + "license": "MIT", 10801 + "dependencies": { 10802 + "color-name": "~1.1.4" 10803 + }, 10804 + "engines": { 10805 + "node": ">=7.0.0" 10806 + } 10807 + }, 10808 + "node_modules/vite-plugin-checker/node_modules/color-name": { 10809 + "version": "1.1.4", 10810 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 10811 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 10812 + "license": "MIT" 10813 + }, 10814 + "node_modules/vite-plugin-checker/node_modules/commander": { 10815 + "version": "8.3.0", 10816 + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", 10817 + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", 10818 + "license": "MIT", 10819 + "engines": { 10820 + "node": ">= 12" 10821 + } 10822 + }, 10823 + "node_modules/vite-plugin-checker/node_modules/has-flag": { 10824 + "version": "4.0.0", 10825 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 10826 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 10827 + "license": "MIT", 10828 + "engines": { 10829 + "node": ">=8" 10830 + } 10831 + }, 10832 + "node_modules/vite-plugin-checker/node_modules/npm-run-path": { 10833 + "version": "4.0.1", 10834 + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 10835 + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 10836 + "license": "MIT", 10837 + "dependencies": { 10838 + "path-key": "^3.0.0" 10839 + }, 10840 + "engines": { 10841 + "node": ">=8" 10842 + } 10843 + }, 10844 + "node_modules/vite-plugin-checker/node_modules/supports-color": { 10845 + "version": "7.2.0", 10846 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 10847 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 10848 + "license": "MIT", 10849 + "dependencies": { 10850 + "has-flag": "^4.0.0" 10851 + }, 10852 + "engines": { 10853 + "node": ">=8" 10854 + } 10855 + }, 10856 + "node_modules/vite-plugin-inspect": { 10857 + "version": "0.8.5", 10858 + "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-0.8.5.tgz", 10859 + "integrity": "sha512-JvTUqsP1JNDw0lMZ5Z/r5cSj81VK2B7884LO1DC3GMBhdcjcsAnJjdWq7bzQL01Xbh+v60d3lju3g+z7eAtNew==", 10860 + "license": "MIT", 10861 + "dependencies": { 10862 + "@antfu/utils": "^0.7.10", 10863 + "@rollup/pluginutils": "^5.1.0", 10864 + "debug": "^4.3.5", 10865 + "error-stack-parser-es": "^0.1.4", 10866 + "fs-extra": "^11.2.0", 10867 + "open": "^10.1.0", 10868 + "perfect-debounce": "^1.0.0", 10869 + "picocolors": "^1.0.1", 10870 + "sirv": "^2.0.4" 10871 + }, 10872 + "engines": { 10873 + "node": ">=14" 10874 + }, 10875 + "funding": { 10876 + "url": "https://github.com/sponsors/antfu" 10877 + }, 10878 + "peerDependencies": { 10879 + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" 10880 + }, 10881 + "peerDependenciesMeta": { 10882 + "@nuxt/kit": { 10883 + "optional": true 10884 + } 10885 + } 10886 + }, 10887 + "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": { 10888 + "version": "3.0.0", 10889 + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 10890 + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 10891 + "license": "MIT", 10892 + "engines": { 10893 + "node": ">=12" 10894 + }, 10895 + "funding": { 10896 + "url": "https://github.com/sponsors/sindresorhus" 10897 + } 10898 + }, 10899 + "node_modules/vite-plugin-inspect/node_modules/open": { 10900 + "version": "10.1.0", 10901 + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", 10902 + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", 10903 + "license": "MIT", 10904 + "dependencies": { 10905 + "default-browser": "^5.2.1", 10906 + "define-lazy-prop": "^3.0.0", 10907 + "is-inside-container": "^1.0.0", 10908 + "is-wsl": "^3.1.0" 10909 + }, 10910 + "engines": { 10911 + "node": ">=18" 10912 + }, 10913 + "funding": { 10914 + "url": "https://github.com/sponsors/sindresorhus" 10915 + } 10916 + }, 10917 + "node_modules/vite-plugin-vue-inspector": { 10918 + "version": "5.1.3", 10919 + "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.1.3.tgz", 10920 + "integrity": "sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg==", 10921 + "license": "MIT", 10922 + "dependencies": { 10923 + "@babel/core": "^7.23.0", 10924 + "@babel/plugin-proposal-decorators": "^7.23.0", 10925 + "@babel/plugin-syntax-import-attributes": "^7.22.5", 10926 + "@babel/plugin-syntax-import-meta": "^7.10.4", 10927 + "@babel/plugin-transform-typescript": "^7.22.15", 10928 + "@vue/babel-plugin-jsx": "^1.1.5", 10929 + "@vue/compiler-dom": "^3.3.4", 10930 + "kolorist": "^1.8.0", 10931 + "magic-string": "^0.30.4" 10932 + }, 10933 + "peerDependencies": { 10934 + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" 10935 + } 10936 + }, 10937 + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { 10938 + "version": "0.21.5", 10939 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 10940 + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 10941 + "cpu": [ 10942 + "ppc64" 10943 + ], 10944 + "license": "MIT", 10945 + "optional": true, 10946 + "os": [ 10947 + "aix" 10948 + ], 10949 + "engines": { 10950 + "node": ">=12" 10951 + } 10952 + }, 10953 + "node_modules/vite/node_modules/@esbuild/android-arm": { 10954 + "version": "0.21.5", 10955 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 10956 + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 10957 + "cpu": [ 10958 + "arm" 10959 + ], 10960 + "license": "MIT", 10961 + "optional": true, 10962 + "os": [ 10963 + "android" 10964 + ], 10965 + "engines": { 10966 + "node": ">=12" 10967 + } 10968 + }, 10969 + "node_modules/vite/node_modules/@esbuild/android-arm64": { 10970 + "version": "0.21.5", 10971 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 10972 + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 10973 + "cpu": [ 10974 + "arm64" 10975 + ], 10976 + "license": "MIT", 10977 + "optional": true, 10978 + "os": [ 10979 + "android" 10980 + ], 10981 + "engines": { 10982 + "node": ">=12" 10983 + } 10984 + }, 10985 + "node_modules/vite/node_modules/@esbuild/android-x64": { 10986 + "version": "0.21.5", 10987 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 10988 + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 10989 + "cpu": [ 10990 + "x64" 10991 + ], 10992 + "license": "MIT", 10993 + "optional": true, 10994 + "os": [ 10995 + "android" 10996 + ], 10997 + "engines": { 10998 + "node": ">=12" 10999 + } 11000 + }, 11001 + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { 11002 + "version": "0.21.5", 11003 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 11004 + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 11005 + "cpu": [ 11006 + "arm64" 11007 + ], 11008 + "license": "MIT", 11009 + "optional": true, 11010 + "os": [ 11011 + "darwin" 11012 + ], 11013 + "engines": { 11014 + "node": ">=12" 11015 + } 11016 + }, 11017 + "node_modules/vite/node_modules/@esbuild/darwin-x64": { 11018 + "version": "0.21.5", 11019 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 11020 + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 11021 + "cpu": [ 11022 + "x64" 11023 + ], 11024 + "license": "MIT", 11025 + "optional": true, 11026 + "os": [ 11027 + "darwin" 11028 + ], 11029 + "engines": { 11030 + "node": ">=12" 11031 + } 11032 + }, 11033 + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { 11034 + "version": "0.21.5", 11035 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 11036 + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 11037 + "cpu": [ 11038 + "arm64" 11039 + ], 11040 + "license": "MIT", 11041 + "optional": true, 11042 + "os": [ 11043 + "freebsd" 11044 + ], 11045 + "engines": { 11046 + "node": ">=12" 11047 + } 11048 + }, 11049 + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { 11050 + "version": "0.21.5", 11051 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 11052 + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 11053 + "cpu": [ 11054 + "x64" 11055 + ], 11056 + "license": "MIT", 11057 + "optional": true, 11058 + "os": [ 11059 + "freebsd" 11060 + ], 11061 + "engines": { 11062 + "node": ">=12" 11063 + } 11064 + }, 11065 + "node_modules/vite/node_modules/@esbuild/linux-arm": { 11066 + "version": "0.21.5", 11067 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 11068 + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 11069 + "cpu": [ 11070 + "arm" 11071 + ], 11072 + "license": "MIT", 11073 + "optional": true, 11074 + "os": [ 11075 + "linux" 11076 + ], 11077 + "engines": { 11078 + "node": ">=12" 11079 + } 11080 + }, 11081 + "node_modules/vite/node_modules/@esbuild/linux-arm64": { 11082 + "version": "0.21.5", 11083 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 11084 + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 11085 + "cpu": [ 11086 + "arm64" 11087 + ], 11088 + "license": "MIT", 11089 + "optional": true, 11090 + "os": [ 11091 + "linux" 11092 + ], 11093 + "engines": { 11094 + "node": ">=12" 11095 + } 11096 + }, 11097 + "node_modules/vite/node_modules/@esbuild/linux-ia32": { 11098 + "version": "0.21.5", 11099 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 11100 + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 11101 + "cpu": [ 11102 + "ia32" 11103 + ], 11104 + "license": "MIT", 11105 + "optional": true, 11106 + "os": [ 11107 + "linux" 11108 + ], 11109 + "engines": { 11110 + "node": ">=12" 11111 + } 11112 + }, 11113 + "node_modules/vite/node_modules/@esbuild/linux-loong64": { 11114 + "version": "0.21.5", 11115 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 11116 + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 11117 + "cpu": [ 11118 + "loong64" 11119 + ], 11120 + "license": "MIT", 11121 + "optional": true, 11122 + "os": [ 11123 + "linux" 11124 + ], 11125 + "engines": { 11126 + "node": ">=12" 11127 + } 11128 + }, 11129 + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { 11130 + "version": "0.21.5", 11131 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 11132 + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 11133 + "cpu": [ 11134 + "mips64el" 11135 + ], 11136 + "license": "MIT", 11137 + "optional": true, 11138 + "os": [ 11139 + "linux" 11140 + ], 11141 + "engines": { 11142 + "node": ">=12" 11143 + } 11144 + }, 11145 + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { 11146 + "version": "0.21.5", 11147 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 11148 + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 11149 + "cpu": [ 11150 + "ppc64" 11151 + ], 11152 + "license": "MIT", 11153 + "optional": true, 11154 + "os": [ 11155 + "linux" 11156 + ], 11157 + "engines": { 11158 + "node": ">=12" 11159 + } 11160 + }, 11161 + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { 11162 + "version": "0.21.5", 11163 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 11164 + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 11165 + "cpu": [ 11166 + "riscv64" 11167 + ], 11168 + "license": "MIT", 11169 + "optional": true, 11170 + "os": [ 11171 + "linux" 11172 + ], 11173 + "engines": { 11174 + "node": ">=12" 11175 + } 11176 + }, 11177 + "node_modules/vite/node_modules/@esbuild/linux-s390x": { 11178 + "version": "0.21.5", 11179 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 11180 + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 11181 + "cpu": [ 11182 + "s390x" 11183 + ], 11184 + "license": "MIT", 11185 + "optional": true, 11186 + "os": [ 11187 + "linux" 11188 + ], 11189 + "engines": { 11190 + "node": ">=12" 11191 + } 11192 + }, 11193 + "node_modules/vite/node_modules/@esbuild/linux-x64": { 11194 + "version": "0.21.5", 11195 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 11196 + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 11197 + "cpu": [ 11198 + "x64" 11199 + ], 11200 + "license": "MIT", 11201 + "optional": true, 11202 + "os": [ 11203 + "linux" 11204 + ], 11205 + "engines": { 11206 + "node": ">=12" 11207 + } 11208 + }, 11209 + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { 11210 + "version": "0.21.5", 11211 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 11212 + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 11213 + "cpu": [ 11214 + "x64" 11215 + ], 11216 + "license": "MIT", 11217 + "optional": true, 11218 + "os": [ 11219 + "netbsd" 11220 + ], 11221 + "engines": { 11222 + "node": ">=12" 11223 + } 11224 + }, 11225 + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { 11226 + "version": "0.21.5", 11227 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 11228 + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 11229 + "cpu": [ 11230 + "x64" 11231 + ], 11232 + "license": "MIT", 11233 + "optional": true, 11234 + "os": [ 11235 + "openbsd" 11236 + ], 11237 + "engines": { 11238 + "node": ">=12" 11239 + } 11240 + }, 11241 + "node_modules/vite/node_modules/@esbuild/sunos-x64": { 11242 + "version": "0.21.5", 11243 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 11244 + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 11245 + "cpu": [ 11246 + "x64" 11247 + ], 11248 + "license": "MIT", 11249 + "optional": true, 11250 + "os": [ 11251 + "sunos" 11252 + ], 11253 + "engines": { 11254 + "node": ">=12" 11255 + } 11256 + }, 11257 + "node_modules/vite/node_modules/@esbuild/win32-arm64": { 11258 + "version": "0.21.5", 11259 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 11260 + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 11261 + "cpu": [ 11262 + "arm64" 11263 + ], 11264 + "license": "MIT", 11265 + "optional": true, 11266 + "os": [ 11267 + "win32" 11268 + ], 11269 + "engines": { 11270 + "node": ">=12" 11271 + } 11272 + }, 11273 + "node_modules/vite/node_modules/@esbuild/win32-ia32": { 11274 + "version": "0.21.5", 11275 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 11276 + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 11277 + "cpu": [ 11278 + "ia32" 11279 + ], 11280 + "license": "MIT", 11281 + "optional": true, 11282 + "os": [ 11283 + "win32" 11284 + ], 11285 + "engines": { 11286 + "node": ">=12" 11287 + } 11288 + }, 11289 + "node_modules/vite/node_modules/@esbuild/win32-x64": { 11290 + "version": "0.21.5", 11291 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 11292 + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 11293 + "cpu": [ 11294 + "x64" 11295 + ], 11296 + "license": "MIT", 11297 + "optional": true, 11298 + "os": [ 11299 + "win32" 11300 + ], 11301 + "engines": { 11302 + "node": ">=12" 11303 + } 11304 + }, 11305 + "node_modules/vite/node_modules/esbuild": { 11306 + "version": "0.21.5", 11307 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 11308 + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 11309 + "hasInstallScript": true, 11310 + "license": "MIT", 11311 + "bin": { 11312 + "esbuild": "bin/esbuild" 11313 + }, 11314 + "engines": { 11315 + "node": ">=12" 11316 + }, 11317 + "optionalDependencies": { 11318 + "@esbuild/aix-ppc64": "0.21.5", 11319 + "@esbuild/android-arm": "0.21.5", 11320 + "@esbuild/android-arm64": "0.21.5", 11321 + "@esbuild/android-x64": "0.21.5", 11322 + "@esbuild/darwin-arm64": "0.21.5", 11323 + "@esbuild/darwin-x64": "0.21.5", 11324 + "@esbuild/freebsd-arm64": "0.21.5", 11325 + "@esbuild/freebsd-x64": "0.21.5", 11326 + "@esbuild/linux-arm": "0.21.5", 11327 + "@esbuild/linux-arm64": "0.21.5", 11328 + "@esbuild/linux-ia32": "0.21.5", 11329 + "@esbuild/linux-loong64": "0.21.5", 11330 + "@esbuild/linux-mips64el": "0.21.5", 11331 + "@esbuild/linux-ppc64": "0.21.5", 11332 + "@esbuild/linux-riscv64": "0.21.5", 11333 + "@esbuild/linux-s390x": "0.21.5", 11334 + "@esbuild/linux-x64": "0.21.5", 11335 + "@esbuild/netbsd-x64": "0.21.5", 11336 + "@esbuild/openbsd-x64": "0.21.5", 11337 + "@esbuild/sunos-x64": "0.21.5", 11338 + "@esbuild/win32-arm64": "0.21.5", 11339 + "@esbuild/win32-ia32": "0.21.5", 11340 + "@esbuild/win32-x64": "0.21.5" 11341 + } 11342 + }, 11343 + "node_modules/vscode-jsonrpc": { 11344 + "version": "6.0.0", 11345 + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", 11346 + "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", 11347 + "license": "MIT", 11348 + "engines": { 11349 + "node": ">=8.0.0 || >=10.0.0" 11350 + } 11351 + }, 11352 + "node_modules/vscode-languageclient": { 11353 + "version": "7.0.0", 11354 + "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", 11355 + "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", 11356 + "license": "MIT", 11357 + "dependencies": { 11358 + "minimatch": "^3.0.4", 11359 + "semver": "^7.3.4", 11360 + "vscode-languageserver-protocol": "3.16.0" 11361 + }, 11362 + "engines": { 11363 + "vscode": "^1.52.0" 11364 + } 11365 + }, 11366 + "node_modules/vscode-languageclient/node_modules/brace-expansion": { 11367 + "version": "1.1.11", 11368 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 11369 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 11370 + "license": "MIT", 11371 + "dependencies": { 11372 + "balanced-match": "^1.0.0", 11373 + "concat-map": "0.0.1" 11374 + } 11375 + }, 11376 + "node_modules/vscode-languageclient/node_modules/minimatch": { 11377 + "version": "3.1.2", 11378 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 11379 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 11380 + "license": "ISC", 11381 + "dependencies": { 11382 + "brace-expansion": "^1.1.7" 11383 + }, 11384 + "engines": { 11385 + "node": "*" 11386 + } 11387 + }, 11388 + "node_modules/vscode-languageserver": { 11389 + "version": "7.0.0", 11390 + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", 11391 + "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", 11392 + "license": "MIT", 11393 + "dependencies": { 11394 + "vscode-languageserver-protocol": "3.16.0" 11395 + }, 11396 + "bin": { 11397 + "installServerIntoExtension": "bin/installServerIntoExtension" 11398 + } 11399 + }, 11400 + "node_modules/vscode-languageserver-protocol": { 11401 + "version": "3.16.0", 11402 + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", 11403 + "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", 11404 + "license": "MIT", 11405 + "dependencies": { 11406 + "vscode-jsonrpc": "6.0.0", 11407 + "vscode-languageserver-types": "3.16.0" 11408 + } 11409 + }, 11410 + "node_modules/vscode-languageserver-textdocument": { 11411 + "version": "1.0.12", 11412 + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", 11413 + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", 11414 + "license": "MIT" 11415 + }, 11416 + "node_modules/vscode-languageserver-types": { 11417 + "version": "3.16.0", 11418 + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", 11419 + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", 11420 + "license": "MIT" 11421 + }, 11422 + "node_modules/vscode-uri": { 11423 + "version": "3.0.8", 11424 + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", 11425 + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", 11426 + "license": "MIT" 11427 + }, 11428 + "node_modules/vue": { 11429 + "version": "3.4.37", 11430 + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.37.tgz", 11431 + "integrity": "sha512-3vXvNfkKTBsSJ7JP+LyR7GBuwQuckbWvuwAid3xbqK9ppsKt/DUvfqgZ48fgOLEfpy1IacL5f8QhUVl77RaI7A==", 11432 + "license": "MIT", 11433 + "dependencies": { 11434 + "@vue/compiler-dom": "3.4.37", 11435 + "@vue/compiler-sfc": "3.4.37", 11436 + "@vue/runtime-dom": "3.4.37", 11437 + "@vue/server-renderer": "3.4.37", 11438 + "@vue/shared": "3.4.37" 11439 + }, 11440 + "peerDependencies": { 11441 + "typescript": "*" 11442 + }, 11443 + "peerDependenciesMeta": { 11444 + "typescript": { 11445 + "optional": true 11446 + } 11447 + } 11448 + }, 11449 + "node_modules/vue-bundle-renderer": { 11450 + "version": "2.1.0", 11451 + "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz", 11452 + "integrity": "sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==", 11453 + "license": "MIT", 11454 + "dependencies": { 11455 + "ufo": "^1.5.3" 11456 + } 11457 + }, 11458 + "node_modules/vue-devtools-stub": { 11459 + "version": "0.1.0", 11460 + "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", 11461 + "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==", 11462 + "license": "MIT" 11463 + }, 11464 + "node_modules/vue-router": { 11465 + "version": "4.4.3", 11466 + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.4.3.tgz", 11467 + "integrity": "sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==", 11468 + "license": "MIT", 11469 + "dependencies": { 11470 + "@vue/devtools-api": "^6.6.3" 11471 + }, 11472 + "funding": { 11473 + "url": "https://github.com/sponsors/posva" 11474 + }, 11475 + "peerDependencies": { 11476 + "vue": "^3.2.0" 11477 + } 11478 + }, 11479 + "node_modules/vue3-smooth-dnd": { 11480 + "version": "0.0.6", 11481 + "resolved": "https://registry.npmjs.org/vue3-smooth-dnd/-/vue3-smooth-dnd-0.0.6.tgz", 11482 + "integrity": "sha512-CH9ZZhEfE7qU1ef2rlfgBG+nZtQX8PnWlspB2HDDz1uVGU7fXM0Pr65DftBMz4X81S+edw2H+ZFG6Dyb5J81KA==", 11483 + "license": "MIT", 11484 + "dependencies": { 11485 + "smooth-dnd": "^0.12.1" 11486 + }, 11487 + "peerDependencies": { 11488 + "vue": "^3.0.11" 11489 + } 11490 + }, 11491 + "node_modules/webidl-conversions": { 11492 + "version": "3.0.1", 11493 + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 11494 + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 11495 + "license": "BSD-2-Clause" 11496 + }, 11497 + "node_modules/webpack-sources": { 11498 + "version": "3.2.3", 11499 + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", 11500 + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", 11501 + "license": "MIT", 11502 + "engines": { 11503 + "node": ">=10.13.0" 11504 + } 11505 + }, 11506 + "node_modules/webpack-virtual-modules": { 11507 + "version": "0.6.2", 11508 + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", 11509 + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", 11510 + "license": "MIT" 11511 + }, 11512 + "node_modules/whatwg-fetch": { 11513 + "version": "3.6.20", 11514 + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", 11515 + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", 11516 + "license": "MIT" 11517 + }, 11518 + "node_modules/whatwg-url": { 11519 + "version": "5.0.0", 11520 + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 11521 + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 11522 + "license": "MIT", 11523 + "dependencies": { 11524 + "tr46": "~0.0.3", 11525 + "webidl-conversions": "^3.0.0" 11526 + } 11527 + }, 11528 + "node_modules/which": { 11529 + "version": "3.0.1", 11530 + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", 11531 + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", 11532 + "license": "ISC", 11533 + "dependencies": { 11534 + "isexe": "^2.0.0" 11535 + }, 11536 + "bin": { 11537 + "node-which": "bin/which.js" 11538 + }, 11539 + "engines": { 11540 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 11541 + } 11542 + }, 11543 + "node_modules/wide-align": { 11544 + "version": "1.1.5", 11545 + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 11546 + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 11547 + "license": "ISC", 11548 + "dependencies": { 11549 + "string-width": "^1.0.2 || 2 || 3 || 4" 11550 + } 11551 + }, 11552 + "node_modules/wrap-ansi": { 11553 + "version": "7.0.0", 11554 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 11555 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 11556 + "license": "MIT", 11557 + "dependencies": { 11558 + "ansi-styles": "^4.0.0", 11559 + "string-width": "^4.1.0", 11560 + "strip-ansi": "^6.0.0" 11561 + }, 11562 + "engines": { 11563 + "node": ">=10" 11564 + }, 11565 + "funding": { 11566 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 11567 + } 11568 + }, 11569 + "node_modules/wrap-ansi-cjs": { 11570 + "name": "wrap-ansi", 11571 + "version": "7.0.0", 11572 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 11573 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 11574 + "license": "MIT", 11575 + "dependencies": { 11576 + "ansi-styles": "^4.0.0", 11577 + "string-width": "^4.1.0", 11578 + "strip-ansi": "^6.0.0" 11579 + }, 11580 + "engines": { 11581 + "node": ">=10" 11582 + }, 11583 + "funding": { 11584 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 11585 + } 11586 + }, 11587 + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 11588 + "version": "4.3.0", 11589 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 11590 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 11591 + "license": "MIT", 11592 + "dependencies": { 11593 + "color-convert": "^2.0.1" 11594 + }, 11595 + "engines": { 11596 + "node": ">=8" 11597 + }, 11598 + "funding": { 11599 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 11600 + } 11601 + }, 11602 + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { 11603 + "version": "2.0.1", 11604 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 11605 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 11606 + "license": "MIT", 11607 + "dependencies": { 11608 + "color-name": "~1.1.4" 11609 + }, 11610 + "engines": { 11611 + "node": ">=7.0.0" 11612 + } 11613 + }, 11614 + "node_modules/wrap-ansi-cjs/node_modules/color-name": { 11615 + "version": "1.1.4", 11616 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 11617 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 11618 + "license": "MIT" 11619 + }, 11620 + "node_modules/wrap-ansi/node_modules/ansi-styles": { 11621 + "version": "4.3.0", 11622 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 11623 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 11624 + "license": "MIT", 11625 + "dependencies": { 11626 + "color-convert": "^2.0.1" 11627 + }, 11628 + "engines": { 11629 + "node": ">=8" 11630 + }, 11631 + "funding": { 11632 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 11633 + } 11634 + }, 11635 + "node_modules/wrap-ansi/node_modules/color-convert": { 11636 + "version": "2.0.1", 11637 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 11638 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 11639 + "license": "MIT", 11640 + "dependencies": { 11641 + "color-name": "~1.1.4" 11642 + }, 11643 + "engines": { 11644 + "node": ">=7.0.0" 11645 + } 11646 + }, 11647 + "node_modules/wrap-ansi/node_modules/color-name": { 11648 + "version": "1.1.4", 11649 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 11650 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 11651 + "license": "MIT" 11652 + }, 11653 + "node_modules/wrappy": { 11654 + "version": "1.0.2", 11655 + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 11656 + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 11657 + "license": "ISC" 11658 + }, 11659 + "node_modules/ws": { 11660 + "version": "8.18.0", 11661 + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", 11662 + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", 11663 + "license": "MIT", 11664 + "engines": { 11665 + "node": ">=10.0.0" 11666 + }, 11667 + "peerDependencies": { 11668 + "bufferutil": "^4.0.1", 11669 + "utf-8-validate": ">=5.0.2" 11670 + }, 11671 + "peerDependenciesMeta": { 11672 + "bufferutil": { 11673 + "optional": true 11674 + }, 11675 + "utf-8-validate": { 11676 + "optional": true 11677 + } 11678 + } 11679 + }, 11680 + "node_modules/y18n": { 11681 + "version": "5.0.8", 11682 + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 11683 + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 11684 + "license": "ISC", 11685 + "engines": { 11686 + "node": ">=10" 11687 + } 11688 + }, 11689 + "node_modules/yallist": { 11690 + "version": "3.1.1", 11691 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 11692 + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 11693 + "license": "ISC" 11694 + }, 11695 + "node_modules/yaml": { 11696 + "version": "2.5.0", 11697 + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", 11698 + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", 11699 + "license": "ISC", 11700 + "bin": { 11701 + "yaml": "bin.mjs" 11702 + }, 11703 + "engines": { 11704 + "node": ">= 14" 11705 + } 11706 + }, 11707 + "node_modules/yargs": { 11708 + "version": "17.7.2", 11709 + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 11710 + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 11711 + "license": "MIT", 11712 + "dependencies": { 11713 + "cliui": "^8.0.1", 11714 + "escalade": "^3.1.1", 11715 + "get-caller-file": "^2.0.5", 11716 + "require-directory": "^2.1.1", 11717 + "string-width": "^4.2.3", 11718 + "y18n": "^5.0.5", 11719 + "yargs-parser": "^21.1.1" 11720 + }, 11721 + "engines": { 11722 + "node": ">=12" 11723 + } 11724 + }, 11725 + "node_modules/yargs-parser": { 11726 + "version": "21.1.1", 11727 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 11728 + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 11729 + "license": "ISC", 11730 + "engines": { 11731 + "node": ">=12" 11732 + } 11733 + }, 11734 + "node_modules/ylru": { 11735 + "version": "1.4.0", 11736 + "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.4.0.tgz", 11737 + "integrity": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==", 11738 + "license": "MIT", 11739 + "engines": { 11740 + "node": ">= 4.0.0" 11741 + } 11742 + }, 11743 + "node_modules/yocto-queue": { 11744 + "version": "0.1.0", 11745 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 11746 + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 11747 + "license": "MIT", 11748 + "engines": { 11749 + "node": ">=10" 11750 + }, 11751 + "funding": { 11752 + "url": "https://github.com/sponsors/sindresorhus" 11753 + } 11754 + }, 11755 + "node_modules/zhead": { 11756 + "version": "2.2.4", 11757 + "resolved": "https://registry.npmjs.org/zhead/-/zhead-2.2.4.tgz", 11758 + "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==", 11759 + "license": "MIT", 11760 + "funding": { 11761 + "url": "https://github.com/sponsors/harlan-zw" 11762 + } 11763 + }, 11764 + "node_modules/zip-stream": { 11765 + "version": "6.0.1", 11766 + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz", 11767 + "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==", 11768 + "license": "MIT", 11769 + "dependencies": { 11770 + "archiver-utils": "^5.0.0", 11771 + "compress-commons": "^6.0.2", 11772 + "readable-stream": "^4.0.0" 11773 + }, 11774 + "engines": { 11775 + "node": ">= 14" 11776 + } 11777 + } 11778 + } 11779 + }
+18
package.json
··· 1 + { 2 + "name": "nuxt-app", 3 + "private": true, 4 + "type": "module", 5 + "scripts": { 6 + "build": "nuxt build", 7 + "dev": "nuxt dev", 8 + "generate": "nuxt generate", 9 + "preview": "nuxt preview", 10 + "postinstall": "nuxt prepare" 11 + }, 12 + "dependencies": { 13 + "@nuxt/ui-pro": "^1.4.1", 14 + "nuxt": "^3.12.4", 15 + "nuxt-ollama": "^1.0.7", 16 + "vue": "latest" 17 + } 18 + }
public/favicon.ico

This is a binary file and will not be displayed.

+22
server/api/chat.post.ts
··· 1 + import {useRequestBody} from "nitropack/runtime/utils"; 2 + 3 + export default defineEventHandler(async (event) => { 4 + const b = await readBody(event); 5 + const ollama = useOllama(); 6 + const response = await ollama.chat({ 7 + model: 'llama3.1', 8 + messages: JSON.parse(b), 9 + stream: true 10 + }) 11 + 12 + const stream = new ReadableStream({ 13 + async pull(controller) { 14 + for await (const part of response) { 15 + controller.enqueue(part.message.content); 16 + } 17 + controller.close(); 18 + } 19 + }) 20 + 21 + return sendStream(event, stream); 22 + })
+3
server/tsconfig.json
··· 1 + { 2 + "extends": "../.nuxt/tsconfig.server.json" 3 + }
+4
tsconfig.json
··· 1 + { 2 + // https://nuxt.com/docs/guide/concepts/typescript 3 + "extends": "./.nuxt/tsconfig.json" 4 + }