[READ-ONLY] Mirror of https://github.com/danielroe/zero-vue. Vue bindings for Zero
sync vue zero
0

Configure Feed

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

test: add basic nuxt fixture + tests (#241)

author
Daniel Roe
committer
GitHub
date (May 26, 2026, 9:46 AM +0100) commit eec4bf84 parent be2836ae
+6407 -94
+7 -1
.gitignore
··· 1 1 dist 2 2 node_modules 3 3 coverage 4 + .nuxt 5 + .output 6 + .data 4 7 .vscode 5 8 .DS_Store 6 9 .eslintcache 10 + *.tsbuildinfo 7 11 *.log* 8 12 *.env* 9 13 10 - !playground/.env 14 + !test/fixtures/_shared/.env 15 + !test/fixtures/vue/.env 16 + !test/fixtures/nuxt/.env
+1 -1
README.md
··· 64 64 ``` 65 65 66 66 > [!TIP] 67 - > See [the playground](./playground) for a full working example based on [rocicorp/hello-zero](https://github.com/rocicorp/hello-zero), or check out [danielroe/hello-zero-nuxt](https://github.com/danielroe/hello-zero-nuxt) to see how to set things up with [Nuxt](https://nuxt.com/). 67 + > See [the Vue fixture](./test/fixtures/vue) or [the Nuxt fixture](./test/fixtures/nuxt) for full working examples based on [rocicorp/hello-zero](https://github.com/rocicorp/hello-zero). 68 68 69 69 ## 💻 Development 70 70
+1 -1
knip.json
··· 1 1 { 2 2 "$schema": "https://unpkg.com/knip@5/schema.json", 3 3 "ignoreWorkspaces": [ 4 - "playground" 4 + "test/fixtures/*" 5 5 ] 6 6 }
+2 -1
package.json
··· 26 26 "prepare": "simple-git-hooks", 27 27 "prepack": "pnpm build", 28 28 "prepublishOnly": "pnpm lint && pnpm test", 29 - "test": "pnpm test:unit && pnpm test:types", 29 + "test": "pnpm test:unit && pnpm test:types && pnpm test:e2e", 30 + "test:e2e": "pnpm -r --workspace-concurrency=1 test:e2e", 30 31 "test:unit": "vitest", 31 32 "test:types": "tsc --noEmit && pnpm -r test:types" 32 33 },
-3
playground/.env test/fixtures/_shared/.env
··· 10 10 # ZERO_QUERY_URL="http://localhost:3000/api/zero/query" 11 11 12 12 # ZERO_AUTH_SECRET="secretkey" 13 - # VITE_PUBLIC_AUTH_SECRET='secretkey' 14 13 15 14 ZERO_REPLICA_FILE="/tmp/zstart_replicas.db" 16 - 17 - # VITE_PUBLIC_ZERO_CACHE_URL='http://localhost:4848'
playground/README.md test/fixtures/nuxt/README.md
playground/docker/docker-compose.yml test/fixtures/_shared/docker/docker-compose.yml
playground/docker/seed.sql test/fixtures/_shared/docker/seed.sql
playground/docker/wait-for-pg.sh test/fixtures/_shared/docker/wait-for-pg.sh
playground/env.d.ts test/fixtures/vue/env.d.ts
playground/index.html test/fixtures/vue/index.html
-34
playground/package.json
··· 1 - { 2 - "name": "zero-vue-playground", 3 - "type": "module", 4 - "version": "0.0.0", 5 - "private": true, 6 - "scripts": { 7 - "build": "vite build", 8 - "preview": "vite preview", 9 - "dev:ui": "vite dev", 10 - "dev:zero-cache": "zero-cache-dev", 11 - "dev:db-up": "docker compose --env-file .env -f ./docker/docker-compose.yml up", 12 - "dev:db-down": "docker compose --env-file .env -f ./docker/docker-compose.yml down", 13 - "dev:clean": "source .env && docker volume rm -f docker_zstart_pgdata && rm -rf \"${ZERO_REPLICA_FILE}\"*", 14 - "test:types": "vue-tsc --build" 15 - }, 16 - "dependencies": { 17 - "@vueuse/integrations": "^14.3.0", 18 - "jose": "^6.2.3", 19 - "universal-cookie": "^8.1.2", 20 - "vue": "^3.5.34", 21 - "zero-vue": "link:", 22 - "zod": "4.4.3" 23 - }, 24 - "devDependencies": { 25 - "@tsconfig/node24": "24.0.4", 26 - "@types/js-cookie": "3.0.6", 27 - "@types/node": "24.11.0", 28 - "@vitejs/plugin-vue": "6.0.7", 29 - "@vue/tsconfig": "0.9.1", 30 - "typescript": "6.0.3", 31 - "vite": "8.0.14", 32 - "vue-tsc": "3.2.8" 33 - } 34 - }
+4 -4
playground/src/app.vue test/fixtures/vue/src/app.vue
··· 3 3 4 4 import { SignJWT } from 'jose' 5 5 import { computed, ref } from 'vue' 6 - import { useInterval } from '~/composables/use-interval' 7 - import { randomMessage } from '~/db/data/test-data' 8 - import { formatDate } from '~/utils/date' 9 - import { randInt } from '~/utils/rand' 6 + import { useInterval } from '#fx/composables/use-interval' 7 + import { randomMessage } from '#fx/db/data/test-data' 8 + import { formatDate } from '#fx/utils/date' 9 + import { randInt } from '#fx/utils/rand' 10 10 import { mutators, queries, useQuery, useZero } from './zero' 11 11 12 12 const cookies = useCookies()
playground/src/composables/use-interval.ts test/fixtures/_shared/composables/use-interval.ts
+2 -2
playground/src/db/data/test-data.ts test/fixtures/_shared/db/data/test-data.ts
··· 1 - import type { Medium, Message, User } from '~/db/schema' 2 - import { randBetween, randID, randInt } from '~/utils/rand' 1 + import type { Medium, Message, User } from '../schema' 2 + import { randBetween, randID, randInt } from '../../utils/rand' 3 3 4 4 const requests = [ 5 5 'Hey guys, is the zero package ready yet?',
playground/src/db/schema.ts test/fixtures/_shared/db/schema.ts
playground/src/main.css test/fixtures/vue/src/main.css
playground/src/main.ts test/fixtures/vue/src/main.ts
playground/src/utils/date.ts test/fixtures/_shared/utils/date.ts
playground/src/utils/rand.ts test/fixtures/_shared/utils/rand.ts
+1 -1
playground/src/zero.ts test/fixtures/vue/src/zero.ts
··· 10 10 import { createZeroComposables } from 'zero-vue' 11 11 import z from 'zod' 12 12 13 - import { schema, zql } from '~/db/schema' 13 + import { schema, zql } from '#fx/db/schema' 14 14 15 15 const cookies = useCookies() 16 16
+5 -1
playground/tsconfig.app.json test/fixtures/vue/tsconfig.app.json
··· 5 5 "paths": { 6 6 "~/*": [ 7 7 "./src/*" 8 + ], 9 + "#fx/*": [ 10 + "../_shared/*" 8 11 ] 9 12 } 10 13 }, 11 14 "include": [ 12 15 "env.d.ts", 13 16 "src/**/*", 14 - "src/**/*.vue" 17 + "src/**/*.vue", 18 + "../_shared/**/*" 15 19 ], 16 20 "exclude": [ 17 21 "src/**/__tests__/*"
playground/tsconfig.json test/fixtures/vue/tsconfig.json
playground/tsconfig.node.json test/fixtures/vue/tsconfig.node.json
+2 -1
playground/vite.config.ts test/fixtures/vue/vite.config.ts
··· 11 11 resolve: { 12 12 alias: { 13 13 '~': fileURLToPath(new URL('./src', import.meta.url)), 14 - 'zero-vue': fileURLToPath(new URL('../src/index.ts', import.meta.url).href), 14 + '#fx': fileURLToPath(new URL('../_shared', import.meta.url)), 15 + 'zero-vue': fileURLToPath(new URL('../../../src/index.ts', import.meta.url).href), 15 16 }, 16 17 }, 17 18 })
+5627 -43
pnpm-lock.yaml
··· 47 47 version: 3.6.1(typescript@6.0.3)(vue-tsc@3.2.8(typescript@6.0.3))(vue@3.5.34(typescript@6.0.3)) 48 48 vitest: 49 49 specifier: latest 50 - version: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0)) 50 + version: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 51 51 vue: 52 52 specifier: 3.5.34 53 53 version: 3.5.34(typescript@6.0.3) ··· 55 55 specifier: 4.4.3 56 56 version: 4.4.3 57 57 58 - playground: 58 + test/fixtures/nuxt: 59 + dependencies: 60 + jose: 61 + specifier: ^6.2.3 62 + version: 6.2.3 63 + nuxt: 64 + specifier: ^4.2.1 65 + version: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0) 66 + vue: 67 + specifier: ^3.5.34 68 + version: 3.5.34(typescript@6.0.3) 69 + zero-vue: 70 + specifier: link:../../.. 71 + version: link:../../.. 72 + zod: 73 + specifier: 4.4.3 74 + version: 4.4.3 75 + devDependencies: 76 + '@nuxt/test-utils': 77 + specifier: ^4.0.3 78 + version: 4.0.3(crossws@0.4.5(srvx@0.11.16))(happy-dom@20.9.0)(magicast@0.5.2)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vitest@4.1.7) 79 + '@types/node': 80 + specifier: 24.11.0 81 + version: 24.11.0 82 + happy-dom: 83 + specifier: ^20.0.0 84 + version: 20.9.0 85 + typescript: 86 + specifier: 6.0.3 87 + version: 6.0.3 88 + vitest: 89 + specifier: ^4.1.7 90 + version: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 91 + vue-tsc: 92 + specifier: 3.2.8 93 + version: 3.2.8(typescript@6.0.3) 94 + 95 + test/fixtures/vue: 59 96 dependencies: 60 97 '@vueuse/integrations': 61 98 specifier: ^14.3.0 62 - version: 14.3.0(change-case@5.4.4)(universal-cookie@8.1.2)(vue@3.5.34(typescript@6.0.3)) 99 + version: 14.3.0(change-case@5.4.4)(fuse.js@7.3.0)(universal-cookie@8.1.2)(vue@3.5.34(typescript@6.0.3)) 63 100 jose: 64 101 specifier: ^6.2.3 65 102 version: 6.2.3 ··· 70 107 specifier: ^3.5.34 71 108 version: 3.5.34(typescript@6.0.3) 72 109 zero-vue: 73 - specifier: link:.. 74 - version: link:.. 110 + specifier: link:../../.. 111 + version: link:../../.. 75 112 zod: 76 113 specifier: 4.4.3 77 114 version: 4.4.3 ··· 87 124 version: 24.11.0 88 125 '@vitejs/plugin-vue': 89 126 specifier: 6.0.7 90 - version: 6.0.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 127 + version: 6.0.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 91 128 '@vue/tsconfig': 92 129 specifier: 0.9.1 93 130 version: 0.9.1(typescript@6.0.3)(vue@3.5.34(typescript@6.0.3)) ··· 96 133 version: 6.0.3 97 134 vite: 98 135 specifier: 8.0.14 99 - version: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0) 136 + version: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 100 137 vue-tsc: 101 138 specifier: 3.2.8 102 139 version: 3.2.8(typescript@6.0.3) ··· 171 208 resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==} 172 209 engines: {node: '>=6.9.0'} 173 210 211 + '@babel/code-frame@7.29.0': 212 + resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} 213 + engines: {node: '>=6.9.0'} 214 + 215 + '@babel/compat-data@7.29.3': 216 + resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==} 217 + engines: {node: '>=6.9.0'} 218 + 219 + '@babel/core@7.29.0': 220 + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} 221 + engines: {node: '>=6.9.0'} 222 + 223 + '@babel/generator@7.29.1': 224 + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} 225 + engines: {node: '>=6.9.0'} 226 + 227 + '@babel/generator@8.0.0-rc.5': 228 + resolution: {integrity: sha512-nFZPWz3FHIS7y6rMIVoa/WBwjdutfIaRJIBQjzn+t3RnecZoRNlGmGcyR2wb0T/IgSd50Kz/6dG8/LvMCRunjg==} 229 + engines: {node: ^22.18.0 || >=24.11.0} 230 + 231 + '@babel/helper-annotate-as-pure@7.27.3': 232 + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} 233 + engines: {node: '>=6.9.0'} 234 + 235 + '@babel/helper-compilation-targets@7.28.6': 236 + resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} 237 + engines: {node: '>=6.9.0'} 238 + 239 + '@babel/helper-create-class-features-plugin@7.29.3': 240 + resolution: {integrity: sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==} 241 + engines: {node: '>=6.9.0'} 242 + peerDependencies: 243 + '@babel/core': ^7.0.0 244 + 245 + '@babel/helper-globals@7.28.0': 246 + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 247 + engines: {node: '>=6.9.0'} 248 + 249 + '@babel/helper-member-expression-to-functions@7.28.5': 250 + resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} 251 + engines: {node: '>=6.9.0'} 252 + 253 + '@babel/helper-module-imports@7.28.6': 254 + resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==} 255 + engines: {node: '>=6.9.0'} 256 + 257 + '@babel/helper-module-transforms@7.28.6': 258 + resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==} 259 + engines: {node: '>=6.9.0'} 260 + peerDependencies: 261 + '@babel/core': ^7.0.0 262 + 263 + '@babel/helper-optimise-call-expression@7.27.1': 264 + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} 265 + engines: {node: '>=6.9.0'} 266 + 267 + '@babel/helper-plugin-utils@7.28.6': 268 + resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==} 269 + engines: {node: '>=6.9.0'} 270 + 271 + '@babel/helper-replace-supers@7.28.6': 272 + resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==} 273 + engines: {node: '>=6.9.0'} 274 + peerDependencies: 275 + '@babel/core': ^7.0.0 276 + 277 + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 278 + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} 279 + engines: {node: '>=6.9.0'} 280 + 174 281 '@babel/helper-string-parser@7.27.1': 175 282 resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 176 283 engines: {node: '>=6.9.0'} 177 284 285 + '@babel/helper-string-parser@8.0.0-rc.5': 286 + resolution: {integrity: sha512-sN7R8rBvDurfaziNfDEIjIntlazmlkCDGO4SNl2RJ3wRCn+QxspLV7hzYAE8WWVd2joVuT8sUxeePdLp2idI1A==} 287 + engines: {node: ^22.18.0 || >=24.11.0} 288 + 178 289 '@babel/helper-validator-identifier@7.28.5': 179 290 resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} 180 291 engines: {node: '>=6.9.0'} 181 292 293 + '@babel/helper-validator-identifier@8.0.0-rc.5': 294 + resolution: {integrity: sha512-ehJDxHvtbZ85RtX/L2fi0h9AGsBNqB5Euv1EB8RMAvGYvD+2X+QbpzzOpbklnNXO+WSZJNOaetw2BBj27xsWVg==} 295 + engines: {node: ^22.18.0 || >=24.11.0} 296 + 297 + '@babel/helper-validator-option@7.27.1': 298 + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 299 + engines: {node: '>=6.9.0'} 300 + 301 + '@babel/helpers@7.29.2': 302 + resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==} 303 + engines: {node: '>=6.9.0'} 304 + 182 305 '@babel/parser@7.29.2': 183 306 resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} 184 307 engines: {node: '>=6.0.0'} ··· 189 312 engines: {node: '>=6.0.0'} 190 313 hasBin: true 191 314 315 + '@babel/parser@8.0.0-rc.5': 316 + resolution: {integrity: sha512-/Mfg83rK3+jsRbl4Vbd0jqxc6M1A1/WNFtgrowRM1unEsD3XcNnrBdMM0JWakd0/RN9lseQKwPduW1TiEwKOlQ==} 317 + engines: {node: ^22.18.0 || >=24.11.0} 318 + hasBin: true 319 + 320 + '@babel/plugin-syntax-jsx@7.28.6': 321 + resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==} 322 + engines: {node: '>=6.9.0'} 323 + peerDependencies: 324 + '@babel/core': ^7.0.0-0 325 + 326 + '@babel/plugin-syntax-typescript@7.28.6': 327 + resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==} 328 + engines: {node: '>=6.9.0'} 329 + peerDependencies: 330 + '@babel/core': ^7.0.0-0 331 + 332 + '@babel/plugin-transform-typescript@7.28.6': 333 + resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==} 334 + engines: {node: '>=6.9.0'} 335 + peerDependencies: 336 + '@babel/core': ^7.0.0-0 337 + 338 + '@babel/template@7.28.6': 339 + resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} 340 + engines: {node: '>=6.9.0'} 341 + 342 + '@babel/traverse@7.29.0': 343 + resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==} 344 + engines: {node: '>=6.9.0'} 345 + 192 346 '@babel/types@7.29.0': 193 347 resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} 194 348 engines: {node: '>=6.9.0'} 349 + 350 + '@babel/types@8.0.0-rc.5': 351 + resolution: {integrity: sha512-JeSVu/m8x/zpp4CLjYHVNXuhEyOkhPXuxM8YOXjh6L4LlvQNKuUNOTo5KdBuKAcTDHw8DquToTaEkhsBqPXOaA==} 352 + engines: {node: ^22.18.0 || >=24.11.0} 195 353 196 354 '@badrap/valita@0.3.11': 197 355 resolution: {integrity: sha512-oak0W8bycFjnrLeVCVvZqkOWTGh74wCPKUxGLJyhRukRs+V/hQdfZp1eDcQE4Gf3UrtJWfR/Ou4Xe0DZqJZ2FA==} ··· 201 359 resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} 202 360 engines: {node: '>=18'} 203 361 362 + '@bomb.sh/tab@0.0.15': 363 + resolution: {integrity: sha512-Y90ub44TAvbdO9P8mcD/XPyQjFhiR5xmd4Fk7JErmWmEWEUimNnjWiBrVZ16Tj3GA1rLZ+uvCN2V/pzLawv31g==} 364 + hasBin: true 365 + peerDependencies: 366 + cac: ^6.7.14 367 + citty: ^0.1.6 || ^0.2.0 368 + commander: ^13.1.0 369 + peerDependenciesMeta: 370 + cac: 371 + optional: true 372 + citty: 373 + optional: true 374 + commander: 375 + optional: true 376 + 377 + '@clack/core@1.2.0': 378 + resolution: {integrity: sha512-qfxof/3T3t9DPU/Rj3OmcFyZInceqj/NVtO9rwIuJqCUgh32gwPjpFQQp/ben07qKlhpwq7GzfWpST4qdJ5Drg==} 379 + 204 380 '@clack/core@1.3.1': 205 381 resolution: {integrity: sha512-fT1qHVGAag4IEkrupZ6lRRbNCs1vS9P01KB/sG8zKgvUztbYtFBtQpjSITNwooDZ83tpsPzP0mRNs1/KVszCRA==} 206 382 engines: {node: '>= 20.12.0'} 207 383 384 + '@clack/prompts@1.2.0': 385 + resolution: {integrity: sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w==} 386 + 208 387 '@clack/prompts@1.4.0': 209 388 resolution: {integrity: sha512-S0My7XPGIgpRWMDG8uRqalbgT+a6FmCUdOW+HaIOVVpUPHOb7RrpvjTjiODadKp06fsrVDJZlIzc6yCTp4AnxA==} 210 389 engines: {node: '>= 20.12.0'} 390 + 391 + '@cloudflare/kv-asset-handler@0.4.2': 392 + resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==} 393 + engines: {node: '>=18.0.0'} 394 + 395 + '@colordx/core@5.4.3': 396 + resolution: {integrity: sha512-kIxYSfA5T8HXjav55UaaH/o/cKivF6jCCGIb8eqtcsfI46wsvlSiT8jMDyrl779qLec3c2c2oHBZo4oAhvbjrQ==} 211 397 212 398 '@databases/escape-identifier@1.0.3': 213 399 resolution: {integrity: sha512-Su36iSVzaHxpVdISVMViUX/32sLvzxVgjZpYhzhotxZUuLo11GVWsiHwqkvUZijTLUxcDmUqEwGJO3O/soLuZA==} ··· 225 411 '@drdgvhbh/postgres-error-codes@0.0.6': 226 412 resolution: {integrity: sha512-tAz0Xp+qhq90x0r/3VW96iRdHFw72cYQqXa65u0eFVhSMC27bc2gZ8Ky5WXEmshrl/bCe7QTYBNEF0U5zeSQjw==} 227 413 414 + '@dxup/nuxt@0.4.1': 415 + resolution: {integrity: sha512-gtYffW6OfWNvoLW+XD3Mx/K8uUq08PMGLYJoDxc92EzZAWqR0FhcR5iaLm5r/OxyGTKz+P5f5Y7Aoir9+SjYaw==} 416 + peerDependencies: 417 + typescript: '*' 418 + peerDependenciesMeta: 419 + typescript: 420 + optional: true 421 + 422 + '@dxup/unimport@0.1.2': 423 + resolution: {integrity: sha512-/B8YJGPzaYq1NbsQmwgP8EZqg40NpTw4ZB3suuI0TplbxKHeK94jeaawLmVhCv+YwUnOpiWEz9U6SeThku/8JQ==} 424 + 228 425 '@e18e/eslint-plugin@0.4.1': 229 426 resolution: {integrity: sha512-Re00N8ad1HsNrzpuIX7Bhdr8RSaFWp6VgwJUEJF+47+D1CMcXoS7VNRkIG23e46pddhgxWU0cWk4wYiQIuMHqQ==} 230 427 peerDependencies: ··· 269 466 cpu: [ppc64] 270 467 os: [aix] 271 468 469 + '@esbuild/aix-ppc64@0.27.7': 470 + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} 471 + engines: {node: '>=18'} 472 + cpu: [ppc64] 473 + os: [aix] 474 + 272 475 '@esbuild/aix-ppc64@0.28.0': 273 476 resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==} 274 477 engines: {node: '>=18'} ··· 277 480 278 481 '@esbuild/android-arm64@0.25.12': 279 482 resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} 483 + engines: {node: '>=18'} 484 + cpu: [arm64] 485 + os: [android] 486 + 487 + '@esbuild/android-arm64@0.27.7': 488 + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} 280 489 engines: {node: '>=18'} 281 490 cpu: [arm64] 282 491 os: [android] ··· 293 502 cpu: [arm] 294 503 os: [android] 295 504 505 + '@esbuild/android-arm@0.27.7': 506 + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} 507 + engines: {node: '>=18'} 508 + cpu: [arm] 509 + os: [android] 510 + 296 511 '@esbuild/android-arm@0.28.0': 297 512 resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==} 298 513 engines: {node: '>=18'} ··· 305 520 cpu: [x64] 306 521 os: [android] 307 522 523 + '@esbuild/android-x64@0.27.7': 524 + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} 525 + engines: {node: '>=18'} 526 + cpu: [x64] 527 + os: [android] 528 + 308 529 '@esbuild/android-x64@0.28.0': 309 530 resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==} 310 531 engines: {node: '>=18'} ··· 317 538 cpu: [arm64] 318 539 os: [darwin] 319 540 541 + '@esbuild/darwin-arm64@0.27.7': 542 + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} 543 + engines: {node: '>=18'} 544 + cpu: [arm64] 545 + os: [darwin] 546 + 320 547 '@esbuild/darwin-arm64@0.28.0': 321 548 resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==} 322 549 engines: {node: '>=18'} ··· 329 556 cpu: [x64] 330 557 os: [darwin] 331 558 559 + '@esbuild/darwin-x64@0.27.7': 560 + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} 561 + engines: {node: '>=18'} 562 + cpu: [x64] 563 + os: [darwin] 564 + 332 565 '@esbuild/darwin-x64@0.28.0': 333 566 resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==} 334 567 engines: {node: '>=18'} ··· 341 574 cpu: [arm64] 342 575 os: [freebsd] 343 576 577 + '@esbuild/freebsd-arm64@0.27.7': 578 + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} 579 + engines: {node: '>=18'} 580 + cpu: [arm64] 581 + os: [freebsd] 582 + 344 583 '@esbuild/freebsd-arm64@0.28.0': 345 584 resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==} 346 585 engines: {node: '>=18'} ··· 353 592 cpu: [x64] 354 593 os: [freebsd] 355 594 595 + '@esbuild/freebsd-x64@0.27.7': 596 + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} 597 + engines: {node: '>=18'} 598 + cpu: [x64] 599 + os: [freebsd] 600 + 356 601 '@esbuild/freebsd-x64@0.28.0': 357 602 resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==} 358 603 engines: {node: '>=18'} ··· 365 610 cpu: [arm64] 366 611 os: [linux] 367 612 613 + '@esbuild/linux-arm64@0.27.7': 614 + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} 615 + engines: {node: '>=18'} 616 + cpu: [arm64] 617 + os: [linux] 618 + 368 619 '@esbuild/linux-arm64@0.28.0': 369 620 resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==} 370 621 engines: {node: '>=18'} ··· 377 628 cpu: [arm] 378 629 os: [linux] 379 630 631 + '@esbuild/linux-arm@0.27.7': 632 + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} 633 + engines: {node: '>=18'} 634 + cpu: [arm] 635 + os: [linux] 636 + 380 637 '@esbuild/linux-arm@0.28.0': 381 638 resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==} 382 639 engines: {node: '>=18'} ··· 389 646 cpu: [ia32] 390 647 os: [linux] 391 648 649 + '@esbuild/linux-ia32@0.27.7': 650 + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} 651 + engines: {node: '>=18'} 652 + cpu: [ia32] 653 + os: [linux] 654 + 392 655 '@esbuild/linux-ia32@0.28.0': 393 656 resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==} 394 657 engines: {node: '>=18'} ··· 401 664 cpu: [loong64] 402 665 os: [linux] 403 666 667 + '@esbuild/linux-loong64@0.27.7': 668 + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} 669 + engines: {node: '>=18'} 670 + cpu: [loong64] 671 + os: [linux] 672 + 404 673 '@esbuild/linux-loong64@0.28.0': 405 674 resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==} 406 675 engines: {node: '>=18'} ··· 409 678 410 679 '@esbuild/linux-mips64el@0.25.12': 411 680 resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} 681 + engines: {node: '>=18'} 682 + cpu: [mips64el] 683 + os: [linux] 684 + 685 + '@esbuild/linux-mips64el@0.27.7': 686 + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} 412 687 engines: {node: '>=18'} 413 688 cpu: [mips64el] 414 689 os: [linux] ··· 425 700 cpu: [ppc64] 426 701 os: [linux] 427 702 703 + '@esbuild/linux-ppc64@0.27.7': 704 + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} 705 + engines: {node: '>=18'} 706 + cpu: [ppc64] 707 + os: [linux] 708 + 428 709 '@esbuild/linux-ppc64@0.28.0': 429 710 resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==} 430 711 engines: {node: '>=18'} ··· 437 718 cpu: [riscv64] 438 719 os: [linux] 439 720 721 + '@esbuild/linux-riscv64@0.27.7': 722 + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} 723 + engines: {node: '>=18'} 724 + cpu: [riscv64] 725 + os: [linux] 726 + 440 727 '@esbuild/linux-riscv64@0.28.0': 441 728 resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==} 442 729 engines: {node: '>=18'} ··· 449 736 cpu: [s390x] 450 737 os: [linux] 451 738 739 + '@esbuild/linux-s390x@0.27.7': 740 + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} 741 + engines: {node: '>=18'} 742 + cpu: [s390x] 743 + os: [linux] 744 + 452 745 '@esbuild/linux-s390x@0.28.0': 453 746 resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==} 454 747 engines: {node: '>=18'} ··· 461 754 cpu: [x64] 462 755 os: [linux] 463 756 757 + '@esbuild/linux-x64@0.27.7': 758 + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} 759 + engines: {node: '>=18'} 760 + cpu: [x64] 761 + os: [linux] 762 + 464 763 '@esbuild/linux-x64@0.28.0': 465 764 resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==} 466 765 engines: {node: '>=18'} ··· 473 772 cpu: [arm64] 474 773 os: [netbsd] 475 774 775 + '@esbuild/netbsd-arm64@0.27.7': 776 + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} 777 + engines: {node: '>=18'} 778 + cpu: [arm64] 779 + os: [netbsd] 780 + 476 781 '@esbuild/netbsd-arm64@0.28.0': 477 782 resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==} 478 783 engines: {node: '>=18'} ··· 485 790 cpu: [x64] 486 791 os: [netbsd] 487 792 793 + '@esbuild/netbsd-x64@0.27.7': 794 + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} 795 + engines: {node: '>=18'} 796 + cpu: [x64] 797 + os: [netbsd] 798 + 488 799 '@esbuild/netbsd-x64@0.28.0': 489 800 resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==} 490 801 engines: {node: '>=18'} ··· 497 808 cpu: [arm64] 498 809 os: [openbsd] 499 810 811 + '@esbuild/openbsd-arm64@0.27.7': 812 + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} 813 + engines: {node: '>=18'} 814 + cpu: [arm64] 815 + os: [openbsd] 816 + 500 817 '@esbuild/openbsd-arm64@0.28.0': 501 818 resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==} 502 819 engines: {node: '>=18'} ··· 509 826 cpu: [x64] 510 827 os: [openbsd] 511 828 829 + '@esbuild/openbsd-x64@0.27.7': 830 + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} 831 + engines: {node: '>=18'} 832 + cpu: [x64] 833 + os: [openbsd] 834 + 512 835 '@esbuild/openbsd-x64@0.28.0': 513 836 resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==} 514 837 engines: {node: '>=18'} ··· 521 844 cpu: [arm64] 522 845 os: [openharmony] 523 846 847 + '@esbuild/openharmony-arm64@0.27.7': 848 + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} 849 + engines: {node: '>=18'} 850 + cpu: [arm64] 851 + os: [openharmony] 852 + 524 853 '@esbuild/openharmony-arm64@0.28.0': 525 854 resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==} 526 855 engines: {node: '>=18'} ··· 533 862 cpu: [x64] 534 863 os: [sunos] 535 864 865 + '@esbuild/sunos-x64@0.27.7': 866 + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} 867 + engines: {node: '>=18'} 868 + cpu: [x64] 869 + os: [sunos] 870 + 536 871 '@esbuild/sunos-x64@0.28.0': 537 872 resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==} 538 873 engines: {node: '>=18'} ··· 541 876 542 877 '@esbuild/win32-arm64@0.25.12': 543 878 resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} 879 + engines: {node: '>=18'} 880 + cpu: [arm64] 881 + os: [win32] 882 + 883 + '@esbuild/win32-arm64@0.27.7': 884 + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} 544 885 engines: {node: '>=18'} 545 886 cpu: [arm64] 546 887 os: [win32] ··· 557 898 cpu: [ia32] 558 899 os: [win32] 559 900 901 + '@esbuild/win32-ia32@0.27.7': 902 + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} 903 + engines: {node: '>=18'} 904 + cpu: [ia32] 905 + os: [win32] 906 + 560 907 '@esbuild/win32-ia32@0.28.0': 561 908 resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==} 562 909 engines: {node: '>=18'} ··· 565 912 566 913 '@esbuild/win32-x64@0.25.12': 567 914 resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} 915 + engines: {node: '>=18'} 916 + cpu: [x64] 917 + os: [win32] 918 + 919 + '@esbuild/win32-x64@0.27.7': 920 + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} 568 921 engines: {node: '>=18'} 569 922 cpu: [x64] 570 923 os: [win32] ··· 689 1042 resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 690 1043 engines: {node: '>=18.18'} 691 1044 1045 + '@ioredis/commands@1.5.1': 1046 + resolution: {integrity: sha512-JH8ZL/ywcJyR9MmJ5BNqZllXNZQqQbnVZOqpPQqE1vHiFgAw4NHbvE0FOduNU8IX9babitBT46571OnPTT0Zcw==} 1047 + 692 1048 '@isaacs/cliui@8.0.2': 693 1049 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 694 1050 engines: {node: '>=12'} 695 1051 1052 + '@isaacs/fs-minipass@4.0.1': 1053 + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 1054 + engines: {node: '>=18.0.0'} 1055 + 1056 + '@jridgewell/gen-mapping@0.3.13': 1057 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 1058 + 1059 + '@jridgewell/remapping@2.3.5': 1060 + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 1061 + 696 1062 '@jridgewell/resolve-uri@3.1.2': 697 1063 resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 698 1064 engines: {node: '>=6.0.0'} 699 1065 1066 + '@jridgewell/source-map@0.3.11': 1067 + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} 1068 + 700 1069 '@jridgewell/sourcemap-codec@1.5.5': 701 1070 resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 702 1071 ··· 706 1075 '@js-sdsl/ordered-map@4.4.2': 707 1076 resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==} 708 1077 1078 + '@kwsites/file-exists@1.1.1': 1079 + resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} 1080 + 1081 + '@kwsites/promise-deferred@1.1.1': 1082 + resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} 1083 + 1084 + '@mapbox/node-pre-gyp@2.0.3': 1085 + resolution: {integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg==} 1086 + engines: {node: '>=18'} 1087 + hasBin: true 1088 + 709 1089 '@napi-rs/wasm-runtime@1.1.4': 710 1090 resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==} 711 1091 peerDependencies: ··· 724 1104 resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} 725 1105 engines: {node: ^14.21.3 || >=16} 726 1106 1107 + '@nodelib/fs.scandir@2.1.5': 1108 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1109 + engines: {node: '>= 8'} 1110 + 1111 + '@nodelib/fs.stat@2.0.5': 1112 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1113 + engines: {node: '>= 8'} 1114 + 1115 + '@nodelib/fs.walk@1.2.8': 1116 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1117 + engines: {node: '>= 8'} 1118 + 727 1119 '@npmcli/map-workspaces@3.0.6': 728 1120 resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==} 729 1121 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ··· 732 1124 resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==} 733 1125 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 734 1126 1127 + '@nuxt/cli@3.35.2': 1128 + resolution: {integrity: sha512-sCxNnFuYamqippdj+Cj4Nue55yaUvasaneyf2mnowK5/F1TKln/WVqTH18McxQ4baLlIlVapIFovKjJx1L8XMQ==} 1129 + engines: {node: ^16.14.0 || >=18.0.0} 1130 + hasBin: true 1131 + peerDependencies: 1132 + '@nuxt/schema': ^4.4.5 1133 + peerDependenciesMeta: 1134 + '@nuxt/schema': 1135 + optional: true 1136 + 1137 + '@nuxt/devalue@2.0.2': 1138 + resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==} 1139 + 1140 + '@nuxt/devtools-kit@2.7.0': 1141 + resolution: {integrity: sha512-MIJdah6CF6YOW2GhfKnb8Sivu6HpcQheqdjOlZqShBr+1DyjtKQbAKSCAyKPaoIzZP4QOo2SmTFV6aN8jBeEIQ==} 1142 + peerDependencies: 1143 + vite: '>=6.0' 1144 + 1145 + '@nuxt/devtools-kit@3.2.4': 1146 + resolution: {integrity: sha512-Yxy2Xgmq5hf3dQy983V0xh0OJV2mYwRZz9eVIGc3EaribdFGPDNGMMbYqX9qCty3Pbxn/bCF3J0UyPaNlHVayQ==} 1147 + peerDependencies: 1148 + vite: '>=6.0' 1149 + 1150 + '@nuxt/devtools-wizard@3.2.4': 1151 + resolution: {integrity: sha512-5tu2+Quu9XTxwtpzM8CUN0UKn/bzZIfJcoGd+at5Yy1RiUQJ4E52tRK0idW1rMSUDkbkvX3dSnu8Tpj7SAtWdQ==} 1152 + hasBin: true 1153 + 1154 + '@nuxt/devtools@3.2.4': 1155 + resolution: {integrity: sha512-VPbFy7hlPzWpEZk4BsuVpNuHq1ZYGV9xezjb7/NGuePuNLqeNn74YZugU+PCtva7OwKhEeTXmMK0Mqo/6+nwNA==} 1156 + hasBin: true 1157 + peerDependencies: 1158 + '@vitejs/devtools': '*' 1159 + vite: '>=6.0' 1160 + peerDependenciesMeta: 1161 + '@vitejs/devtools': 1162 + optional: true 1163 + 1164 + '@nuxt/kit@3.21.6': 1165 + resolution: {integrity: sha512-5VOwxUcoM/z6w4c75hQrikHpY+TzjTLZQ+QnuO7KajyGx0IJBLVy1lw25oy79leF+GgyjJJO1cHfUfWeuEDCzA==} 1166 + engines: {node: '>=18.12.0'} 1167 + 1168 + '@nuxt/kit@4.4.6': 1169 + resolution: {integrity: sha512-AzsqBJeG7b3whIciyzkz4nBossEotM314KzKAptc8kH07ORBIR8Qh3QYKepo2YZwtxiDP2Y9aqzAztwpSEDHtw==} 1170 + engines: {node: '>=18.12.0'} 1171 + 1172 + '@nuxt/nitro-server@4.4.6': 1173 + resolution: {integrity: sha512-3OgAWW8cK+0BgEWiGYv9wP/vfQcIWTs+YNmZZAf1f89py8KnHgHp2aFQjZ/zTXWKTHlkGPl9NntQQkMoF3j1fA==} 1174 + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} 1175 + peerDependencies: 1176 + '@babel/plugin-proposal-decorators': ^7.25.0 1177 + '@babel/plugin-syntax-typescript': ^7.25.0 1178 + '@rollup/plugin-babel': ^6.0.0 || ^7.0.0 1179 + nuxt: ^4.4.6 1180 + peerDependenciesMeta: 1181 + '@babel/plugin-proposal-decorators': 1182 + optional: true 1183 + '@babel/plugin-syntax-typescript': 1184 + optional: true 1185 + '@rollup/plugin-babel': 1186 + optional: true 1187 + 1188 + '@nuxt/schema@4.4.6': 1189 + resolution: {integrity: sha512-7FDMuD+skbFMgfF2ORYKEAKEuEFbu2oS60dln5uVtn94c8DHWCseJSrT3FUHzVUlVwyhztPU6stzB44dEoWAzw==} 1190 + engines: {node: ^14.18.0 || >=16.10.0} 1191 + 1192 + '@nuxt/telemetry@2.8.0': 1193 + resolution: {integrity: sha512-zAwXY24KYvpLTmiV+osagd2EHkfs5IF+7oDZYTQoit5r0kPlwaCNlzHp5I/wUAWT4LBw6lG8gZ6bWidAdv/erQ==} 1194 + engines: {node: '>=18.12.0'} 1195 + hasBin: true 1196 + peerDependencies: 1197 + '@nuxt/kit': '>=3.0.0' 1198 + 1199 + '@nuxt/test-utils@4.0.3': 1200 + resolution: {integrity: sha512-HwF3B+GIwzWeIioskhHIjq+TQttP7+g0GUO39hpivGWFZzYXD3lIspzfmliJkgwwA3m5Xl2Z8XXqX1zAolKX6w==} 1201 + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} 1202 + peerDependencies: 1203 + '@cucumber/cucumber': '>=11.0.0' 1204 + '@jest/globals': '>=30.0.0' 1205 + '@playwright/test': ^1.43.1 1206 + '@testing-library/vue': ^8.0.1 1207 + '@vitest/ui': '*' 1208 + '@vue/test-utils': ^2.4.2 1209 + happy-dom: '>=20.0.11' 1210 + jsdom: '>=27.4.0' 1211 + playwright-core: ^1.43.1 1212 + vitest: ^4.0.2 1213 + peerDependenciesMeta: 1214 + '@cucumber/cucumber': 1215 + optional: true 1216 + '@jest/globals': 1217 + optional: true 1218 + '@playwright/test': 1219 + optional: true 1220 + '@testing-library/vue': 1221 + optional: true 1222 + '@vitest/ui': 1223 + optional: true 1224 + '@vue/test-utils': 1225 + optional: true 1226 + happy-dom: 1227 + optional: true 1228 + jsdom: 1229 + optional: true 1230 + playwright-core: 1231 + optional: true 1232 + vitest: 1233 + optional: true 1234 + 1235 + '@nuxt/vite-builder@4.4.6': 1236 + resolution: {integrity: sha512-q/JDHLy/tBJodyqu75GBrFWcOkkj9alGH8Qh/Wpir/xD6/MAMvnQNOHewC3KH40jMHxdETSglEmFaAkEIHzmLQ==} 1237 + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} 1238 + peerDependencies: 1239 + '@babel/plugin-proposal-decorators': ^7.25.0 1240 + '@babel/plugin-syntax-jsx': ^7.25.0 1241 + nuxt: 4.4.6 1242 + rolldown: ^1.0.0-beta.38 1243 + rollup-plugin-visualizer: ^6.0.0 || ^7.0.1 1244 + vue: ^3.3.4 1245 + peerDependenciesMeta: 1246 + '@babel/plugin-proposal-decorators': 1247 + optional: true 1248 + '@babel/plugin-syntax-jsx': 1249 + optional: true 1250 + rolldown: 1251 + optional: true 1252 + rollup-plugin-visualizer: 1253 + optional: true 1254 + 735 1255 '@opentelemetry/api-logs@0.203.0': 736 1256 resolution: {integrity: sha512-9B9RU0H7Ya1Dx/Rkyc4stuBZSGVQF27WigitInx2QQoj6KUpEFYPKoWjdFTunJYxmXmh17HeBvbMa1EhGyPmqQ==} 737 1257 engines: {node: '>=8.0.0'} ··· 1221 1741 resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==} 1222 1742 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1223 1743 1744 + '@oxc-minify/binding-android-arm-eabi@0.131.0': 1745 + resolution: {integrity: sha512-yLa7y9jjJgUeUUMm6AtjmBIQzK1YU5sYcNJnVVtr6WtoWu5SpuNDZ8u6cl/dhn0g/oQgVlf+E+8WJfsExt8R+Q==} 1746 + engines: {node: ^20.19.0 || >=22.12.0} 1747 + cpu: [arm] 1748 + os: [android] 1749 + 1750 + '@oxc-minify/binding-android-arm64@0.131.0': 1751 + resolution: {integrity: sha512-ShZDYFEVd46qCc9L0D3ZTPLXe/DezTedEj7g6x1Bdlm1WwgQ1pQJgWkqpMGlQhUet5wq4WUpQB/P6afK470Ydg==} 1752 + engines: {node: ^20.19.0 || >=22.12.0} 1753 + cpu: [arm64] 1754 + os: [android] 1755 + 1756 + '@oxc-minify/binding-darwin-arm64@0.131.0': 1757 + resolution: {integrity: sha512-h+5iCSKxpK7SJdAHmY4I+0BBxR+pJQVNJvAIB3KcOVyz8/ybaO2r41URCwV1N3FnPYkIIiMokZ24YYMB6/GrRw==} 1758 + engines: {node: ^20.19.0 || >=22.12.0} 1759 + cpu: [arm64] 1760 + os: [darwin] 1761 + 1762 + '@oxc-minify/binding-darwin-x64@0.131.0': 1763 + resolution: {integrity: sha512-EIP8KmjqfZeDdhrbG+0GDsiw1/Bi3415uCFokhOm6b8tGG0UdiemVHAz9IQE/sIJgwguXYtg5ydz9oFYVOlOfA==} 1764 + engines: {node: ^20.19.0 || >=22.12.0} 1765 + cpu: [x64] 1766 + os: [darwin] 1767 + 1768 + '@oxc-minify/binding-freebsd-x64@0.131.0': 1769 + resolution: {integrity: sha512-2/xcCZfVm24sLFHbI5Rg/t6Ec93pth0NvTgy/J8vXjIOy8Yf5kkO/K1KVtdZBHW+cyLPe7YLLybxMF/BeqM8Kg==} 1770 + engines: {node: ^20.19.0 || >=22.12.0} 1771 + cpu: [x64] 1772 + os: [freebsd] 1773 + 1774 + '@oxc-minify/binding-linux-arm-gnueabihf@0.131.0': 1775 + resolution: {integrity: sha512-LDQ1Y+QfL5lN54ib1Je2paoh4EsQmmDRvB5Bd9AQIGCP16LI+8jZnB8cjTT3GD1acITDg1aiaBKk9JpBjBA4iw==} 1776 + engines: {node: ^20.19.0 || >=22.12.0} 1777 + cpu: [arm] 1778 + os: [linux] 1779 + 1780 + '@oxc-minify/binding-linux-arm-musleabihf@0.131.0': 1781 + resolution: {integrity: sha512-mz99O2sZoyHnMoksxlZ5Mc+USS/w/uIp1LWQAn42RHAvVdIyQsqPRmTD/pJtW/KnjgpgaB0yDCpI6Xa3ivJppQ==} 1782 + engines: {node: ^20.19.0 || >=22.12.0} 1783 + cpu: [arm] 1784 + os: [linux] 1785 + 1786 + '@oxc-minify/binding-linux-arm64-gnu@0.131.0': 1787 + resolution: {integrity: sha512-QjS1N4FwCV67ZylGyfTWoqURzar48dN5WTq/JVrGsiShFKlT9SpuyRsoUGMGJhiKNiI39MsLIHBlBWvoRQG+ng==} 1788 + engines: {node: ^20.19.0 || >=22.12.0} 1789 + cpu: [arm64] 1790 + os: [linux] 1791 + libc: [glibc] 1792 + 1793 + '@oxc-minify/binding-linux-arm64-musl@0.131.0': 1794 + resolution: {integrity: sha512-HGzqTov5sAzXyaNfRkQEpl0fRs+PrMYjT8b5jZAw8foQ/qnW+VMWgAr80Q+2j79T5nhXfboSF5SUgB8mcisgHw==} 1795 + engines: {node: ^20.19.0 || >=22.12.0} 1796 + cpu: [arm64] 1797 + os: [linux] 1798 + libc: [musl] 1799 + 1800 + '@oxc-minify/binding-linux-ppc64-gnu@0.131.0': 1801 + resolution: {integrity: sha512-zpUZ4pmbDBqaZmRYacxeLHUBxA3fs5K7hi1WSXRVMXC4OjWuVcLsNxeavenKF9i0YtP7Q5n2z12Rz7eEnNWoDA==} 1802 + engines: {node: ^20.19.0 || >=22.12.0} 1803 + cpu: [ppc64] 1804 + os: [linux] 1805 + libc: [glibc] 1806 + 1807 + '@oxc-minify/binding-linux-riscv64-gnu@0.131.0': 1808 + resolution: {integrity: sha512-CYrC4tpW1wolbw/Fox+T0hxW92s1aG/WLi+htkk02JMiCHOWqGQKxUnm37lLiODKR/OwTYht3LB4xNrsS0RtCg==} 1809 + engines: {node: ^20.19.0 || >=22.12.0} 1810 + cpu: [riscv64] 1811 + os: [linux] 1812 + libc: [glibc] 1813 + 1814 + '@oxc-minify/binding-linux-riscv64-musl@0.131.0': 1815 + resolution: {integrity: sha512-ZQNur0zujUjNYgjFF4mcNaeEKWuerY9XkaALYtBsHqNetkj55w0ZwCKYfYKLH2JAdyNF2LuS0s7VGgjXP9EvWA==} 1816 + engines: {node: ^20.19.0 || >=22.12.0} 1817 + cpu: [riscv64] 1818 + os: [linux] 1819 + libc: [musl] 1820 + 1821 + '@oxc-minify/binding-linux-s390x-gnu@0.131.0': 1822 + resolution: {integrity: sha512-tR8oiFSNpcS1mfGY1N3/Hy6TxP2wr5X9FFdn/y8GarN8ST/JMLY5SUiwPiU35NKiC69CDaAsLHXoIKUxK/r8Pw==} 1823 + engines: {node: ^20.19.0 || >=22.12.0} 1824 + cpu: [s390x] 1825 + os: [linux] 1826 + libc: [glibc] 1827 + 1828 + '@oxc-minify/binding-linux-x64-gnu@0.131.0': 1829 + resolution: {integrity: sha512-KodzbW12zmT/C/w4bGv2aWN7Q5+KVJKbNoAv5hooYeSujj8xSPGWl8pnyj7dJ9nd8j0CVjubEvHQ86rtzV99OA==} 1830 + engines: {node: ^20.19.0 || >=22.12.0} 1831 + cpu: [x64] 1832 + os: [linux] 1833 + libc: [glibc] 1834 + 1835 + '@oxc-minify/binding-linux-x64-musl@0.131.0': 1836 + resolution: {integrity: sha512-CNG3/hPE6MxdLikfLq5l0aZMvJ3W5AP1aoVjzQ1Itokv5sbfBcW0fp6Srn8mB86CyAqO9e7dbffZVOWBDVkhgw==} 1837 + engines: {node: ^20.19.0 || >=22.12.0} 1838 + cpu: [x64] 1839 + os: [linux] 1840 + libc: [musl] 1841 + 1842 + '@oxc-minify/binding-openharmony-arm64@0.131.0': 1843 + resolution: {integrity: sha512-UyfimTwMLitJ0+5i5fL9M9U4E+DcIQJpGZWbVxxD3Mp9f7CTyQBIHnS68VEGZe+KQL/Y3IIb3AJ7cZB+ICgTVQ==} 1844 + engines: {node: ^20.19.0 || >=22.12.0} 1845 + cpu: [arm64] 1846 + os: [openharmony] 1847 + 1848 + '@oxc-minify/binding-wasm32-wasi@0.131.0': 1849 + resolution: {integrity: sha512-fH7sy51iYnmGv2pEPsS9KEVExHDKI1/nfy/OqYnStW2E5di41CQ1qBjVIvxHOMHcPD8RmKEBCf0zng6d9/vGDg==} 1850 + engines: {node: ^20.19.0 || >=22.12.0} 1851 + cpu: [wasm32] 1852 + 1853 + '@oxc-minify/binding-win32-arm64-msvc@0.131.0': 1854 + resolution: {integrity: sha512-C05v+5eIdvF4YXQ4t+U0JQDl8IWoIabxsmh4inBSGOL0VziELmis3lb5X6JMj208RbQdKhZGJbUkmNWq2B5Kxw==} 1855 + engines: {node: ^20.19.0 || >=22.12.0} 1856 + cpu: [arm64] 1857 + os: [win32] 1858 + 1859 + '@oxc-minify/binding-win32-ia32-msvc@0.131.0': 1860 + resolution: {integrity: sha512-bZio0euDmT6Er00I6jng66ftGw5doP/UmCAr2XtBooZMdr7ofTJ4+Bpp+ufguVIeVk5i1vgMPsq7g6FTcxHevg==} 1861 + engines: {node: ^20.19.0 || >=22.12.0} 1862 + cpu: [ia32] 1863 + os: [win32] 1864 + 1865 + '@oxc-minify/binding-win32-x64-msvc@0.131.0': 1866 + resolution: {integrity: sha512-Lih6D0rjXStl0eUjzlcCiqr60AI/LuE+Zy29beEeXrXqTjOf8t0mcDX/MN3TZBBncxwUNi6osAEsKj4FRnItmQ==} 1867 + engines: {node: ^20.19.0 || >=22.12.0} 1868 + cpu: [x64] 1869 + os: [win32] 1870 + 1224 1871 '@oxc-parser/binding-android-arm-eabi@0.130.0': 1225 1872 resolution: {integrity: sha512-h/xYU8/7ADWzVSf5I+YalLpj33LOy9CI/zgbJNIZ5eunRBG+Czqa3lZsvuPHHf3rOt6z1c5+UzoxjbAzAvhwVw==} 1226 1873 engines: {node: ^20.19.0 || >=22.12.0} 1227 1874 cpu: [arm] 1228 1875 os: [android] 1229 1876 1877 + '@oxc-parser/binding-android-arm-eabi@0.131.0': 1878 + resolution: {integrity: sha512-t2xicr9pfzkSRYx5aPqZqlLaayIwJTqgQ81Jor31Xep2nGyL2Aq3d0K5wOfeR7VevaSdxaS9dzSQP9xDwn8fDg==} 1879 + engines: {node: ^20.19.0 || >=22.12.0} 1880 + cpu: [arm] 1881 + os: [android] 1882 + 1230 1883 '@oxc-parser/binding-android-arm64@0.130.0': 1231 1884 resolution: {integrity: sha512-oFWFJrsGv9siFM4HjMqKNB7IuIZD/SMmZdCXl8xyx7lDplGvPKyewpOo272rSWgMXe2Wx7bWI0Yj+gkHv4qbeg==} 1232 1885 engines: {node: ^20.19.0 || >=22.12.0} 1233 1886 cpu: [arm64] 1234 1887 os: [android] 1235 1888 1889 + '@oxc-parser/binding-android-arm64@0.131.0': 1890 + resolution: {integrity: sha512-nlGIod6gw75x1aEDgLS+srj+JRGY0HHm9MI9YgzE/B64l6d6+H3MSP9NOgp0+HTg8tp4vV9rVfgQGgd+TfVZcA==} 1891 + engines: {node: ^20.19.0 || >=22.12.0} 1892 + cpu: [arm64] 1893 + os: [android] 1894 + 1236 1895 '@oxc-parser/binding-darwin-arm64@0.130.0': 1237 1896 resolution: {integrity: sha512-sGUzupdTplK9jQg7eJZ878HfEgQjJNBc6dAYVWJ9W5aU+J8rLfRJhTVsKThiu1pNwm6Y1qKCcbC6WhNWSXR3Ig==} 1238 1897 engines: {node: ^20.19.0 || >=22.12.0} 1239 1898 cpu: [arm64] 1240 1899 os: [darwin] 1241 1900 1901 + '@oxc-parser/binding-darwin-arm64@0.131.0': 1902 + resolution: {integrity: sha512-jukuV6xe5RbQKFo7QD34NDCLDZp4PSOm8rmckhNdH/60ymG5zXbDzGBEyc+nTkuLQNama2aSGCt+CPfpjNTqyw==} 1903 + engines: {node: ^20.19.0 || >=22.12.0} 1904 + cpu: [arm64] 1905 + os: [darwin] 1906 + 1242 1907 '@oxc-parser/binding-darwin-x64@0.130.0': 1243 1908 resolution: {integrity: sha512-PsB4cdCISbC00Uy8eiD8bc2AkGWjZqrSrJnkBFuG2ptrrf6mZ2F5gLFSjOAVMMgZPg8B1D7OydJwLWSfyI2Plg==} 1244 1909 engines: {node: ^20.19.0 || >=22.12.0} 1245 1910 cpu: [x64] 1246 1911 os: [darwin] 1247 1912 1913 + '@oxc-parser/binding-darwin-x64@0.131.0': 1914 + resolution: {integrity: sha512-g3JOo4khe9rslHm5WYaVDWb0HS/M1MLR3I9S8560MkKIcC96VQY00QjOlsuRyfSj/JDXj8i9T7ryPO2RidiXVg==} 1915 + engines: {node: ^20.19.0 || >=22.12.0} 1916 + cpu: [x64] 1917 + os: [darwin] 1918 + 1248 1919 '@oxc-parser/binding-freebsd-x64@0.130.0': 1249 1920 resolution: {integrity: sha512-DgABp3l38hS77JbXCV4qk1+n6DPym5u8zzwuweokezm2tX194nDSJDENbDRECxVsiNbprKATLbk+Z5wlHT0OHw==} 1250 1921 engines: {node: ^20.19.0 || >=22.12.0} 1251 1922 cpu: [x64] 1252 1923 os: [freebsd] 1253 1924 1925 + '@oxc-parser/binding-freebsd-x64@0.131.0': 1926 + resolution: {integrity: sha512-1hziITDTxjMePnX+dR9ocVT+EuZkQ8wm4FPAbmbEiKG+Phbo73J1ZnPAA6Y/aGsWF3McOFnQuZIktAFwalkfJQ==} 1927 + engines: {node: ^20.19.0 || >=22.12.0} 1928 + cpu: [x64] 1929 + os: [freebsd] 1930 + 1254 1931 '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0': 1255 1932 resolution: {integrity: sha512-4Kn3CTEmwFrzhTSC/JuUW16qovmaMdX7jeSKbL8w0pLtLww7To1a2XJi9Z5uD8QWUkfUHhqfV+VD6dVzBnWzoA==} 1256 1933 engines: {node: ^20.19.0 || >=22.12.0} 1257 1934 cpu: [arm] 1258 1935 os: [linux] 1259 1936 1937 + '@oxc-parser/binding-linux-arm-gnueabihf@0.131.0': 1938 + resolution: {integrity: sha512-9uRxfXwyKG9+MwmGQBo2ncPNwZH5HTmCETFM2WiuDBNDCW4NC5ttSQkwCAMrTAWgwMzVBH1CP8pM0v7nebCWXQ==} 1939 + engines: {node: ^20.19.0 || >=22.12.0} 1940 + cpu: [arm] 1941 + os: [linux] 1942 + 1260 1943 '@oxc-parser/binding-linux-arm-musleabihf@0.130.0': 1261 1944 resolution: {integrity: sha512-D35KZM3F4rRu1uAFKyBlg3Gaf/ybCjyaPR1hfgvk5ex8NtcTmRgc0JgSighEyNg96TPrFhemFba68SZuxaha8w==} 1262 1945 engines: {node: ^20.19.0 || >=22.12.0} 1263 1946 cpu: [arm] 1264 1947 os: [linux] 1265 1948 1949 + '@oxc-parser/binding-linux-arm-musleabihf@0.131.0': 1950 + resolution: {integrity: sha512-mgbLvzRShXOLBdWGInf08Af4q+pfj1xD8hSgLClDZ9of/BXkB6+LIhTH7fihiDUipqB3yoSkKBWaZ3Ejlf5Yag==} 1951 + engines: {node: ^20.19.0 || >=22.12.0} 1952 + cpu: [arm] 1953 + os: [linux] 1954 + 1266 1955 '@oxc-parser/binding-linux-arm64-gnu@0.130.0': 1267 1956 resolution: {integrity: sha512-Q9o7oVlo955KHwS8l1u0bCzIx+JsZUA3XToLXC+MsMhye/9LeBQbt84nh120cl2XLy+TEzvugYDiHShg5yaX6Q==} 1268 1957 engines: {node: ^20.19.0 || >=22.12.0} ··· 1270 1959 os: [linux] 1271 1960 libc: [glibc] 1272 1961 1962 + '@oxc-parser/binding-linux-arm64-gnu@0.131.0': 1963 + resolution: {integrity: sha512-OPT8++4aN6j2GJ8+3IZHS/byXoZP4aSBn+FoG6rgBJ2fKwPKXWF3MqrFMNW7NKHM28FLY579xYLxJSfgobEqPA==} 1964 + engines: {node: ^20.19.0 || >=22.12.0} 1965 + cpu: [arm64] 1966 + os: [linux] 1967 + libc: [glibc] 1968 + 1273 1969 '@oxc-parser/binding-linux-arm64-musl@0.130.0': 1274 1970 resolution: {integrity: sha512-EiJ/gC0ljbcwVpycC8YWw6ggMbtsPX8XMOt0mPx0aqWeMsNR+L9m05Flbvd5T+GlivG+GkSWQL7tM9SRFpM/dw==} 1275 1971 engines: {node: ^20.19.0 || >=22.12.0} ··· 1277 1973 os: [linux] 1278 1974 libc: [musl] 1279 1975 1976 + '@oxc-parser/binding-linux-arm64-musl@0.131.0': 1977 + resolution: {integrity: sha512-vtPiwmfVTAXzaxDKsOXG+LwgRAA7WEnaeHzhS5z0GE89gAK18KSXnly7Z6saXXq6L3dVMyK44uoTI03zKxrpmw==} 1978 + engines: {node: ^20.19.0 || >=22.12.0} 1979 + cpu: [arm64] 1980 + os: [linux] 1981 + libc: [musl] 1982 + 1280 1983 '@oxc-parser/binding-linux-ppc64-gnu@0.130.0': 1281 1984 resolution: {integrity: sha512-b+h/lsLLurp756dMGizNs5uPaJfyEdWrTcV5t8M609jWm1DEHB1StpRXCkyvwtkJx3m+qL5BNQ0dEKan/4yGFA==} 1282 1985 engines: {node: ^20.19.0 || >=22.12.0} ··· 1284 1987 os: [linux] 1285 1988 libc: [glibc] 1286 1989 1990 + '@oxc-parser/binding-linux-ppc64-gnu@0.131.0': 1991 + resolution: {integrity: sha512-8AW8L7w5cGHSdZPcyZX2yR0+GUODsT15rbRjfdD54rv6DMbtuEB19ysLOpKJlRGfH6UNYNpCHaU1uJWgTWf1/w==} 1992 + engines: {node: ^20.19.0 || >=22.12.0} 1993 + cpu: [ppc64] 1994 + os: [linux] 1995 + libc: [glibc] 1996 + 1287 1997 '@oxc-parser/binding-linux-riscv64-gnu@0.130.0': 1288 1998 resolution: {integrity: sha512-O19Cil83XAyjEFfo8WhkMwY58ALqZ7ckjGL+25mjMIuF84urWBeANH0FC8B8BsSSygWU3/1aY3ADdDbp+wlBnw==} 1289 1999 engines: {node: ^20.19.0 || >=22.12.0} ··· 1291 2001 os: [linux] 1292 2002 libc: [glibc] 1293 2003 2004 + '@oxc-parser/binding-linux-riscv64-gnu@0.131.0': 2005 + resolution: {integrity: sha512-vvpjkjEOUsPcsYf8evE4MO3aGx9+3wodXEBOicGNnOwTuAik8eBONNkgSdhkGsAblQmfVHJyanRnpxglddTXIA==} 2006 + engines: {node: ^20.19.0 || >=22.12.0} 2007 + cpu: [riscv64] 2008 + os: [linux] 2009 + libc: [glibc] 2010 + 1294 2011 '@oxc-parser/binding-linux-riscv64-musl@0.130.0': 1295 2012 resolution: {integrity: sha512-BgXRVC0+83n3YzCscLQjj6nbyeBIVeZYPTI4fFMAE4WNm2+4RXhWp03IVizL7esIz36kgmT48aebk1iM+cs8sw==} 1296 2013 engines: {node: ^20.19.0 || >=22.12.0} ··· 1298 2015 os: [linux] 1299 2016 libc: [musl] 1300 2017 2018 + '@oxc-parser/binding-linux-riscv64-musl@0.131.0': 2019 + resolution: {integrity: sha512-AqmcNC3fClXX+fxQ6VGEN1667xVFiRBkY0CZmDMSiaeFUsv1+UkBPYYi48IUKcA9/ivvoKNRzQl2I4//kT9F/w==} 2020 + engines: {node: ^20.19.0 || >=22.12.0} 2021 + cpu: [riscv64] 2022 + os: [linux] 2023 + libc: [musl] 2024 + 1301 2025 '@oxc-parser/binding-linux-s390x-gnu@0.130.0': 1302 2026 resolution: {integrity: sha512-6tJz0xvnGhsokE7N1WlUSBXibpYmT9xSJFS1Ce41Km/+8gQvdlW8MLhRv8PD0L7ix8vRG0FDDepp3jdOFzdVdw==} 1303 2027 engines: {node: ^20.19.0 || >=22.12.0} ··· 1305 2029 os: [linux] 1306 2030 libc: [glibc] 1307 2031 2032 + '@oxc-parser/binding-linux-s390x-gnu@0.131.0': 2033 + resolution: {integrity: sha512-7d3jOMKy7RSQCcDLIci+ySll2FgsOMl/GiRux4q2JNv0zg4EdhFISa9idvrdN/HEUIQQJNg6dmveUeJl2YErGA==} 2034 + engines: {node: ^20.19.0 || >=22.12.0} 2035 + cpu: [s390x] 2036 + os: [linux] 2037 + libc: [glibc] 2038 + 1308 2039 '@oxc-parser/binding-linux-x64-gnu@0.130.0': 1309 2040 resolution: {integrity: sha512-9aCWj83dp3heTQGmGnZGdIWgxjZrr/7VQ0TGFHH5PKByxJKF2Hcr4qvaSUHhhGEa3MSsDjTL1YDP8RAgdL5/Cg==} 1310 2041 engines: {node: ^20.19.0 || >=22.12.0} ··· 1312 2043 os: [linux] 1313 2044 libc: [glibc] 1314 2045 2046 + '@oxc-parser/binding-linux-x64-gnu@0.131.0': 2047 + resolution: {integrity: sha512-JHK/h95qVqVQ+ITER837kcTdwBDFpFaNnOTYGCP0zdUSX/mLKC7tXOoyrTb6vG7iRPwGlcgBil3v2IjYw1FqJA==} 2048 + engines: {node: ^20.19.0 || >=22.12.0} 2049 + cpu: [x64] 2050 + os: [linux] 2051 + libc: [glibc] 2052 + 1315 2053 '@oxc-parser/binding-linux-x64-musl@0.130.0': 1316 2054 resolution: {integrity: sha512-afXt87aZBqrUVli8TB/I8H1G50RDWcwirjWtXGXYqJ2ZqWEiErH7V72j3LUSDZaivmtu2OLX0KQ/mbhP81mr7A==} 1317 2055 engines: {node: ^20.19.0 || >=22.12.0} ··· 1319 2057 os: [linux] 1320 2058 libc: [musl] 1321 2059 2060 + '@oxc-parser/binding-linux-x64-musl@0.131.0': 2061 + resolution: {integrity: sha512-b2BO82O8azXAyf7EUgOPKu145nWypbNyk07HbU09fkzhm9lEA5oPvaN/M8Nlo7tOErVTa2WOgS4QbOnxAPXdDQ==} 2062 + engines: {node: ^20.19.0 || >=22.12.0} 2063 + cpu: [x64] 2064 + os: [linux] 2065 + libc: [musl] 2066 + 1322 2067 '@oxc-parser/binding-openharmony-arm64@0.130.0': 1323 2068 resolution: {integrity: sha512-I0NCrZV/YZuCGWgqwNN/GO/iXlLF2z+Wgc7u+Aa9N4P51oYeIa0XT+zVBUne4csO9GqxskXgI4g8JzzWGRpfOw==} 1324 2069 engines: {node: ^20.19.0 || >=22.12.0} 1325 2070 cpu: [arm64] 1326 2071 os: [openharmony] 1327 2072 2073 + '@oxc-parser/binding-openharmony-arm64@0.131.0': 2074 + resolution: {integrity: sha512-GHO9glZaX7LkX/OGfluEPf1yjg+ehiFbUdowbX6uNWOQhmwKWU4m4+nZ9FJkrHNKuxyI1KKertMdGjVKCApKWA==} 2075 + engines: {node: ^20.19.0 || >=22.12.0} 2076 + cpu: [arm64] 2077 + os: [openharmony] 2078 + 1328 2079 '@oxc-parser/binding-wasm32-wasi@0.130.0': 1329 2080 resolution: {integrity: sha512-sJgQkGaBX0WJvPUDfwciex6IcTk5O5NLQ1bhEb6f3nBruh1GshKMRSMt2bxZlYrgBzjyBbJzsnO+InPG0bg+fA==} 1330 2081 engines: {node: ^20.19.0 || >=22.12.0} 1331 2082 cpu: [wasm32] 1332 2083 2084 + '@oxc-parser/binding-wasm32-wasi@0.131.0': 2085 + resolution: {integrity: sha512-3SkikPaEFoih1N83qLVEDLRLeY4nYsf6JT9SnWiMCQ5lGQdKup6bEuKCqkRiG9dD1IIaFeYz9RjlciPmYoFIWA==} 2086 + engines: {node: ^20.19.0 || >=22.12.0} 2087 + cpu: [wasm32] 2088 + 1333 2089 '@oxc-parser/binding-win32-arm64-msvc@0.130.0': 1334 2090 resolution: {integrity: sha512-bjcma99sQrNh6RY4mPO9yTkfxql6TDFoN3HWdK31RCKXwNhcDgJXW/l8PUtzKNiQ+9vpKJfJtQq+LklBuxSOBA==} 1335 2091 engines: {node: ^20.19.0 || >=22.12.0} 1336 2092 cpu: [arm64] 1337 2093 os: [win32] 1338 2094 2095 + '@oxc-parser/binding-win32-arm64-msvc@0.131.0': 2096 + resolution: {integrity: sha512-Os5bEhryeA2jkH+ZrnZyAC1EP5gs+X4YB1Fjqml7UPD5kU7ecsK1MPEVMfCrdt/GDNpDbavYXiOXOdyJ5b3OPw==} 2097 + engines: {node: ^20.19.0 || >=22.12.0} 2098 + cpu: [arm64] 2099 + os: [win32] 2100 + 1339 2101 '@oxc-parser/binding-win32-ia32-msvc@0.130.0': 1340 2102 resolution: {integrity: sha512-hRYbv6HhpSTzT4xTiIkadLI7upLQxuOdLPR/9nL1fTjwhgutBTPXrwaAPb/jTFVx6/8C7Jb5HcUKhmNwloTbFA==} 2103 + engines: {node: ^20.19.0 || >=22.12.0} 2104 + cpu: [ia32] 2105 + os: [win32] 2106 + 2107 + '@oxc-parser/binding-win32-ia32-msvc@0.131.0': 2108 + resolution: {integrity: sha512-m+jNz9EuF0NXoiptc6B9h5yompZQVW/a5MJeOu5zojfH5yWk82tvF2ccrHkfhgtrS9h9DD5l1Qv8dWlfY7Nz8g==} 1341 2109 engines: {node: ^20.19.0 || >=22.12.0} 1342 2110 cpu: [ia32] 1343 2111 os: [win32] ··· 1348 2116 cpu: [x64] 1349 2117 os: [win32] 1350 2118 2119 + '@oxc-parser/binding-win32-x64-msvc@0.131.0': 2120 + resolution: {integrity: sha512-o14Hk8dAyiEUMFEWEgmAwFZvBt1RzAYLM3xeQ+5315JXgVYhoemivgYcbYVRbsFkS71ShMGlAFE0kPnr460rww==} 2121 + engines: {node: ^20.19.0 || >=22.12.0} 2122 + cpu: [x64] 2123 + os: [win32] 2124 + 1351 2125 '@oxc-project/types@0.130.0': 1352 2126 resolution: {integrity: sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==} 2127 + 2128 + '@oxc-project/types@0.131.0': 2129 + resolution: {integrity: sha512-PgnWDfV0h+b16XNKbXU7Daib/BFSt/J2mEzfYIBu6JB/wNdlU+kVYXCkGA1A9fWkTbOgbjh4e6NhPeQOYvFhEA==} 1353 2130 1354 2131 '@oxc-project/types@0.132.0': 1355 2132 resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} ··· 1462 2239 cpu: [x64] 1463 2240 os: [win32] 1464 2241 2242 + '@oxc-transform/binding-android-arm-eabi@0.131.0': 2243 + resolution: {integrity: sha512-rcNvLlbNnxTfYVlZVF+Rev2AyCpJDpwVPphG4HOJxauaT1+w5VxL+kRdxCReof4A8ZsszbvIYlvkqvaJKO4Mog==} 2244 + engines: {node: ^20.19.0 || >=22.12.0} 2245 + cpu: [arm] 2246 + os: [android] 2247 + 2248 + '@oxc-transform/binding-android-arm64@0.131.0': 2249 + resolution: {integrity: sha512-/y+EH6QYQB2ZDQNvMlzItc36mw16GZwCDlvGYbQ4GCTE+7ZtSmx9E/rJOYzYyzMghz0c5dhJquRKScXdOZHpnQ==} 2250 + engines: {node: ^20.19.0 || >=22.12.0} 2251 + cpu: [arm64] 2252 + os: [android] 2253 + 2254 + '@oxc-transform/binding-darwin-arm64@0.131.0': 2255 + resolution: {integrity: sha512-x1Va8zFomdYghAI0Zkt7kUmG50S65XH1u0EbIDr80M9idfXrQgd08ZGl3ejwRGLBrkbA8tkkmeOu1rWVFf7BXg==} 2256 + engines: {node: ^20.19.0 || >=22.12.0} 2257 + cpu: [arm64] 2258 + os: [darwin] 2259 + 2260 + '@oxc-transform/binding-darwin-x64@0.131.0': 2261 + resolution: {integrity: sha512-EwacackWpYYXGZsl0Aj4NKvDdLuxWZg7LQDneFyMwuftpAxPQLRkHFwZib7r6wpIJm4NELhHW261A4vZ8OQqXQ==} 2262 + engines: {node: ^20.19.0 || >=22.12.0} 2263 + cpu: [x64] 2264 + os: [darwin] 2265 + 2266 + '@oxc-transform/binding-freebsd-x64@0.131.0': 2267 + resolution: {integrity: sha512-EhXqWOtL1PWcJ3ktdplV4Wrez2PRuTBSDdB7KF6CN4zuZhohUjxC1bxqDNRbNSX46yaZ27IzJLafah1J6mSA8Q==} 2268 + engines: {node: ^20.19.0 || >=22.12.0} 2269 + cpu: [x64] 2270 + os: [freebsd] 2271 + 2272 + '@oxc-transform/binding-linux-arm-gnueabihf@0.131.0': 2273 + resolution: {integrity: sha512-NfNACr3aqBKeeUh6HCoGGPSjdMkLvyXUZQywCg/DwRkEpqZo55KX65saW1sQdgBcu0SKXrAReTjIm/HDO/OI0Q==} 2274 + engines: {node: ^20.19.0 || >=22.12.0} 2275 + cpu: [arm] 2276 + os: [linux] 2277 + 2278 + '@oxc-transform/binding-linux-arm-musleabihf@0.131.0': 2279 + resolution: {integrity: sha512-ABp6KGhbYFGDaAdB4gGZW12DYa55OF/Cu+6Rw6/Di0skuwpiDwnBOLHWz9VBq0QTcREy/qIUOnKW+vZHQLOT8A==} 2280 + engines: {node: ^20.19.0 || >=22.12.0} 2281 + cpu: [arm] 2282 + os: [linux] 2283 + 2284 + '@oxc-transform/binding-linux-arm64-gnu@0.131.0': 2285 + resolution: {integrity: sha512-4nKYkHHjRela+jpt+VO4++jxgHoJQFxAeAGtfQ4x11dQMJllzqo3Yu8gfcfLEMsAfflwN/gY+KBbMD/y0exitg==} 2286 + engines: {node: ^20.19.0 || >=22.12.0} 2287 + cpu: [arm64] 2288 + os: [linux] 2289 + libc: [glibc] 2290 + 2291 + '@oxc-transform/binding-linux-arm64-musl@0.131.0': 2292 + resolution: {integrity: sha512-cW0Ab1s0sxfiyP1+gdd94f0vUjwGzJF4F3DepF3VnR9nFTGMmFLugwtrBS3DYjTnbugiUH3Fp+16yys1FhNzIA==} 2293 + engines: {node: ^20.19.0 || >=22.12.0} 2294 + cpu: [arm64] 2295 + os: [linux] 2296 + libc: [musl] 2297 + 2298 + '@oxc-transform/binding-linux-ppc64-gnu@0.131.0': 2299 + resolution: {integrity: sha512-wunAU/lzE1nPGKL47uI0g+4Nsv/12xveOXNu4M70xe85kNBm7mQdMpZIeoVYCxtXew0iHxFKJDT6qK5mYFSA3w==} 2300 + engines: {node: ^20.19.0 || >=22.12.0} 2301 + cpu: [ppc64] 2302 + os: [linux] 2303 + libc: [glibc] 2304 + 2305 + '@oxc-transform/binding-linux-riscv64-gnu@0.131.0': 2306 + resolution: {integrity: sha512-r4sMt4OB4TryDcVWW9KnsXOf/ea7tIGX2QASNrpetzPocsBZqhHIFDbZ8EkBDjmlmWGHg6BgjVx6lLcMXX4Dcw==} 2307 + engines: {node: ^20.19.0 || >=22.12.0} 2308 + cpu: [riscv64] 2309 + os: [linux] 2310 + libc: [glibc] 2311 + 2312 + '@oxc-transform/binding-linux-riscv64-musl@0.131.0': 2313 + resolution: {integrity: sha512-/rLVLItsBjKrnZFLiGrwRB3fs0dAjXZLqY7F42omvacFJjZsceQ3481oQX1bBs3RwoDDyDy/9ZkIN7kYIkv5Gw==} 2314 + engines: {node: ^20.19.0 || >=22.12.0} 2315 + cpu: [riscv64] 2316 + os: [linux] 2317 + libc: [musl] 2318 + 2319 + '@oxc-transform/binding-linux-s390x-gnu@0.131.0': 2320 + resolution: {integrity: sha512-fUprJgJauI1A7e7cDgY/Z3mwLVtE3aswB4lvS96KpRNDHrwOh8bnCJOWf+0CYveDQzghDVFiZWVDo56pO4Wr9Q==} 2321 + engines: {node: ^20.19.0 || >=22.12.0} 2322 + cpu: [s390x] 2323 + os: [linux] 2324 + libc: [glibc] 2325 + 2326 + '@oxc-transform/binding-linux-x64-gnu@0.131.0': 2327 + resolution: {integrity: sha512-XdbvDT1GPNxrTLXSRt4RU2uCH112q3nINTT05DZqTYYcAxaCPImnMoZe2TlBv5j2376Gk+2pcVnJs6xut47aSw==} 2328 + engines: {node: ^20.19.0 || >=22.12.0} 2329 + cpu: [x64] 2330 + os: [linux] 2331 + libc: [glibc] 2332 + 2333 + '@oxc-transform/binding-linux-x64-musl@0.131.0': 2334 + resolution: {integrity: sha512-Du2CxlBfC98EV3hOAmLVSUgP0JgqM9F47lRv9v43T4sGPcQVOjs9wffUybGUUraG9unmBZ4dgpMAqlCq0k3dGw==} 2335 + engines: {node: ^20.19.0 || >=22.12.0} 2336 + cpu: [x64] 2337 + os: [linux] 2338 + libc: [musl] 2339 + 2340 + '@oxc-transform/binding-openharmony-arm64@0.131.0': 2341 + resolution: {integrity: sha512-wTj2FkOgNhgdisnA0a15QQksyj6AH2snmpgYgAtj098i477x5LpHHdqfuk60jsA/QHSjmUc6dm4P88yI5GY4xA==} 2342 + engines: {node: ^20.19.0 || >=22.12.0} 2343 + cpu: [arm64] 2344 + os: [openharmony] 2345 + 2346 + '@oxc-transform/binding-wasm32-wasi@0.131.0': 2347 + resolution: {integrity: sha512-lE9UaZL0KomAlbATiB6FKoJ9no6W49yXs/MujJqY75AkHHMeOCsHSN9HvriyWz2FOIQgV7C5cmNj0jf+IaBtQg==} 2348 + engines: {node: ^20.19.0 || >=22.12.0} 2349 + cpu: [wasm32] 2350 + 2351 + '@oxc-transform/binding-win32-arm64-msvc@0.131.0': 2352 + resolution: {integrity: sha512-8KUfPnuxbEfa9H+OQ5XNPFq9JIEWVCg8kczJaD8PvTprr515mz1lmSLSUoOW8mrLaN0mZaGg6pemuvTawOLoPg==} 2353 + engines: {node: ^20.19.0 || >=22.12.0} 2354 + cpu: [arm64] 2355 + os: [win32] 2356 + 2357 + '@oxc-transform/binding-win32-ia32-msvc@0.131.0': 2358 + resolution: {integrity: sha512-pXSu2A7L6H//1Uvsg5RJHb91BDZpCTho0r9oAwxPqKJM2LWV7Zph/ikWEIXt/YLbKF3WpkHrKQ5hbQGP9gWmHg==} 2359 + engines: {node: ^20.19.0 || >=22.12.0} 2360 + cpu: [ia32] 2361 + os: [win32] 2362 + 2363 + '@oxc-transform/binding-win32-x64-msvc@0.131.0': 2364 + resolution: {integrity: sha512-VXgk106WLl3NpBO/6G2gxkWBHguCJm01mGqAq2Q0l2o7hnbglsND0UWSCtM3a9MlsDimfJkLWFQveZu4UtnRvA==} 2365 + engines: {node: ^20.19.0 || >=22.12.0} 2366 + cpu: [x64] 2367 + os: [win32] 2368 + 1465 2369 '@oxfmt/binding-android-arm-eabi@0.45.0': 1466 2370 resolution: {integrity: sha512-A/UMxFob1fefCuMeGxQBulGfFE38g2Gm23ynr3u6b+b7fY7/ajGbNsa3ikMIkGMLJW/TRoQaMoP1kME7S+815w==} 1467 2371 engines: {node: ^20.19.0 || >=22.12.0} ··· 1584 2488 cpu: [x64] 1585 2489 os: [win32] 1586 2490 2491 + '@parcel/watcher-android-arm64@2.5.6': 2492 + resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==} 2493 + engines: {node: '>= 10.0.0'} 2494 + cpu: [arm64] 2495 + os: [android] 2496 + 2497 + '@parcel/watcher-darwin-arm64@2.5.6': 2498 + resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==} 2499 + engines: {node: '>= 10.0.0'} 2500 + cpu: [arm64] 2501 + os: [darwin] 2502 + 2503 + '@parcel/watcher-darwin-x64@2.5.6': 2504 + resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==} 2505 + engines: {node: '>= 10.0.0'} 2506 + cpu: [x64] 2507 + os: [darwin] 2508 + 2509 + '@parcel/watcher-freebsd-x64@2.5.6': 2510 + resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==} 2511 + engines: {node: '>= 10.0.0'} 2512 + cpu: [x64] 2513 + os: [freebsd] 2514 + 2515 + '@parcel/watcher-linux-arm-glibc@2.5.6': 2516 + resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==} 2517 + engines: {node: '>= 10.0.0'} 2518 + cpu: [arm] 2519 + os: [linux] 2520 + libc: [glibc] 2521 + 2522 + '@parcel/watcher-linux-arm-musl@2.5.6': 2523 + resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==} 2524 + engines: {node: '>= 10.0.0'} 2525 + cpu: [arm] 2526 + os: [linux] 2527 + libc: [musl] 2528 + 2529 + '@parcel/watcher-linux-arm64-glibc@2.5.6': 2530 + resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==} 2531 + engines: {node: '>= 10.0.0'} 2532 + cpu: [arm64] 2533 + os: [linux] 2534 + libc: [glibc] 2535 + 2536 + '@parcel/watcher-linux-arm64-musl@2.5.6': 2537 + resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==} 2538 + engines: {node: '>= 10.0.0'} 2539 + cpu: [arm64] 2540 + os: [linux] 2541 + libc: [musl] 2542 + 2543 + '@parcel/watcher-linux-x64-glibc@2.5.6': 2544 + resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==} 2545 + engines: {node: '>= 10.0.0'} 2546 + cpu: [x64] 2547 + os: [linux] 2548 + libc: [glibc] 2549 + 2550 + '@parcel/watcher-linux-x64-musl@2.5.6': 2551 + resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==} 2552 + engines: {node: '>= 10.0.0'} 2553 + cpu: [x64] 2554 + os: [linux] 2555 + libc: [musl] 2556 + 2557 + '@parcel/watcher-wasm@2.5.6': 2558 + resolution: {integrity: sha512-byAiBZ1t3tXQvc8dMD/eoyE7lTXYorhn+6uVW5AC+JGI1KtJC/LvDche5cfUE+qiefH+Ybq0bUCJU0aB1cSHUA==} 2559 + engines: {node: '>= 10.0.0'} 2560 + bundledDependencies: 2561 + - napi-wasm 2562 + 2563 + '@parcel/watcher-win32-arm64@2.5.6': 2564 + resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==} 2565 + engines: {node: '>= 10.0.0'} 2566 + cpu: [arm64] 2567 + os: [win32] 2568 + 2569 + '@parcel/watcher-win32-ia32@2.5.6': 2570 + resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==} 2571 + engines: {node: '>= 10.0.0'} 2572 + cpu: [ia32] 2573 + os: [win32] 2574 + 2575 + '@parcel/watcher-win32-x64@2.5.6': 2576 + resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==} 2577 + engines: {node: '>= 10.0.0'} 2578 + cpu: [x64] 2579 + os: [win32] 2580 + 2581 + '@parcel/watcher@2.5.6': 2582 + resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==} 2583 + engines: {node: '>= 10.0.0'} 2584 + 1587 2585 '@pinojs/redact@0.4.0': 1588 2586 resolution: {integrity: sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==} 1589 2587 ··· 1606 2604 '@pnpm/workspace.read-manifest@2.2.2': 1607 2605 resolution: {integrity: sha512-ryiFUKQfu5sYAtX/jsYRHsTHoB6p6rNBZQkXODlmMczcGeIE78cuz1xf5+xS6Dq2CayiqImuSmCiWbT5uT90Nw==} 1608 2606 engines: {node: '>=18.12'} 2607 + 2608 + '@polka/url@1.0.0-next.29': 2609 + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} 2610 + 2611 + '@poppinss/colors@4.1.6': 2612 + resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==} 2613 + 2614 + '@poppinss/dumper@0.7.0': 2615 + resolution: {integrity: sha512-0UTYalzk2t6S4rA2uHOz5bSSW2CHdv4vggJI6Alg90yvl0UgXs6XSXpH96OH+bRkX4J/06djv29pqXJ0lq5Kag==} 2616 + 2617 + '@poppinss/exception@1.2.3': 2618 + resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==} 1609 2619 1610 2620 '@postgresql-typed/oids@0.2.0': 1611 2621 resolution: {integrity: sha512-jh1nIP/nmtlZkj1t0cO2NC2lFHg/fXQhtRFsL70Rh/5ELp5fqxH/calwPVTkS8gPae1k/PTqQYbU23E+Q2q0rg==} ··· 1781 2791 rollup: 1782 2792 optional: true 1783 2793 2794 + '@rollup/plugin-alias@6.0.0': 2795 + resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==} 2796 + engines: {node: '>=20.19.0'} 2797 + peerDependencies: 2798 + rollup: '>=4.0.0' 2799 + peerDependenciesMeta: 2800 + rollup: 2801 + optional: true 2802 + 1784 2803 '@rollup/plugin-commonjs@28.0.9': 1785 2804 resolution: {integrity: sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA==} 1786 2805 engines: {node: '>=16.0.0 || 14 >= 14.17'} ··· 1790 2809 rollup: 1791 2810 optional: true 1792 2811 2812 + '@rollup/plugin-commonjs@29.0.2': 2813 + resolution: {integrity: sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==} 2814 + engines: {node: '>=16.0.0 || 14 >= 14.17'} 2815 + peerDependencies: 2816 + rollup: ^2.68.0||^3.0.0||^4.0.0 2817 + peerDependenciesMeta: 2818 + rollup: 2819 + optional: true 2820 + 2821 + '@rollup/plugin-inject@5.0.5': 2822 + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} 2823 + engines: {node: '>=14.0.0'} 2824 + peerDependencies: 2825 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2826 + peerDependenciesMeta: 2827 + rollup: 2828 + optional: true 2829 + 1793 2830 '@rollup/plugin-json@6.1.0': 1794 2831 resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} 1795 2832 engines: {node: '>=14.0.0'} ··· 1817 2854 rollup: 1818 2855 optional: true 1819 2856 2857 + '@rollup/plugin-terser@1.0.0': 2858 + resolution: {integrity: sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==} 2859 + engines: {node: '>=20.0.0'} 2860 + peerDependencies: 2861 + rollup: ^2.0.0||^3.0.0||^4.0.0 2862 + peerDependenciesMeta: 2863 + rollup: 2864 + optional: true 2865 + 1820 2866 '@rollup/pluginutils@5.3.0': 1821 2867 resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 1822 2868 engines: {node: '>=14.0.0'} ··· 1831 2877 cpu: [arm] 1832 2878 os: [android] 1833 2879 2880 + '@rollup/rollup-android-arm-eabi@4.60.4': 2881 + resolution: {integrity: sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==} 2882 + cpu: [arm] 2883 + os: [android] 2884 + 1834 2885 '@rollup/rollup-android-arm64@4.56.0': 1835 2886 resolution: {integrity: sha512-lfbVUbelYqXlYiU/HApNMJzT1E87UPGvzveGg2h0ktUNlOCxKlWuJ9jtfvs1sKHdwU4fzY7Pl8sAl49/XaEk6Q==} 2887 + cpu: [arm64] 2888 + os: [android] 2889 + 2890 + '@rollup/rollup-android-arm64@4.60.4': 2891 + resolution: {integrity: sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==} 1836 2892 cpu: [arm64] 1837 2893 os: [android] 1838 2894 ··· 1841 2897 cpu: [arm64] 1842 2898 os: [darwin] 1843 2899 2900 + '@rollup/rollup-darwin-arm64@4.60.4': 2901 + resolution: {integrity: sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==} 2902 + cpu: [arm64] 2903 + os: [darwin] 2904 + 1844 2905 '@rollup/rollup-darwin-x64@4.56.0': 1845 2906 resolution: {integrity: sha512-1vXe1vcMOssb/hOF8iv52A7feWW2xnu+c8BV4t1F//m9QVLTfNVpEdja5ia762j/UEJe2Z1jAmEqZAK42tVW3g==} 1846 2907 cpu: [x64] 1847 2908 os: [darwin] 1848 2909 2910 + '@rollup/rollup-darwin-x64@4.60.4': 2911 + resolution: {integrity: sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==} 2912 + cpu: [x64] 2913 + os: [darwin] 2914 + 1849 2915 '@rollup/rollup-freebsd-arm64@4.56.0': 1850 2916 resolution: {integrity: sha512-bof7fbIlvqsyv/DtaXSck4VYQ9lPtoWNFCB/JY4snlFuJREXfZnm+Ej6yaCHfQvofJDXLDMTVxWscVSuQvVWUQ==} 1851 2917 cpu: [arm64] 1852 2918 os: [freebsd] 1853 2919 2920 + '@rollup/rollup-freebsd-arm64@4.60.4': 2921 + resolution: {integrity: sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==} 2922 + cpu: [arm64] 2923 + os: [freebsd] 2924 + 1854 2925 '@rollup/rollup-freebsd-x64@4.56.0': 1855 2926 resolution: {integrity: sha512-KNa6lYHloW+7lTEkYGa37fpvPq+NKG/EHKM8+G/g9WDU7ls4sMqbVRV78J6LdNuVaeeK5WB9/9VAFbKxcbXKYg==} 1856 2927 cpu: [x64] 1857 2928 os: [freebsd] 1858 2929 2930 + '@rollup/rollup-freebsd-x64@4.60.4': 2931 + resolution: {integrity: sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==} 2932 + cpu: [x64] 2933 + os: [freebsd] 2934 + 1859 2935 '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 1860 2936 resolution: {integrity: sha512-E8jKK87uOvLrrLN28jnAAAChNq5LeCd2mGgZF+fGF5D507WlG/Noct3lP/QzQ6MrqJ5BCKNwI9ipADB6jyiq2A==} 1861 2937 cpu: [arm] 1862 2938 os: [linux] 1863 2939 libc: [glibc] 1864 2940 2941 + '@rollup/rollup-linux-arm-gnueabihf@4.60.4': 2942 + resolution: {integrity: sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==} 2943 + cpu: [arm] 2944 + os: [linux] 2945 + libc: [glibc] 2946 + 1865 2947 '@rollup/rollup-linux-arm-musleabihf@4.56.0': 1866 2948 resolution: {integrity: sha512-jQosa5FMYF5Z6prEpTCCmzCXz6eKr/tCBssSmQGEeozA9tkRUty/5Vx06ibaOP9RCrW1Pvb8yp3gvZhHwTDsJw==} 1867 2949 cpu: [arm] 1868 2950 os: [linux] 1869 2951 libc: [musl] 1870 2952 2953 + '@rollup/rollup-linux-arm-musleabihf@4.60.4': 2954 + resolution: {integrity: sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==} 2955 + cpu: [arm] 2956 + os: [linux] 2957 + libc: [musl] 2958 + 1871 2959 '@rollup/rollup-linux-arm64-gnu@4.56.0': 1872 2960 resolution: {integrity: sha512-uQVoKkrC1KGEV6udrdVahASIsaF8h7iLG0U0W+Xn14ucFwi6uS539PsAr24IEF9/FoDtzMeeJXJIBo5RkbNWvQ==} 1873 2961 cpu: [arm64] 1874 2962 os: [linux] 1875 2963 libc: [glibc] 1876 2964 2965 + '@rollup/rollup-linux-arm64-gnu@4.60.4': 2966 + resolution: {integrity: sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==} 2967 + cpu: [arm64] 2968 + os: [linux] 2969 + libc: [glibc] 2970 + 1877 2971 '@rollup/rollup-linux-arm64-musl@4.56.0': 1878 2972 resolution: {integrity: sha512-vLZ1yJKLxhQLFKTs42RwTwa6zkGln+bnXc8ueFGMYmBTLfNu58sl5/eXyxRa2RarTkJbXl8TKPgfS6V5ijNqEA==} 1879 2973 cpu: [arm64] 1880 2974 os: [linux] 1881 2975 libc: [musl] 1882 2976 2977 + '@rollup/rollup-linux-arm64-musl@4.60.4': 2978 + resolution: {integrity: sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==} 2979 + cpu: [arm64] 2980 + os: [linux] 2981 + libc: [musl] 2982 + 1883 2983 '@rollup/rollup-linux-loong64-gnu@4.56.0': 1884 2984 resolution: {integrity: sha512-FWfHOCub564kSE3xJQLLIC/hbKqHSVxy8vY75/YHHzWvbJL7aYJkdgwD/xGfUlL5UV2SB7otapLrcCj2xnF1dg==} 2985 + cpu: [loong64] 2986 + os: [linux] 2987 + libc: [glibc] 2988 + 2989 + '@rollup/rollup-linux-loong64-gnu@4.60.4': 2990 + resolution: {integrity: sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==} 1885 2991 cpu: [loong64] 1886 2992 os: [linux] 1887 2993 libc: [glibc] ··· 1892 2998 os: [linux] 1893 2999 libc: [musl] 1894 3000 3001 + '@rollup/rollup-linux-loong64-musl@4.60.4': 3002 + resolution: {integrity: sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==} 3003 + cpu: [loong64] 3004 + os: [linux] 3005 + libc: [musl] 3006 + 1895 3007 '@rollup/rollup-linux-ppc64-gnu@4.56.0': 1896 3008 resolution: {integrity: sha512-iNFTluqgdoQC7AIE8Q34R3AuPrJGJirj5wMUErxj22deOcY7XwZRaqYmB6ZKFHoVGqRcRd0mqO+845jAibKCkw==} 1897 3009 cpu: [ppc64] 1898 3010 os: [linux] 1899 3011 libc: [glibc] 1900 3012 3013 + '@rollup/rollup-linux-ppc64-gnu@4.60.4': 3014 + resolution: {integrity: sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==} 3015 + cpu: [ppc64] 3016 + os: [linux] 3017 + libc: [glibc] 3018 + 1901 3019 '@rollup/rollup-linux-ppc64-musl@4.56.0': 1902 3020 resolution: {integrity: sha512-MtMeFVlD2LIKjp2sE2xM2slq3Zxf9zwVuw0jemsxvh1QOpHSsSzfNOTH9uYW9i1MXFxUSMmLpeVeUzoNOKBaWg==} 1903 3021 cpu: [ppc64] 1904 3022 os: [linux] 1905 3023 libc: [musl] 1906 3024 3025 + '@rollup/rollup-linux-ppc64-musl@4.60.4': 3026 + resolution: {integrity: sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==} 3027 + cpu: [ppc64] 3028 + os: [linux] 3029 + libc: [musl] 3030 + 1907 3031 '@rollup/rollup-linux-riscv64-gnu@4.56.0': 1908 3032 resolution: {integrity: sha512-in+v6wiHdzzVhYKXIk5U74dEZHdKN9KH0Q4ANHOTvyXPG41bajYRsy7a8TPKbYPl34hU7PP7hMVHRvv/5aCSew==} 1909 3033 cpu: [riscv64] 1910 3034 os: [linux] 1911 3035 libc: [glibc] 1912 3036 3037 + '@rollup/rollup-linux-riscv64-gnu@4.60.4': 3038 + resolution: {integrity: sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==} 3039 + cpu: [riscv64] 3040 + os: [linux] 3041 + libc: [glibc] 3042 + 1913 3043 '@rollup/rollup-linux-riscv64-musl@4.56.0': 1914 3044 resolution: {integrity: sha512-yni2raKHB8m9NQpI9fPVwN754mn6dHQSbDTwxdr9SE0ks38DTjLMMBjrwvB5+mXrX+C0npX0CVeCUcvvvD8CNQ==} 1915 3045 cpu: [riscv64] 1916 3046 os: [linux] 1917 3047 libc: [musl] 1918 3048 3049 + '@rollup/rollup-linux-riscv64-musl@4.60.4': 3050 + resolution: {integrity: sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==} 3051 + cpu: [riscv64] 3052 + os: [linux] 3053 + libc: [musl] 3054 + 1919 3055 '@rollup/rollup-linux-s390x-gnu@4.56.0': 1920 3056 resolution: {integrity: sha512-zhLLJx9nQPu7wezbxt2ut+CI4YlXi68ndEve16tPc/iwoylWS9B3FxpLS2PkmfYgDQtosah07Mj9E0khc3Y+vQ==} 1921 3057 cpu: [s390x] 1922 3058 os: [linux] 1923 3059 libc: [glibc] 1924 3060 3061 + '@rollup/rollup-linux-s390x-gnu@4.60.4': 3062 + resolution: {integrity: sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==} 3063 + cpu: [s390x] 3064 + os: [linux] 3065 + libc: [glibc] 3066 + 1925 3067 '@rollup/rollup-linux-x64-gnu@4.56.0': 1926 3068 resolution: {integrity: sha512-MVC6UDp16ZSH7x4rtuJPAEoE1RwS8N4oK9DLHy3FTEdFoUTCFVzMfJl/BVJ330C+hx8FfprA5Wqx4FhZXkj2Kw==} 1927 3069 cpu: [x64] 1928 3070 os: [linux] 1929 3071 libc: [glibc] 1930 3072 3073 + '@rollup/rollup-linux-x64-gnu@4.60.4': 3074 + resolution: {integrity: sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==} 3075 + cpu: [x64] 3076 + os: [linux] 3077 + libc: [glibc] 3078 + 1931 3079 '@rollup/rollup-linux-x64-musl@4.56.0': 1932 3080 resolution: {integrity: sha512-ZhGH1eA4Qv0lxaV00azCIS1ChedK0V32952Md3FtnxSqZTBTd6tgil4nZT5cU8B+SIw3PFYkvyR4FKo2oyZIHA==} 1933 3081 cpu: [x64] 1934 3082 os: [linux] 1935 3083 libc: [musl] 1936 3084 3085 + '@rollup/rollup-linux-x64-musl@4.60.4': 3086 + resolution: {integrity: sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==} 3087 + cpu: [x64] 3088 + os: [linux] 3089 + libc: [musl] 3090 + 1937 3091 '@rollup/rollup-openbsd-x64@4.56.0': 1938 3092 resolution: {integrity: sha512-O16XcmyDeFI9879pEcmtWvD/2nyxR9mF7Gs44lf1vGGx8Vg2DRNx11aVXBEqOQhWb92WN4z7fW/q4+2NYzCbBA==} 1939 3093 cpu: [x64] 1940 3094 os: [openbsd] 1941 3095 3096 + '@rollup/rollup-openbsd-x64@4.60.4': 3097 + resolution: {integrity: sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==} 3098 + cpu: [x64] 3099 + os: [openbsd] 3100 + 1942 3101 '@rollup/rollup-openharmony-arm64@4.56.0': 1943 3102 resolution: {integrity: sha512-LhN/Reh+7F3RCgQIRbgw8ZMwUwyqJM+8pXNT6IIJAqm2IdKkzpCh/V9EdgOMBKuebIrzswqy4ATlrDgiOwbRcQ==} 1944 3103 cpu: [arm64] 1945 3104 os: [openharmony] 1946 3105 3106 + '@rollup/rollup-openharmony-arm64@4.60.4': 3107 + resolution: {integrity: sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==} 3108 + cpu: [arm64] 3109 + os: [openharmony] 3110 + 1947 3111 '@rollup/rollup-win32-arm64-msvc@4.56.0': 1948 3112 resolution: {integrity: sha512-kbFsOObXp3LBULg1d3JIUQMa9Kv4UitDmpS+k0tinPBz3watcUiV2/LUDMMucA6pZO3WGE27P7DsfaN54l9ing==} 1949 3113 cpu: [arm64] 1950 3114 os: [win32] 1951 3115 3116 + '@rollup/rollup-win32-arm64-msvc@4.60.4': 3117 + resolution: {integrity: sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==} 3118 + cpu: [arm64] 3119 + os: [win32] 3120 + 1952 3121 '@rollup/rollup-win32-ia32-msvc@4.56.0': 1953 3122 resolution: {integrity: sha512-vSSgny54D6P4vf2izbtFm/TcWYedw7f8eBrOiGGecyHyQB9q4Kqentjaj8hToe+995nob/Wv48pDqL5a62EWtg==} 1954 3123 cpu: [ia32] 1955 3124 os: [win32] 1956 3125 3126 + '@rollup/rollup-win32-ia32-msvc@4.60.4': 3127 + resolution: {integrity: sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==} 3128 + cpu: [ia32] 3129 + os: [win32] 3130 + 1957 3131 '@rollup/rollup-win32-x64-gnu@4.56.0': 1958 3132 resolution: {integrity: sha512-FeCnkPCTHQJFbiGG49KjV5YGW/8b9rrXAM2Mz2kiIoktq2qsJxRD5giEMEOD2lPdgs72upzefaUvS+nc8E3UzQ==} 1959 3133 cpu: [x64] 1960 3134 os: [win32] 1961 3135 3136 + '@rollup/rollup-win32-x64-gnu@4.60.4': 3137 + resolution: {integrity: sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==} 3138 + cpu: [x64] 3139 + os: [win32] 3140 + 1962 3141 '@rollup/rollup-win32-x64-msvc@4.56.0': 1963 3142 resolution: {integrity: sha512-H8AE9Ur/t0+1VXujj90w0HrSOuv0Nq9r1vSZF2t5km20NTfosQsGGUXDaKdQZzwuLts7IyL1fYT4hM95TI9c4g==} 1964 3143 cpu: [x64] 1965 3144 os: [win32] 1966 3145 3146 + '@rollup/rollup-win32-x64-msvc@4.60.4': 3147 + resolution: {integrity: sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==} 3148 + cpu: [x64] 3149 + os: [win32] 3150 + 3151 + '@simple-git/args-pathspec@1.0.3': 3152 + resolution: {integrity: sha512-ngJMaHlsWDTfjyq9F3VIQ8b7NXbBLq5j9i5bJ6XLYtD6qlDXT7fdKY2KscWWUF8t18xx052Y/PUO1K1TRc9yKA==} 3153 + 3154 + '@simple-git/argv-parser@1.1.1': 3155 + resolution: {integrity: sha512-Q9lBcfQ+VQCpQqGJFHe5yooOS5hGdLFFbJ5R+R5aDsnkPCahtn1hSkMcORX65J2Z5lxSkD0lQorMsncuBQxYUw==} 3156 + 1967 3157 '@sindresorhus/base62@1.0.0': 1968 3158 resolution: {integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA==} 1969 3159 engines: {node: '>=18'} 1970 3160 3161 + '@sindresorhus/is@7.2.0': 3162 + resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==} 3163 + engines: {node: '>=18'} 3164 + 3165 + '@sindresorhus/merge-streams@4.0.0': 3166 + resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} 3167 + engines: {node: '>=18'} 3168 + 3169 + '@speed-highlight/core@1.2.15': 3170 + resolution: {integrity: sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==} 3171 + 1971 3172 '@standard-schema/spec@1.1.0': 1972 3173 resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 1973 3174 ··· 2016 3217 '@types/js-cookie@3.0.6': 2017 3218 resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==} 2018 3219 3220 + '@types/jsesc@2.5.1': 3221 + resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} 3222 + 2019 3223 '@types/json-schema@7.0.15': 2020 3224 resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 2021 3225 ··· 2061 3265 '@types/web-bluetooth@0.0.21': 2062 3266 resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} 2063 3267 3268 + '@types/whatwg-mimetype@3.0.2': 3269 + resolution: {integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==} 3270 + 2064 3271 '@types/ws@8.18.1': 2065 3272 resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} 2066 3273 ··· 2173 3380 resolution: {integrity: sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==} 2174 3381 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2175 3382 3383 + '@unhead/vue@2.1.15': 3384 + resolution: {integrity: sha512-SSByXfEjhzPn8gXdEdgpYqpLMPSkLUH2HVE0GxZfOtNsJ0GgOHQs0g9T67ZZ1z0kTELLKdtOtYrzrbv9+ffF7g==} 3385 + peerDependencies: 3386 + vue: '>=3.5.18' 3387 + 3388 + '@vercel/nft@1.5.0': 3389 + resolution: {integrity: sha512-IWTDeIoWhQ7ZtRO/JRKH+jhmeQvZYhtGPmzw/QGDY+wDCQqfm25P9yIdoAFagu4fWsK4IwZXDFIjrmp5rRm/sA==} 3390 + engines: {node: '>=20'} 3391 + hasBin: true 3392 + 3393 + '@vitejs/plugin-vue-jsx@5.1.5': 3394 + resolution: {integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA==} 3395 + engines: {node: ^20.19.0 || >=22.12.0} 3396 + peerDependencies: 3397 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 3398 + vue: ^3.0.0 3399 + 2176 3400 '@vitejs/plugin-vue@6.0.7': 2177 3401 resolution: {integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==} 2178 3402 engines: {node: ^20.19.0 || >=22.12.0} ··· 2255 3479 resolution: {integrity: sha512-icXQSR6SeGL6kr9koJw9zkDZqWyFXgpJG8kTaDydjZhy9/V0MQB9tYyibvRgJHlk98SDJJhPLCouTdqOdn+riw==} 2256 3480 engines: {node: '>=18.0.0'} 2257 3481 2258 - '@vue/compiler-core@3.5.33': 2259 - resolution: {integrity: sha512-3PZLQwFw4Za3TC8t0FvTy3wI16Kt+pmwcgNZca4Pj9iWL2E72a/gZlpBtAJvEdDMdCxdG/qq0C7PN0bsJuv0Rw==} 3482 + '@vue-macros/common@3.1.2': 3483 + resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==} 3484 + engines: {node: '>=20.19.0'} 3485 + peerDependencies: 3486 + vue: ^2.7.0 || ^3.2.25 3487 + peerDependenciesMeta: 3488 + vue: 3489 + optional: true 3490 + 3491 + '@vue/babel-helper-vue-transform-on@2.0.1': 3492 + resolution: {integrity: sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==} 3493 + 3494 + '@vue/babel-plugin-jsx@2.0.1': 3495 + resolution: {integrity: sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==} 3496 + peerDependencies: 3497 + '@babel/core': ^7.0.0-0 3498 + peerDependenciesMeta: 3499 + '@babel/core': 3500 + optional: true 3501 + 3502 + '@vue/babel-plugin-resolve-type@2.0.1': 3503 + resolution: {integrity: sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==} 3504 + peerDependencies: 3505 + '@babel/core': ^7.0.0-0 2260 3506 2261 3507 '@vue/compiler-core@3.5.34': 2262 3508 resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==} 2263 - 2264 - '@vue/compiler-dom@3.5.33': 2265 - resolution: {integrity: sha512-PXq0yrfCLzzL07rbXO4awtXY1Z06LG2eu6Adg3RJFa/j3Cii217XxxLXG22N330gw7GmALCY0Z8RgXEviwgpjA==} 2266 3509 2267 3510 '@vue/compiler-dom@3.5.34': 2268 3511 resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==} ··· 2273 3516 '@vue/compiler-ssr@3.5.34': 2274 3517 resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==} 2275 3518 3519 + '@vue/devtools-api@8.1.2': 3520 + resolution: {integrity: sha512-vA0O112YqyDuNA1s7Yb2gCgToQ/OxOWiFDO5ThLCcDy0ldHnSd1dUTaSYhOldbqoNgumE4dxtGAoAaSUKUD1Zg==} 3521 + 3522 + '@vue/devtools-core@8.1.2': 3523 + resolution: {integrity: sha512-ZGGyaSBP4/+bN2Nd9ZHNYAVDRIzMw1rv2RyXWtyZlo6mQal+IDmTvKY4V+DjAEBhaXt30mHmsgYp1yXJ/2tIWg==} 3524 + peerDependencies: 3525 + vue: ^3.0.0 3526 + 3527 + '@vue/devtools-kit@8.1.2': 3528 + resolution: {integrity: sha512-f75/upc+GCyjXErpgPGz4582ujS0L/adAltGy+tqXMGUJpgAcfGr6CxnnhpZY8BHuMYt6KpbF8uaFrrQG66rGQ==} 3529 + 3530 + '@vue/devtools-shared@8.1.2': 3531 + resolution: {integrity: sha512-X9RyVFYAdkBe4IUf5v48TxBF/6QPmF8CmWrDAjXzfUHrgQ/HGfTC1A6TqgXqZ03ye66l3AD51BAGD69IvKM9sw==} 3532 + 2276 3533 '@vue/language-core@3.2.8': 2277 3534 resolution: {integrity: sha512-9OiSPQFiAAWNVnXb0d2dcTmcKnFQamhuNES6ayyISrb/mwPWVgoGdAqSfCWqKhQpa3D5gDTcYD+w7ObiheZ81g==} 2278 3535 ··· 2289 3546 resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==} 2290 3547 peerDependencies: 2291 3548 vue: 3.5.34 2292 - 2293 - '@vue/shared@3.5.33': 2294 - resolution: {integrity: sha512-5vR2QIlmaLG77Ygd4pMP6+SGQ5yox9VhtnbDWTy9DzMzdmeLxZ1QqxrywEZ9sa1AVubfIJyaCG3ytyWU81ufcQ==} 2295 3549 2296 3550 '@vue/shared@3.5.34': 2297 3551 resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==} ··· 2362 3616 peerDependencies: 2363 3617 vue: ^3.5.0 2364 3618 3619 + abbrev@3.0.1: 3620 + resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} 3621 + engines: {node: ^18.17.0 || >=20.5.0} 3622 + 3623 + abort-controller@3.0.0: 3624 + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 3625 + engines: {node: '>=6.5'} 3626 + 2365 3627 abstract-logging@2.0.1: 2366 3628 resolution: {integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==} 2367 3629 ··· 2433 3695 resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} 2434 3696 engines: {node: '>=14'} 2435 3697 3698 + anymatch@3.1.3: 3699 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 3700 + engines: {node: '>= 8'} 3701 + 3702 + archiver-utils@5.0.2: 3703 + resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} 3704 + engines: {node: '>= 14'} 3705 + 3706 + archiver@7.0.1: 3707 + resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} 3708 + engines: {node: '>= 14'} 3709 + 2436 3710 are-docs-informative@0.0.2: 2437 3711 resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} 2438 3712 engines: {node: '>=14'} ··· 2447 3721 assertion-error@2.0.1: 2448 3722 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 2449 3723 engines: {node: '>=12'} 3724 + 3725 + ast-kit@2.2.0: 3726 + resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==} 3727 + engines: {node: '>=20.19.0'} 2450 3728 2451 3729 ast-v8-to-istanbul@1.0.0: 2452 3730 resolution: {integrity: sha512-1fSfIwuDICFA4LKkCzRPO7F0hzFf0B7+Xqrl27ynQaa+Rh0e1Es0v6kWHPott3lU10AyAr7oKHa65OppjLn3Rg==} 2453 3731 3732 + ast-walker-scope@0.8.3: 3733 + resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==} 3734 + engines: {node: '>=20.19.0'} 3735 + 3736 + async-sema@3.1.1: 3737 + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} 3738 + 3739 + async@3.2.6: 3740 + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 3741 + 2454 3742 atomic-sleep@1.0.0: 2455 3743 resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 2456 3744 engines: {node: '>=8.0.0'} ··· 2462 3750 peerDependencies: 2463 3751 postcss: ^8.1.0 2464 3752 3753 + autoprefixer@10.5.0: 3754 + resolution: {integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==} 3755 + engines: {node: ^10 || ^12 || >=14} 3756 + hasBin: true 3757 + peerDependencies: 3758 + postcss: ^8.1.0 3759 + 2465 3760 available-typed-arrays@1.0.7: 2466 3761 resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 2467 3762 engines: {node: '>= 0.4'} ··· 2469 3764 avvio@9.2.0: 2470 3765 resolution: {integrity: sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==} 2471 3766 3767 + b4a@1.8.1: 3768 + resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==} 3769 + peerDependencies: 3770 + react-native-b4a: '*' 3771 + peerDependenciesMeta: 3772 + react-native-b4a: 3773 + optional: true 3774 + 2472 3775 balanced-match@1.0.2: 2473 3776 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 2474 3777 2475 3778 balanced-match@4.0.4: 2476 3779 resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} 2477 3780 engines: {node: 18 || 20 || >=22} 3781 + 3782 + bare-events@2.8.3: 3783 + resolution: {integrity: sha512-HdUm8EMQBLaJvGUdidNNbqpA1kYkwNcb+MYxkxCLAPJGQzlv9J0C24h8V65Z4c5GLd/JEALDvpFCQgpLJqc0zw==} 3784 + peerDependencies: 3785 + bare-abort-controller: '*' 3786 + peerDependenciesMeta: 3787 + bare-abort-controller: 3788 + optional: true 3789 + 3790 + bare-fs@4.7.1: 3791 + resolution: {integrity: sha512-WDRsyVN52eAx/lBamKD6uyw8H4228h/x0sGGGegOamM2cd7Pag88GfMQalobXI+HaEUxpCkbKQUDOQqt9wawRw==} 3792 + engines: {bare: '>=1.16.0'} 3793 + peerDependencies: 3794 + bare-buffer: '*' 3795 + peerDependenciesMeta: 3796 + bare-buffer: 3797 + optional: true 3798 + 3799 + bare-os@3.9.1: 3800 + resolution: {integrity: sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==} 3801 + engines: {bare: '>=1.14.0'} 3802 + 3803 + bare-path@3.0.0: 3804 + resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} 3805 + 3806 + bare-stream@2.13.1: 3807 + resolution: {integrity: sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==} 3808 + peerDependencies: 3809 + bare-abort-controller: '*' 3810 + bare-buffer: '*' 3811 + bare-events: '*' 3812 + peerDependenciesMeta: 3813 + bare-abort-controller: 3814 + optional: true 3815 + bare-buffer: 3816 + optional: true 3817 + bare-events: 3818 + optional: true 3819 + 3820 + bare-url@2.4.3: 3821 + resolution: {integrity: sha512-Kccpc7ACfXaxfeInfqKcZtW4pT5YBn1mesc4sCsun6sRwtbJ4h+sNOaksUpYEJUKfN65YWC6Bw2OJEFiKxq8nQ==} 2478 3822 2479 3823 base64-js@1.5.1: 2480 3824 resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} ··· 2494 3838 bindings@1.5.0: 2495 3839 resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} 2496 3840 3841 + birpc@2.9.0: 3842 + resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==} 3843 + 3844 + birpc@4.0.0: 3845 + resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} 3846 + 2497 3847 bl@4.1.0: 2498 3848 resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 2499 3849 ··· 2507 3857 resolution: {integrity: sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==} 2508 3858 engines: {node: 18 || 20 || >=22} 2509 3859 3860 + braces@3.0.3: 3861 + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 3862 + engines: {node: '>=8'} 3863 + 2510 3864 browserslist@4.28.2: 2511 3865 resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==} 2512 3866 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 2513 3867 hasBin: true 2514 3868 3869 + buffer-crc32@1.0.0: 3870 + resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} 3871 + engines: {node: '>=8.0.0'} 3872 + 3873 + buffer-from@1.1.2: 3874 + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 3875 + 2515 3876 buffer@5.7.1: 2516 3877 resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 2517 3878 3879 + buffer@6.0.3: 3880 + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 3881 + 2518 3882 buffered-async-iterable@1.0.1: 2519 3883 resolution: {integrity: sha512-QqoUm0XP17Bu6zzyvpK92K7jNYMoFYgKM0ZKr0OkoDlElpTTeucGmdJL8I7W+reFIfvgUWOm1PgJC+OxM2lMEQ==} 2520 3884 engines: {node: '>=18.6.0'} ··· 2523 3887 resolution: {integrity: sha512-c5JxaDrzwRjq3WyJkI1AGR5xy6Gr6udlt7sQPbl09+3ckB+Zo2qqQ2KhCTBr7Q8dHB43bENGYEk4xddrFH/b7A==} 2524 3888 engines: {node: '>=18.20'} 2525 3889 3890 + bundle-name@4.1.0: 3891 + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} 3892 + engines: {node: '>=18'} 3893 + 3894 + c12@3.3.4: 3895 + resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==} 3896 + peerDependencies: 3897 + magicast: '*' 3898 + peerDependenciesMeta: 3899 + magicast: 3900 + optional: true 3901 + 3902 + cac@6.7.14: 3903 + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 3904 + engines: {node: '>=8'} 3905 + 2526 3906 cac@7.0.0: 2527 3907 resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} 2528 3908 engines: {node: '>=20.19.0'} ··· 2578 3958 resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 2579 3959 engines: {node: '>= 14.16.0'} 2580 3960 3961 + chokidar@5.0.0: 3962 + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} 3963 + engines: {node: '>= 20.19.0'} 3964 + 2581 3965 chownr@1.1.4: 2582 3966 resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 3967 + 3968 + chownr@3.0.0: 3969 + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 3970 + engines: {node: '>=18'} 2583 3971 2584 3972 ci-info@4.4.0: 2585 3973 resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} ··· 2588 3976 citty@0.1.6: 2589 3977 resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 2590 3978 3979 + citty@0.2.2: 3980 + resolution: {integrity: sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==} 3981 + 2591 3982 cjs-module-lexer@1.4.3: 2592 3983 resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} 2593 3984 ··· 2599 3990 resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2600 3991 engines: {node: '>=12'} 2601 3992 3993 + cliui@9.0.1: 3994 + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} 3995 + engines: {node: '>=20'} 3996 + 2602 3997 cloudevents@10.0.0: 2603 3998 resolution: {integrity: sha512-uyzC+PpMMRawbouHO+3mlisr3QfEDObmo2pN4oTTF6dZncZgpIzdasZx0tRBFI1dMsqCLZZXMtz8cUuvYqHdbw==} 2604 3999 engines: {node: '>=20 <=24'} 4000 + 4001 + cluster-key-slot@1.1.2: 4002 + resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} 4003 + engines: {node: '>=0.10.0'} 2605 4004 2606 4005 color-convert@2.0.1: 2607 4006 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} ··· 2630 4029 resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} 2631 4030 engines: {node: '>=16'} 2632 4031 4032 + commander@2.20.3: 4033 + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 4034 + 2633 4035 commander@8.3.0: 2634 4036 resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 2635 4037 engines: {node: '>= 12'} ··· 2648 4050 compare-utf8@0.2.0: 2649 4051 resolution: {integrity: sha512-5BjVs4Be9AwMm4le3Qb3crp44OAn+uuJhvrjPWA8Es/DfVPq5lSc8JaRg/clrrHOMCU+CdDfv/9eBSPh6OOiUQ==} 2650 4052 4053 + compatx@0.2.0: 4054 + resolution: {integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==} 4055 + 4056 + compress-commons@6.0.2: 4057 + resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} 4058 + engines: {node: '>= 14'} 4059 + 2651 4060 confbox@0.1.8: 2652 4061 resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 2653 4062 ··· 2661 4070 convert-source-map@2.0.0: 2662 4071 resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 2663 4072 4073 + cookie-es@1.2.3: 4074 + resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==} 4075 + 4076 + cookie-es@2.0.1: 4077 + resolution: {integrity: sha512-aVf4A4hI2w70LnF7GG+7xDQUkliwiXWXFvTjkip4+b64ygDQ2sJPRSKFDHbxn8o0xu9QzPkMuuiWIXyFSE2slA==} 4078 + 4079 + cookie-es@3.1.1: 4080 + resolution: {integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg==} 4081 + 2664 4082 cookie@1.1.1: 2665 4083 resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} 2666 4084 engines: {node: '>=18'} ··· 2668 4086 core-js-compat@3.49.0: 2669 4087 resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==} 2670 4088 4089 + core-util-is@1.0.3: 4090 + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 4091 + 4092 + crc-32@1.2.2: 4093 + resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} 4094 + engines: {node: '>=0.8'} 4095 + hasBin: true 4096 + 4097 + crc32-stream@6.0.0: 4098 + resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} 4099 + engines: {node: '>= 14'} 4100 + 4101 + croner@10.0.1: 4102 + resolution: {integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==} 4103 + engines: {node: '>=18.0'} 4104 + 2671 4105 cross-spawn@7.0.6: 2672 4106 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 2673 4107 engines: {node: '>= 8'} 4108 + 4109 + crossws@0.3.5: 4110 + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 4111 + 4112 + crossws@0.4.5: 4113 + resolution: {integrity: sha512-wUR89x/Rw7/8t+vn0CmGDYM9TD6VtARGb0LD5jq2wjtMy1vCP4M+sm6N6TigWeTYvnA8MoW29NqqXD0ep0rfBA==} 4114 + peerDependencies: 4115 + srvx: '>=0.11.5' 4116 + peerDependenciesMeta: 4117 + srvx: 4118 + optional: true 2674 4119 2675 4120 css-declaration-sorter@7.3.1: 2676 4121 resolution: {integrity: sha512-gz6x+KkgNCjxq3Var03pRYLhyNfwhkKF1g/yoLgDNtFvVu0/fOLV9C8fFEZRjACp/XQLumjAYo7JVjzH3wLbxA==} ··· 2704 4149 peerDependencies: 2705 4150 postcss: ^8.4.32 2706 4151 4152 + cssnano-preset-default@8.0.1: 4153 + resolution: {integrity: sha512-OTdKeYMlvQ8KBgyej5ysktnWJoeyo7rGrVnm+bdpIHGvxhbTGPsOkB+7T1EdTuX00dGlQQb2UEbSPB1OpMXULw==} 4154 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 4155 + peerDependencies: 4156 + postcss: ^8.5.14 4157 + 2707 4158 cssnano-utils@5.0.1: 2708 4159 resolution: {integrity: sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==} 2709 4160 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 2710 4161 peerDependencies: 2711 4162 postcss: ^8.4.32 2712 4163 4164 + cssnano-utils@6.0.0: 4165 + resolution: {integrity: sha512-ztS9W/+uaDn+bkYmDhs+GdMveHJ3CL8IPNHpRqDUQXv5GJOTQAJjV1XUOInr9esLXSabQV1pLRZlJpyUwEqDyQ==} 4166 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 4167 + peerDependencies: 4168 + postcss: ^8.5.14 4169 + 2713 4170 cssnano@7.1.2: 2714 4171 resolution: {integrity: sha512-HYOPBsNvoiFeR1eghKD5C3ASm64v9YVyJB4Ivnl2gqKoQYvjjN/G0rztvKQq8OxocUtC6sjqY8jwYngIB4AByA==} 2715 4172 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 2716 4173 peerDependencies: 2717 4174 postcss: ^8.4.32 2718 4175 4176 + cssnano@8.0.1: 4177 + resolution: {integrity: sha512-oSiOnPQNNYjusTUlYJiE6xvFQG4don3N0QavaoV1BxIsC1zjvxOwikXlR7lG1EVmZNDDaJkHbQx1VRB8kaoMHA==} 4178 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 4179 + peerDependencies: 4180 + postcss: ^8.5.14 4181 + 2719 4182 csso@5.0.5: 2720 4183 resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} 2721 4184 engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} ··· 2723 4186 csstype@3.2.3: 2724 4187 resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} 2725 4188 4189 + db0@0.3.4: 4190 + resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==} 4191 + peerDependencies: 4192 + '@electric-sql/pglite': '*' 4193 + '@libsql/client': '*' 4194 + better-sqlite3: '*' 4195 + drizzle-orm: '*' 4196 + mysql2: '*' 4197 + sqlite3: '*' 4198 + peerDependenciesMeta: 4199 + '@electric-sql/pglite': 4200 + optional: true 4201 + '@libsql/client': 4202 + optional: true 4203 + better-sqlite3: 4204 + optional: true 4205 + drizzle-orm: 4206 + optional: true 4207 + mysql2: 4208 + optional: true 4209 + sqlite3: 4210 + optional: true 4211 + 2726 4212 debug@4.4.3: 2727 4213 resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 2728 4214 engines: {node: '>=6.0'} ··· 2750 4236 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 2751 4237 engines: {node: '>=0.10.0'} 2752 4238 4239 + default-browser-id@5.0.1: 4240 + resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} 4241 + engines: {node: '>=18'} 4242 + 4243 + default-browser@5.5.0: 4244 + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} 4245 + engines: {node: '>=18'} 4246 + 2753 4247 define-data-property@1.1.4: 2754 4248 resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2755 4249 engines: {node: '>= 0.4'} 2756 4250 4251 + define-lazy-prop@3.0.0: 4252 + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 4253 + engines: {node: '>=12'} 4254 + 2757 4255 defu@6.1.7: 2758 4256 resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} 2759 4257 4258 + denque@2.1.0: 4259 + resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} 4260 + engines: {node: '>=0.10'} 4261 + 4262 + depd@2.0.0: 4263 + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 4264 + engines: {node: '>= 0.8'} 4265 + 2760 4266 dequal@2.0.3: 2761 4267 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2762 4268 engines: {node: '>=6'} 2763 4269 4270 + destr@2.0.5: 4271 + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 4272 + 2764 4273 detect-libc@2.1.2: 2765 4274 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 2766 4275 engines: {node: '>=8'} 2767 4276 4277 + devalue@5.8.1: 4278 + resolution: {integrity: sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw==} 4279 + 2768 4280 devlop@1.1.0: 2769 4281 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 2770 4282 2771 4283 diff-sequences@29.6.3: 2772 4284 resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} 2773 4285 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4286 + 4287 + diff@8.0.4: 4288 + resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==} 4289 + engines: {node: '>=0.3.1'} 2774 4290 2775 4291 dom-serializer@2.0.0: 2776 4292 resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} ··· 2785 4301 domutils@3.2.2: 2786 4302 resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 2787 4303 4304 + dot-prop@10.1.0: 4305 + resolution: {integrity: sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q==} 4306 + engines: {node: '>=20'} 4307 + 2788 4308 dotenv@17.4.2: 2789 4309 resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==} 2790 4310 engines: {node: '>=12'} ··· 2793 4313 resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 2794 4314 engines: {node: '>= 0.4'} 2795 4315 4316 + duplexer@0.1.2: 4317 + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 4318 + 2796 4319 duplexify@4.1.3: 2797 4320 resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} 2798 4321 ··· 2803 4326 resolution: {integrity: sha512-wG99Zcfcys9fZux7Cft8BAX/YrOJLJSZ3jyYPfhZHqN2E+Ffx+QXBDsv3gubEgPtV6dTzJMSQUwk1H98/t/0wQ==} 2804 4327 engines: {bun: '>=1', deno: '>=2', node: '>=16'} 2805 4328 4329 + ee-first@1.1.1: 4330 + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 4331 + 2806 4332 electron-to-chromium@1.5.344: 2807 4333 resolution: {integrity: sha512-4MxfbmNDm+KPh066EZy+eUnkcDPcZ35wNmOWzFuh/ijvHsve6kbLTLURy88uCNK5FbpN+yk2nQY6BYh1GEt+wg==} 4334 + 4335 + emoji-regex@10.6.0: 4336 + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} 2808 4337 2809 4338 emoji-regex@8.0.0: 2810 4339 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} ··· 2816 4345 resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} 2817 4346 engines: {node: '>=14'} 2818 4347 4348 + encodeurl@2.0.0: 4349 + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 4350 + engines: {node: '>= 0.8'} 4351 + 2819 4352 end-of-stream@1.4.5: 2820 4353 resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} 2821 4354 ··· 2835 4368 resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 2836 4369 engines: {node: '>=0.12'} 2837 4370 4371 + error-stack-parser-es@1.0.5: 4372 + resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} 4373 + 4374 + errx@0.1.0: 4375 + resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==} 4376 + 2838 4377 es-define-property@1.0.1: 2839 4378 resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 2840 4379 engines: {node: '>= 0.4'} ··· 2855 4394 engines: {node: '>=18'} 2856 4395 hasBin: true 2857 4396 4397 + esbuild@0.27.7: 4398 + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} 4399 + engines: {node: '>=18'} 4400 + hasBin: true 4401 + 2858 4402 esbuild@0.28.0: 2859 4403 resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==} 2860 4404 engines: {node: '>=18'} ··· 2863 4407 escalade@3.2.0: 2864 4408 resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 2865 4409 engines: {node: '>=6'} 4410 + 4411 + escape-html@1.0.3: 4412 + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 2866 4413 2867 4414 escape-string-regexp@1.0.5: 2868 4415 resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} ··· 3080 4627 resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 3081 4628 engines: {node: '>=0.10.0'} 3082 4629 4630 + etag@1.8.1: 4631 + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 4632 + engines: {node: '>= 0.6'} 4633 + 4634 + event-target-shim@5.0.1: 4635 + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 4636 + engines: {node: '>=6'} 4637 + 3083 4638 eventemitter3@5.0.4: 3084 4639 resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} 3085 4640 4641 + events-universal@1.0.1: 4642 + resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} 4643 + 4644 + events@3.3.0: 4645 + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 4646 + engines: {node: '>=0.8.x'} 4647 + 3086 4648 execa@5.1.1: 3087 4649 resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 3088 4650 engines: {node: '>=10'} 4651 + 4652 + execa@8.0.1: 4653 + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 4654 + engines: {node: '>=16.17'} 3089 4655 3090 4656 expand-template@2.0.3: 3091 4657 resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} ··· 3101 4667 extend@3.0.2: 3102 4668 resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 3103 4669 4670 + fake-indexeddb@6.2.5: 4671 + resolution: {integrity: sha512-CGnyrvbhPlWYMngksqrSSUT1BAVP49dZocrHuK0SvtR0D5TMs5wP0o3j7jexDJW01KSadjBp1M/71o/KR3nD1w==} 4672 + engines: {node: '>=18'} 4673 + 3104 4674 fast-decode-uri-component@1.0.1: 3105 4675 resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} 3106 4676 3107 4677 fast-deep-equal@3.1.3: 3108 4678 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3109 4679 4680 + fast-fifo@1.3.2: 4681 + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 4682 + 4683 + fast-glob@3.3.3: 4684 + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 4685 + engines: {node: '>=8.6.0'} 4686 + 3110 4687 fast-json-stable-stringify@2.1.0: 3111 4688 resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 3112 4689 ··· 3116 4693 fast-levenshtein@2.0.6: 3117 4694 resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 3118 4695 4696 + fast-npm-meta@1.5.1: 4697 + resolution: {integrity: sha512-tWhw7z4jFuQgZB9tbQyUh5BY9nNd/wimM+fBLfmmJjakkJDNvbJKm0nQ5ruPKC0us1HGg7L6iBk1fxpSzcgSaA==} 4698 + hasBin: true 4699 + 3119 4700 fast-querystring@1.1.2: 3120 4701 resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} 4702 + 4703 + fast-string-truncated-width@1.2.1: 4704 + resolution: {integrity: sha512-Q9acT/+Uu3GwGj+5w/zsGuQjh9O1TyywhIwAxHudtWrgF09nHOPrvTLhQevPbttcxjr/SNN7mJmfOw/B1bXgow==} 3121 4705 3122 4706 fast-string-truncated-width@3.0.3: 3123 4707 resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==} 3124 4708 4709 + fast-string-width@1.1.0: 4710 + resolution: {integrity: sha512-O3fwIVIH5gKB38QNbdg+3760ZmGz0SZMgvwJbA1b2TGXceKE6A2cOlfogh1iw8lr049zPyd7YADHy+B7U4W9bQ==} 4711 + 3125 4712 fast-string-width@3.0.2: 3126 4713 resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==} 3127 4714 3128 4715 fast-uri@3.1.2: 3129 4716 resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==} 3130 4717 4718 + fast-wrap-ansi@0.1.6: 4719 + resolution: {integrity: sha512-HlUwET7a5gqjURj70D5jl7aC3Zmy4weA1SHUfM0JFI0Ptq987NH2TwbBFLoERhfwk+E+eaq4EK3jXoT+R3yp3w==} 4720 + 3131 4721 fast-wrap-ansi@0.2.0: 3132 4722 resolution: {integrity: sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==} 3133 4723 ··· 3161 4751 3162 4752 file-uri-to-path@1.0.0: 3163 4753 resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} 4754 + 4755 + fill-range@7.1.1: 4756 + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 4757 + engines: {node: '>=8'} 3164 4758 3165 4759 find-my-way@9.6.0: 3166 4760 resolution: {integrity: sha512-Zf4Xve4RymLl7NgaavNebZ01joJ8MfVerOG43wy7SHLO+r+K0C6d/SE0BiR7AV5V1VOCFlOP7ecdo+I4qmiHrQ==} ··· 3216 4810 fraction.js@5.3.4: 3217 4811 resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==} 3218 4812 4813 + fresh@2.0.0: 4814 + resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} 4815 + engines: {node: '>= 0.8'} 4816 + 3219 4817 fs-constants@1.0.0: 3220 4818 resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 3221 4819 ··· 3227 4825 function-bind@1.1.2: 3228 4826 resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 3229 4827 4828 + fuse.js@7.3.0: 4829 + resolution: {integrity: sha512-plz8RVjfcDedTGfVngWH1jmJvBvAwi1v2jecfDerbEnMcmOYUEEwKFTHbNoCiYyzaK2Ws8lABkTCcRSqCY1q4w==} 4830 + engines: {node: '>=10'} 4831 + 4832 + fzf@0.5.2: 4833 + resolution: {integrity: sha512-Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q==} 4834 + 3230 4835 gaxios@6.7.1: 3231 4836 resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==} 3232 4837 engines: {node: '>=14'} ··· 3239 4844 resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} 3240 4845 engines: {node: '>= 0.4'} 3241 4846 4847 + gensync@1.0.0-beta.2: 4848 + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 4849 + engines: {node: '>=6.9.0'} 4850 + 3242 4851 get-caller-file@2.0.5: 3243 4852 resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 3244 4853 engines: {node: 6.* || 8.* || >= 10.*} 3245 4854 4855 + get-east-asian-width@1.6.0: 4856 + resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==} 4857 + engines: {node: '>=18'} 4858 + 3246 4859 get-intrinsic@1.3.0: 3247 4860 resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 3248 4861 engines: {node: '>= 0.4'} 4862 + 4863 + get-port-please@3.2.0: 4864 + resolution: {integrity: sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==} 3249 4865 3250 4866 get-proto@1.0.1: 3251 4867 resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} ··· 3255 4871 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 3256 4872 engines: {node: '>=10'} 3257 4873 4874 + get-stream@8.0.1: 4875 + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 4876 + engines: {node: '>=16'} 4877 + 3258 4878 get-tsconfig@4.14.0: 3259 4879 resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} 3260 4880 4881 + giget@3.2.0: 4882 + resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==} 4883 + hasBin: true 4884 + 3261 4885 github-from-package@0.0.0: 3262 4886 resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 3263 4887 3264 4888 github-slugger@2.0.0: 3265 4889 resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 4890 + 4891 + glob-parent@5.1.2: 4892 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 4893 + engines: {node: '>= 6'} 3266 4894 3267 4895 glob-parent@6.0.2: 3268 4896 resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} ··· 3273 4901 deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me 3274 4902 hasBin: true 3275 4903 4904 + glob@13.0.6: 4905 + resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} 4906 + engines: {node: 18 || 20 || >=22} 4907 + 4908 + global-directory@4.0.1: 4909 + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} 4910 + engines: {node: '>=18'} 4911 + 3276 4912 globals@15.15.0: 3277 4913 resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} 3278 4914 engines: {node: '>=18'} ··· 3281 4917 resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==} 3282 4918 engines: {node: '>=18'} 3283 4919 4920 + globby@16.2.0: 4921 + resolution: {integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==} 4922 + engines: {node: '>=20'} 4923 + 3284 4924 globrex@0.1.2: 3285 4925 resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 3286 4926 ··· 3295 4935 graceful-fs@4.2.11: 3296 4936 resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 3297 4937 4938 + gzip-size@7.0.0: 4939 + resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==} 4940 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4941 + 4942 + h3@1.15.11: 4943 + resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==} 4944 + 4945 + h3@2.0.1-rc.20: 4946 + resolution: {integrity: sha512-28ljodXuUp0fZovdiSRq4G9OgrxCztrJe5VdYzXAB7ueRvI7pIUqLU14Xi3XqdYJ/khXjfpUOOD2EQa6CmBgsg==} 4947 + engines: {node: '>=20.11.1'} 4948 + hasBin: true 4949 + peerDependencies: 4950 + crossws: ^0.4.1 4951 + peerDependenciesMeta: 4952 + crossws: 4953 + optional: true 4954 + 4955 + happy-dom@20.9.0: 4956 + resolution: {integrity: sha512-GZZ9mKe8r646NUAf/zemnGbjYh4Bt8/MqASJY+pSm5ZDtc3YQox+4gsLI7yi1hba6o+eCsGxpHn5+iEVn31/FQ==} 4957 + engines: {node: '>=20.0.0'} 4958 + 3298 4959 has-flag@4.0.0: 3299 4960 resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 3300 4961 engines: {node: '>=8'} ··· 3317 4978 hookable@5.5.3: 3318 4979 resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 3319 4980 4981 + hookable@6.1.1: 4982 + resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==} 4983 + 3320 4984 hosted-git-info@7.0.2: 3321 4985 resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} 3322 4986 engines: {node: ^16.14.0 || >=18.0.0} ··· 3327 4991 html-escaper@2.0.2: 3328 4992 resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 3329 4993 4994 + http-errors@2.0.1: 4995 + resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==} 4996 + engines: {node: '>= 0.8'} 4997 + 4998 + http-shutdown@1.2.2: 4999 + resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} 5000 + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} 5001 + 3330 5002 https-proxy-agent@7.0.6: 3331 5003 resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} 3332 5004 engines: {node: '>= 14'} 3333 5005 5006 + httpxy@0.5.3: 5007 + resolution: {integrity: sha512-SMS9V6Sn7VWaS11lYhoAr0ceoaiolTWf4jYdJn0NJhCdKMu9R2H9Fh0LBDWBHQF6HRLI1PmaePYsjanSpE5PEw==} 5008 + 3334 5009 human-signals@2.1.0: 3335 5010 resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 3336 5011 engines: {node: '>=10.17.0'} 3337 5012 5013 + human-signals@5.0.0: 5014 + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 5015 + engines: {node: '>=16.17.0'} 5016 + 3338 5017 ieee754@1.2.1: 3339 5018 resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 3340 5019 ··· 3346 5025 resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 3347 5026 engines: {node: '>= 4'} 3348 5027 5028 + image-meta@0.2.2: 5029 + resolution: {integrity: sha512-3MOLanc3sb3LNGWQl1RlQlNWURE5g32aUphrDyFeCsxBTk08iE3VNe4CwsUZ0Qs1X+EfX0+r29Sxdpza4B+yRA==} 5030 + 3349 5031 import-in-the-middle@1.15.0: 3350 5032 resolution: {integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA==} 3351 5033 5034 + impound@1.1.5: 5035 + resolution: {integrity: sha512-5AUn+QE0UofqNHu5f2Skf6Svukdg4ehOIq8O0EtqIx4jta0CDZYBPqpIHt0zrlUTiFVYlLpeH39DoikXBjPKpA==} 5036 + 3352 5037 imurmurhash@0.1.4: 3353 5038 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 3354 5039 engines: {node: '>=0.8.19'} ··· 3367 5052 ini@1.3.8: 3368 5053 resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 3369 5054 5055 + ini@4.1.1: 5056 + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} 5057 + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 5058 + 3370 5059 installed-check-core@8.3.1: 3371 5060 resolution: {integrity: sha512-5yH+YyCw2AO1OQpOSce2yUaooOSrK8XXmkOn2xdVpdtpt0pqwfdqU77FIpWN4fPHDcINKUf4R7hgDEfqpy1Z9g==} 3372 5061 engines: {node: '>=18.6.0'} ··· 3376 5065 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 3377 5066 hasBin: true 3378 5067 5068 + ioredis@5.10.1: 5069 + resolution: {integrity: sha512-HuEDBTI70aYdx1v6U97SbNx9F1+svQKBDo30o0b9fw055LMepzpOOd0Ccg9Q6tbqmBSJaMuY0fB7yw9/vjBYCA==} 5070 + engines: {node: '>=12.22.0'} 5071 + 3379 5072 ipaddr.js@2.4.0: 3380 5073 resolution: {integrity: sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==} 3381 5074 engines: {node: '>= 10'} 3382 5075 5076 + iron-webcrypto@1.2.1: 5077 + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 5078 + 3383 5079 is-arguments@1.2.0: 3384 5080 resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 3385 5081 engines: {node: '>= 0.4'} ··· 3396 5092 resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 3397 5093 engines: {node: '>= 0.4'} 3398 5094 5095 + is-docker@3.0.0: 5096 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 5097 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5098 + hasBin: true 5099 + 3399 5100 is-extglob@2.1.1: 3400 5101 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 3401 5102 engines: {node: '>=0.10.0'} ··· 3412 5113 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 3413 5114 engines: {node: '>=0.10.0'} 3414 5115 5116 + is-in-ssh@1.0.0: 5117 + resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==} 5118 + engines: {node: '>=20'} 5119 + 3415 5120 is-in-subnet@4.0.1: 3416 5121 resolution: {integrity: sha512-D3mAuAo6vZ+/AxsLkEIZ3moTx7AIGQLLzLQslV6n0RRO/CzdUemXap+lj3OPAehKCbdkGPikxOVUYqRo0GGJAA==} 3417 5122 engines: {node: '>=10.23.0'} 3418 5123 5124 + is-inside-container@1.0.0: 5125 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 5126 + engines: {node: '>=14.16'} 5127 + hasBin: true 5128 + 5129 + is-installed-globally@1.0.0: 5130 + resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==} 5131 + engines: {node: '>=18'} 5132 + 3419 5133 is-module@1.0.0: 3420 5134 resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 3421 5135 5136 + is-number@7.0.0: 5137 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 5138 + engines: {node: '>=0.12.0'} 5139 + 5140 + is-path-inside@4.0.0: 5141 + resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} 5142 + engines: {node: '>=12'} 5143 + 3422 5144 is-reference@1.2.1: 3423 5145 resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} 3424 5146 ··· 3430 5152 resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 3431 5153 engines: {node: '>=8'} 3432 5154 5155 + is-stream@3.0.0: 5156 + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 5157 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5158 + 3433 5159 is-typed-array@1.1.15: 3434 5160 resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 3435 5161 engines: {node: '>= 0.4'} 3436 5162 5163 + is-wsl@3.1.1: 5164 + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} 5165 + engines: {node: '>=16'} 5166 + 5167 + isarray@1.0.0: 5168 + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 5169 + 3437 5170 isexe@2.0.0: 3438 5171 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 3439 5172 3440 5173 isexe@3.1.5: 3441 5174 resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==} 3442 5175 engines: {node: '>=18'} 5176 + 5177 + isexe@4.0.0: 5178 + resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==} 5179 + engines: {node: '>=20'} 3443 5180 3444 5181 istanbul-lib-coverage@3.2.2: 3445 5182 resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} ··· 3476 5213 js-tokens@4.0.0: 3477 5214 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 3478 5215 5216 + js-tokens@9.0.1: 5217 + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 5218 + 3479 5219 js-xxhash@4.0.0: 3480 5220 resolution: {integrity: sha512-3Q2eIqG6s1KEBBmkj9tGM9lef8LJbuRyTVBdI3GpTnrvtytunjLPO0wqABp5qhtMzfA32jYn1FlnIV7GH1RAHQ==} 3481 5221 engines: {node: '>=18.0.0'} ··· 3522 5262 json-stable-stringify-without-jsonify@1.0.1: 3523 5263 resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 3524 5264 5265 + json5@2.2.3: 5266 + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 5267 + engines: {node: '>=6'} 5268 + hasBin: true 5269 + 3525 5270 jsonc-eslint-parser@3.1.0: 3526 5271 resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==} 3527 5272 engines: {node: ^20.19.0 || ^22.13.0 || >=24} ··· 3536 5281 keyv@4.5.4: 3537 5282 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 3538 5283 5284 + kleur@4.1.5: 5285 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 5286 + engines: {node: '>=6'} 5287 + 5288 + klona@2.0.6: 5289 + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} 5290 + engines: {node: '>= 8'} 5291 + 3539 5292 knip@6.14.2: 3540 5293 resolution: {integrity: sha512-Vg3JhIINjZew1I7qAFI4UHemW1mc4azP/BxJvsq9eGDfxpGO7oVCuD/bsWkog9TO/ZwwJeAeOMFZ1kd9jnY9+Q==} 3541 5294 engines: {node: ^20.19.0 || >=22.12.0} ··· 3543 5296 3544 5297 knitwork@1.3.0: 3545 5298 resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==} 5299 + 5300 + launch-editor@2.13.2: 5301 + resolution: {integrity: sha512-4VVDnbOpLXy/s8rdRCSXb+zfMeFR0WlJWpET1iA9CQdlZDfwyLjUuGQzXU4VeOoey6AicSAluWan7Etga6Kcmg==} 5302 + 5303 + lazystream@1.0.1: 5304 + resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} 5305 + engines: {node: '>= 0.6.3'} 3546 5306 3547 5307 levn@0.4.1: 3548 5308 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} ··· 3633 5393 resolution: {integrity: sha512-MLK5hj3vViLbs/RDgi/tY7rhi9ifiwnKppUF21mH2DqqMznvZhZ8TnjI0W6ZS0iCsl1qGAiHrUIMhjK7xrJstg==} 3634 5394 engines: {node: '>=18.6.0'} 3635 5395 5396 + listhen@1.10.0: 5397 + resolution: {integrity: sha512-kfz4C0OrC6IpaVMtYDJtf6PFjurxe9NBBoDAh/o2p587INryFOO4DQ9OetbCdDrWFt1m1CJKvYrzkGsuPHw8nQ==} 5398 + hasBin: true 5399 + 3636 5400 local-pkg@1.1.2: 3637 5401 resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} 3638 5402 engines: {node: '>=14'} ··· 3644 5408 lodash.camelcase@4.3.0: 3645 5409 resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 3646 5410 5411 + lodash.defaults@4.2.0: 5412 + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} 5413 + 5414 + lodash.isarguments@3.1.0: 5415 + resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} 5416 + 3647 5417 lodash.memoize@4.1.2: 3648 5418 resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} 3649 5419 ··· 3653 5423 lodash.uniq@4.5.0: 3654 5424 resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} 3655 5425 5426 + lodash@4.18.1: 5427 + resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} 5428 + 3656 5429 long@5.3.2: 3657 5430 resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} 3658 5431 ··· 3661 5434 3662 5435 lru-cache@10.4.3: 3663 5436 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 5437 + 5438 + lru-cache@11.5.0: 5439 + resolution: {integrity: sha512-5YgH9UJd7wVb9hIouI2adWpgqrrICkt070Dnj8EUY1+B4B2P9eRLPAkAAo6NICA7CEhOIeBHl46u9zSNpNu7zA==} 5440 + engines: {node: 20 || >=22} 5441 + 5442 + lru-cache@5.1.1: 5443 + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 5444 + 5445 + magic-regexp@0.11.0: 5446 + resolution: {integrity: sha512-LG77Z/gVnwz7oaDpD4heX6ryl+lcr4l1B2gnP4MMvt2pGhGC1Dfj7dl1pXpP4ih+VQFLuAadeKVa+lARAzfW+Q==} 5447 + 5448 + magic-string-ast@1.0.3: 5449 + resolution: {integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==} 5450 + engines: {node: '>=20.19.0'} 3664 5451 3665 5452 magic-string@0.30.21: 3666 5453 resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} ··· 3727 5514 merge-stream@2.0.0: 3728 5515 resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 3729 5516 5517 + merge2@1.4.1: 5518 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 5519 + engines: {node: '>= 8'} 5520 + 3730 5521 micromark-core-commonmark@2.0.3: 3731 5522 resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 3732 5523 ··· 3817 5608 micromark@4.0.2: 3818 5609 resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 3819 5610 5611 + micromatch@4.0.8: 5612 + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 5613 + engines: {node: '>=8.6'} 5614 + 5615 + mime-db@1.54.0: 5616 + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} 5617 + engines: {node: '>= 0.6'} 5618 + 5619 + mime-types@3.0.2: 5620 + resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} 5621 + engines: {node: '>=18'} 5622 + 5623 + mime@4.1.0: 5624 + resolution: {integrity: sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw==} 5625 + engines: {node: '>=16'} 5626 + hasBin: true 5627 + 3820 5628 mimic-fn@2.1.0: 3821 5629 resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 3822 5630 engines: {node: '>=6'} 3823 5631 5632 + mimic-fn@4.0.0: 5633 + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 5634 + engines: {node: '>=12'} 5635 + 3824 5636 mimic-response@3.1.0: 3825 5637 resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 3826 5638 engines: {node: '>=10'} ··· 3828 5640 minimatch@10.2.5: 3829 5641 resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} 3830 5642 engines: {node: 18 || 20 || >=22} 5643 + 5644 + minimatch@5.1.9: 5645 + resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} 5646 + engines: {node: '>=10'} 3831 5647 3832 5648 minimatch@9.0.5: 3833 5649 resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} ··· 3840 5656 resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 3841 5657 engines: {node: '>=16 || 14 >=14.17'} 3842 5658 5659 + minipass@7.1.3: 5660 + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} 5661 + engines: {node: '>=16 || 14 >=14.17'} 5662 + 5663 + minizlib@3.1.0: 5664 + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} 5665 + engines: {node: '>= 18'} 5666 + 3843 5667 mkdirp-classic@0.5.3: 3844 5668 resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 3845 5669 ··· 3869 5693 3870 5694 mnemonist@0.40.0: 3871 5695 resolution: {integrity: sha512-kdd8AFNig2AD5Rkih7EPCXhu/iMvwevQFX/uEiGhZyPZi7fHqOoF4V4kHLpCfysxXMgQ4B52kdPMCwARshKvEg==} 5696 + 5697 + mocked-exports@0.1.1: 5698 + resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==} 3872 5699 3873 5700 module-details-from-path@1.0.4: 3874 5701 resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==} ··· 3876 5703 module-replacements@3.0.0-beta.7: 3877 5704 resolution: {integrity: sha512-n1F9l3gF1wNh13xmnXS2JU7P9c3DlzCgVEyLKrVN0U37RwrXyYoePMMvYvs/6aUONAxbnscphzESZTCorXFh7Q==} 3878 5705 5706 + mrmime@2.0.1: 5707 + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 5708 + engines: {node: '>=10'} 5709 + 3879 5710 ms@2.1.3: 3880 5711 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 3881 5712 ··· 3897 5728 engines: {node: ^18 || >=20} 3898 5729 hasBin: true 3899 5730 5731 + nanotar@0.3.0: 5732 + resolution: {integrity: sha512-Kv2JYYiCzt16Kt5QwAc9BFG89xfPNBx+oQL4GQXD9nLqPkZBiNaqaCWtwnbk/q7UVsTYevvM1b0UF8zmEI4pCg==} 5733 + 3900 5734 napi-build-utils@2.0.0: 3901 5735 resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} 3902 5736 ··· 3907 5741 resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} 3908 5742 engines: {node: '>=18'} 3909 5743 5744 + nitropack@2.13.4: 5745 + resolution: {integrity: sha512-tX7bT6zxNeMwkc6hxHiZeUoTOjVrcjoh1Z3cmxOlodIqjl4HISgqfGOmkWSayky3Nv9Z5+KQH52F8nmXJY5AAA==} 5746 + engines: {node: ^20.19.0 || >=22.12.0} 5747 + hasBin: true 5748 + peerDependencies: 5749 + xml2js: ^0.6.2 5750 + peerDependenciesMeta: 5751 + xml2js: 5752 + optional: true 5753 + 3910 5754 node-abi@3.92.0: 3911 5755 resolution: {integrity: sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ==} 3912 5756 engines: {node: '>=10'} 3913 5757 5758 + node-addon-api@7.1.1: 5759 + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} 5760 + 5761 + node-fetch-native@1.6.7: 5762 + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 5763 + 3914 5764 node-fetch@2.7.0: 3915 5765 resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 3916 5766 engines: {node: 4.x || >=6.0.0} ··· 3920 5770 encoding: 3921 5771 optional: true 3922 5772 5773 + node-forge@1.4.0: 5774 + resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==} 5775 + engines: {node: '>= 6.13.0'} 5776 + 5777 + node-gyp-build@4.8.4: 5778 + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 5779 + hasBin: true 5780 + 5781 + node-mock-http@1.0.4: 5782 + resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} 5783 + 3923 5784 node-releases@2.0.38: 3924 5785 resolution: {integrity: sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==} 3925 5786 5787 + nopt@8.1.0: 5788 + resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} 5789 + engines: {node: ^18.17.0 || >=20.5.0} 5790 + hasBin: true 5791 + 3926 5792 normalize-package-data@6.0.2: 3927 5793 resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} 3928 5794 engines: {node: ^16.14.0 || >=18.0.0} 5795 + 5796 + normalize-path@3.0.0: 5797 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 5798 + engines: {node: '>=0.10.0'} 3929 5799 3930 5800 npm-normalize-package-bin@3.0.1: 3931 5801 resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} ··· 3935 5805 resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 3936 5806 engines: {node: '>=8'} 3937 5807 5808 + npm-run-path@5.3.0: 5809 + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 5810 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5811 + 5812 + npm-run-path@6.0.0: 5813 + resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} 5814 + engines: {node: '>=18'} 5815 + 3938 5816 nth-check@2.1.1: 3939 5817 resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 3940 5818 5819 + nuxt@4.4.6: 5820 + resolution: {integrity: sha512-QAApJpAx3yGf3pYudALkInuBfv0WkHCiol6ntTvh/lwKwYrcU/MRI1nLNGt0QNyUCgBWdOQukd3z67VJ2xGd0Q==} 5821 + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} 5822 + hasBin: true 5823 + peerDependencies: 5824 + '@parcel/watcher': ^2.1.0 5825 + '@types/node': '>=18.12.0' 5826 + peerDependenciesMeta: 5827 + '@parcel/watcher': 5828 + optional: true 5829 + '@types/node': 5830 + optional: true 5831 + 5832 + nypm@0.6.6: 5833 + resolution: {integrity: sha512-vRyr0r4cbBapw07Xw8xrj9Teq3o7MUD35rSaTcanDbW+aK2XHDgJFiU6ZTj2GBw7Q12ysdsyFss+Vdz4hQ0Y6Q==} 5834 + engines: {node: '>=18'} 5835 + hasBin: true 5836 + 3941 5837 object-deep-merge@2.0.0: 3942 5838 resolution: {integrity: sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg==} 3943 5839 ··· 3951 5847 obug@2.1.1: 3952 5848 resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} 3953 5849 5850 + ofetch@1.5.1: 5851 + resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} 5852 + 5853 + ofetch@2.0.0-alpha.3: 5854 + resolution: {integrity: sha512-zpYTCs2byOuft65vI3z43Dd6iSdFbOZZLb9/d21aCpx2rGastVU9dOCv0lu4ykc1Ur1anAYjDi3SUvR0vq50JA==} 5855 + 5856 + ohash@2.0.11: 5857 + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 5858 + 5859 + on-change@6.0.2: 5860 + resolution: {integrity: sha512-08+12qcOVEA0fS9g/VxKS27HaT94nRutUT77J2dr8zv/unzXopvhBuF8tNLWsoLQ5IgrQ6eptGeGqUYat82U1w==} 5861 + engines: {node: '>=20'} 5862 + 3954 5863 on-exit-leak-free@2.1.2: 3955 5864 resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 3956 5865 engines: {node: '>=14.0.0'} 3957 5866 5867 + on-finished@2.4.1: 5868 + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 5869 + engines: {node: '>= 0.8'} 5870 + 3958 5871 once@1.4.0: 3959 5872 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 3960 5873 ··· 3962 5875 resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 3963 5876 engines: {node: '>=6'} 3964 5877 5878 + onetime@6.0.0: 5879 + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 5880 + engines: {node: '>=12'} 5881 + 5882 + open@10.2.0: 5883 + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} 5884 + engines: {node: '>=18'} 5885 + 5886 + open@11.0.0: 5887 + resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==} 5888 + engines: {node: '>=20'} 5889 + 3965 5890 optionator@0.9.4: 3966 5891 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 3967 5892 engines: {node: '>= 0.8.0'} 3968 5893 5894 + oxc-minify@0.131.0: 5895 + resolution: {integrity: sha512-Ch0sBbrqZpeNZUMhVDbU2yrTWTVrUT/MkXb9E2DAc+hbhxbbO8D/XklUtfPP86/iqrkvl178+YQvh5u8Of1mUg==} 5896 + engines: {node: ^20.19.0 || >=22.12.0} 5897 + 3969 5898 oxc-parser@0.130.0: 3970 5899 resolution: {integrity: sha512-X0PJ+NmOok8qP3vK9uaW431ngkdM9UPEK7KG466urtIL2+EYTEgbZK2yqe2MWKJKBjRlFweP/pJPx0x9muMEVw==} 3971 5900 engines: {node: ^20.19.0 || >=22.12.0} 3972 5901 5902 + oxc-parser@0.131.0: 5903 + resolution: {integrity: sha512-SJ3/7ZPbgie8dr5Z9BI/M51zZbpXba+hRSG0MDzVwMW5CRQg2fjYE0jHGlLX4eeiibGgC/mzoDFKSDHwVZEHRQ==} 5904 + engines: {node: ^20.19.0 || >=22.12.0} 5905 + 3973 5906 oxc-resolver@11.19.1: 3974 5907 resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==} 3975 5908 5909 + oxc-transform@0.131.0: 5910 + resolution: {integrity: sha512-ml0/elXPNnDnuHo3VHmEMN2fnybmKx7YL+0E+gMQ0fuHRZHXYJzF6YJ01KsCWg6FXY6pbZcjm7DC3xwGHnB/BA==} 5911 + engines: {node: ^20.19.0 || >=22.12.0} 5912 + 5913 + oxc-walker@1.0.0: 5914 + resolution: {integrity: sha512-eMsHflAGfOskpWxtp9xP/f5b96XLEU8ifTd2gOOCkdux9HMxKGy5S1ru0Gh1B3aPu+YbfmWUUVkcb7MrZz3XyQ==} 5915 + peerDependencies: 5916 + oxc-parser: '>=0.98.0' 5917 + rolldown: '>=1.0.0' 5918 + peerDependenciesMeta: 5919 + oxc-parser: 5920 + optional: true 5921 + rolldown: 5922 + optional: true 5923 + 3976 5924 oxfmt@0.45.0: 3977 5925 resolution: {integrity: sha512-0o/COoN9fY50bjVeM7PQsNgbhndKurBIeTIcspW033OumksjJJmIVDKjAk5HMwU/GHTxSOdGDdhJ6BRzGPmsHg==} 3978 5926 engines: {node: ^20.19.0 || >=22.12.0} ··· 4009 5957 parse-statements@1.0.11: 4010 5958 resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} 4011 5959 5960 + parseurl@1.3.3: 5961 + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 5962 + engines: {node: '>= 0.8'} 5963 + 4012 5964 path-browserify@1.0.1: 4013 5965 resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 4014 5966 ··· 4020 5972 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 4021 5973 engines: {node: '>=8'} 4022 5974 5975 + path-key@4.0.0: 5976 + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 5977 + engines: {node: '>=12'} 5978 + 4023 5979 path-parse@1.0.7: 4024 5980 resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 4025 5981 ··· 4027 5983 resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 4028 5984 engines: {node: '>=16 || 14 >=14.18'} 4029 5985 5986 + path-scurry@2.0.2: 5987 + resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} 5988 + engines: {node: 18 || 20 || >=22} 5989 + 5990 + pathe@1.1.2: 5991 + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 5992 + 4030 5993 pathe@2.0.3: 4031 5994 resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 4032 5995 ··· 4034 5997 resolution: {integrity: sha512-5UmUtvuCv3KzBX2NuQw2uF28o0t8Eq4KkPRZfUCzJs+DiNVKw7OaYn29vNDgrt/Pggs23CPlSTqgzlhHJfpT0A==} 4035 5998 engines: {node: '>=18.6.0', typescript: '>=5.8'} 4036 5999 6000 + perfect-debounce@2.1.0: 6001 + resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==} 6002 + 4037 6003 pg-format-fix@1.0.5: 4038 6004 resolution: {integrity: sha512-HcXVy9Zk4kn87P0+U9XSxGtenNyknbPB87NreixSBk0lYJy89u+d/zQbS+f/aTTxABQ/B6FH1KdBB5EsGzRS2w==} 4039 6005 engines: {node: '>=4.0'} ··· 4051 6017 4052 6018 picocolors@1.1.1: 4053 6019 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 6020 + 6021 + picomatch@2.3.2: 6022 + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} 6023 + engines: {node: '>=8.6'} 4054 6024 4055 6025 picomatch@4.0.4: 4056 6026 resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} ··· 4098 6068 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4099 6069 peerDependencies: 4100 6070 postcss: ^8.4.32 6071 + 6072 + postcss-colormin@8.0.0: 6073 + resolution: {integrity: sha512-KKwMmsSgsmdYXqrjQeqL3tnuIFtctiR1GEMHdjNpDpz/TCRkkkok2mMcreK2zVV3l7POWOmAkR2xYHUpRUK1DA==} 6074 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6075 + peerDependencies: 6076 + postcss: ^8.5.14 4101 6077 4102 6078 postcss-convert-values@7.0.8: 4103 6079 resolution: {integrity: sha512-+XNKuPfkHTCEo499VzLMYn94TiL3r9YqRE3Ty+jP7UX4qjewUONey1t7CG21lrlTLN07GtGM8MqFVp86D4uKJg==} ··· 4105 6081 peerDependencies: 4106 6082 postcss: ^8.4.32 4107 6083 6084 + postcss-convert-values@8.0.0: 6085 + resolution: {integrity: sha512-Ohtj3rNZWawTRePv5NCHTy8VJSdJ/G/uKuxcxJreOMichuqcT6uEl2TAnopVeJCJ/c13jaSqg7m63yFLM5zBsA==} 6086 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6087 + peerDependencies: 6088 + postcss: ^8.5.14 6089 + 4108 6090 postcss-discard-comments@7.0.5: 4109 6091 resolution: {integrity: sha512-IR2Eja8WfYgN5n32vEGSctVQ1+JARfu4UH8M7bgGh1bC+xI/obsPJXaBpQF7MAByvgwZinhpHpdrmXtvVVlKcQ==} 4110 6092 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4111 6093 peerDependencies: 4112 6094 postcss: ^8.4.32 4113 6095 6096 + postcss-discard-comments@8.0.0: 6097 + resolution: {integrity: sha512-zGpvVLj2sbagEp+BTVETvAfkZdGVA6rALNujDK/WTIjdf1/rQOxOG8BBzkI8UQgnw8SkL6xffAfbtGMHFypadw==} 6098 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6099 + peerDependencies: 6100 + postcss: ^8.5.14 6101 + 4114 6102 postcss-discard-duplicates@7.0.2: 4115 6103 resolution: {integrity: sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==} 4116 6104 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4117 6105 peerDependencies: 4118 6106 postcss: ^8.4.32 4119 6107 6108 + postcss-discard-duplicates@8.0.0: 6109 + resolution: {integrity: sha512-zjRyYmNGI3PTipKBBtCgExlmZXQn49KvKoaiNnR2g+iXxeNk7GY5Js2ULtZXPrCYeqjPagrzKIBNcBocvXCR7g==} 6110 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6111 + peerDependencies: 6112 + postcss: ^8.5.14 6113 + 4120 6114 postcss-discard-empty@7.0.1: 4121 6115 resolution: {integrity: sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==} 4122 6116 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4123 6117 peerDependencies: 4124 6118 postcss: ^8.4.32 4125 6119 6120 + postcss-discard-empty@8.0.0: 6121 + resolution: {integrity: sha512-kxPJg6EqahbBvm+l7hpYYCtpsv8dlz7Tv6wJXUXZaeuY0WGS61DxfGdZR4uVB/Cx+yi3iOHQVSqpSHKMFaBg6Q==} 6122 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6123 + peerDependencies: 6124 + postcss: ^8.5.14 6125 + 4126 6126 postcss-discard-overridden@7.0.1: 4127 6127 resolution: {integrity: sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==} 4128 6128 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4129 6129 peerDependencies: 4130 6130 postcss: ^8.4.32 4131 6131 6132 + postcss-discard-overridden@8.0.0: 6133 + resolution: {integrity: sha512-sW2OWH3l9p0FmBSVr228uztFseqroZxwgD7SGF0Ks0dRPDttSo3P8FK5ZBLtWBH2A5+chpB0J2fB/T8heKHLBw==} 6134 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6135 + peerDependencies: 6136 + postcss: ^8.5.14 6137 + 4132 6138 postcss-merge-longhand@7.0.5: 4133 6139 resolution: {integrity: sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==} 4134 6140 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4135 6141 peerDependencies: 4136 6142 postcss: ^8.4.32 4137 6143 6144 + postcss-merge-longhand@8.0.0: 6145 + resolution: {integrity: sha512-YDmAmQ8H+ljfomVpSXvr9NA0GP01fraQJqjWBYoMVGg6rOT+PJLwPyeVo2ekn4WB4ZVSH5ddtK3DTRxbz6CFzg==} 6146 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6147 + peerDependencies: 6148 + postcss: ^8.5.14 6149 + 4138 6150 postcss-merge-rules@7.0.7: 4139 6151 resolution: {integrity: sha512-njWJrd/Ms6XViwowaaCc+/vqhPG3SmXn725AGrnl+BgTuRPEacjiLEaGq16J6XirMJbtKkTwnt67SS+e2WGoew==} 4140 6152 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4141 6153 peerDependencies: 4142 6154 postcss: ^8.4.32 4143 6155 6156 + postcss-merge-rules@8.0.0: 6157 + resolution: {integrity: sha512-bgstL5mpi41dDpnYGDUcI3M814NWkCMcIWpwDqEHXkHg3BT7b4XRAfNEuwJncZOVn/67kVKvWzhfv/7xyrp2uQ==} 6158 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6159 + peerDependencies: 6160 + postcss: ^8.5.14 6161 + 4144 6162 postcss-minify-font-values@7.0.1: 4145 6163 resolution: {integrity: sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==} 4146 6164 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4147 6165 peerDependencies: 4148 6166 postcss: ^8.4.32 4149 6167 6168 + postcss-minify-font-values@8.0.0: 6169 + resolution: {integrity: sha512-EnOHQEnSt6oH5NrL1DMFAQuwB2IOimFXTCzc9bKfUeH1jREbqIF5MAK4gQJQOC4mPUwJt4sWifAmNZ1qLu6j3Q==} 6170 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6171 + peerDependencies: 6172 + postcss: ^8.5.14 6173 + 4150 6174 postcss-minify-gradients@7.0.1: 4151 6175 resolution: {integrity: sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==} 4152 6176 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4153 6177 peerDependencies: 4154 6178 postcss: ^8.4.32 4155 6179 6180 + postcss-minify-gradients@8.0.0: 6181 + resolution: {integrity: sha512-43iAnYIGk0ZjNx5X/rkIcHi6dhmu/vEjY0kqfUfxPuJRO+V7jx8uKIdcnL0dpfNoC5J9TSh3EtzLWbq0gpqnWA==} 6182 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6183 + peerDependencies: 6184 + postcss: ^8.5.14 6185 + 4156 6186 postcss-minify-params@7.0.5: 4157 6187 resolution: {integrity: sha512-FGK9ky02h6Ighn3UihsyeAH5XmLEE2MSGH5Tc4tXMFtEDx7B+zTG6hD/+/cT+fbF7PbYojsmmWjyTwFwW1JKQQ==} 4158 6188 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4159 6189 peerDependencies: 4160 6190 postcss: ^8.4.32 4161 6191 6192 + postcss-minify-params@8.0.0: 6193 + resolution: {integrity: sha512-z7w4QO7G55l4vMUK1Lmx03GW7iyRLgf2V5Dz/7ioSPLnXRjeD+b7m0XfAXUGrbBYYrJ6bXPk+3LoX5u4JfAcSg==} 6194 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6195 + peerDependencies: 6196 + postcss: ^8.5.14 6197 + 4162 6198 postcss-minify-selectors@7.0.5: 4163 6199 resolution: {integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==} 4164 6200 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4165 6201 peerDependencies: 4166 6202 postcss: ^8.4.32 6203 + 6204 + postcss-minify-selectors@8.0.1: 6205 + resolution: {integrity: sha512-c31D46811kTkQDxV1KTTow79axX6gj/01AY5G7cGZg3s31KvAwP13jEFXGAzQbJ7NvOFV1pRqEia6nrAdHU7qg==} 6206 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6207 + peerDependencies: 6208 + postcss: ^8.5.14 4167 6209 4168 6210 postcss-nested@7.0.2: 4169 6211 resolution: {integrity: sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==} ··· 4177 6219 peerDependencies: 4178 6220 postcss: ^8.4.32 4179 6221 6222 + postcss-normalize-charset@8.0.0: 6223 + resolution: {integrity: sha512-s88FUNDSUD8m0wBYvTQQcubVts6zhXwBU8zCD4vkRKiecd0v8cOjHVIF9r/i+5xzS/WG3f98qq4XsOM0JqvfLA==} 6224 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6225 + peerDependencies: 6226 + postcss: ^8.5.14 6227 + 4180 6228 postcss-normalize-display-values@7.0.1: 4181 6229 resolution: {integrity: sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==} 4182 6230 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4183 6231 peerDependencies: 4184 6232 postcss: ^8.4.32 4185 6233 6234 + postcss-normalize-display-values@8.0.0: 6235 + resolution: {integrity: sha512-gG2nBxD27fiw6Luinb1QYKdM/Co5GornRJgSD+JTwNH4PGKxImP0qyruDDav49aHUPLY3qrL3qN3LvybO7IzxQ==} 6236 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6237 + peerDependencies: 6238 + postcss: ^8.5.14 6239 + 4186 6240 postcss-normalize-positions@7.0.1: 4187 6241 resolution: {integrity: sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==} 4188 6242 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4189 6243 peerDependencies: 4190 6244 postcss: ^8.4.32 4191 6245 6246 + postcss-normalize-positions@8.0.0: 6247 + resolution: {integrity: sha512-t/wGqpehS20Ke7kc4QAsWpH+AJjUdMK/V5qV2RhrXkj8hO/fT1t1MJ8NL7sedWYk7ZqC7eISEJQonW5j0tU1MQ==} 6248 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6249 + peerDependencies: 6250 + postcss: ^8.5.14 6251 + 4192 6252 postcss-normalize-repeat-style@7.0.1: 4193 6253 resolution: {integrity: sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==} 4194 6254 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4195 6255 peerDependencies: 4196 6256 postcss: ^8.4.32 4197 6257 6258 + postcss-normalize-repeat-style@8.0.0: 6259 + resolution: {integrity: sha512-3ebOmGdCYKrBYyGKc1xhj0unEnW7beZpVU7JohVeGl7mTxR+7T6egpaawTWAVsB0pEIhcsbJVOjPKCJSoRO6Zg==} 6260 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6261 + peerDependencies: 6262 + postcss: ^8.5.14 6263 + 4198 6264 postcss-normalize-string@7.0.1: 4199 6265 resolution: {integrity: sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==} 4200 6266 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4201 6267 peerDependencies: 4202 6268 postcss: ^8.4.32 4203 6269 6270 + postcss-normalize-string@8.0.0: 6271 + resolution: {integrity: sha512-TvWCGZ/e04Tv31uJvOUtbexkfgUnqmQ3M2P5DkAaVzvOj+BvTkG2QjpA5Y71SL1SPxJcj4M23fNh+RDVCmG8kA==} 6272 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6273 + peerDependencies: 6274 + postcss: ^8.5.14 6275 + 4204 6276 postcss-normalize-timing-functions@7.0.1: 4205 6277 resolution: {integrity: sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==} 4206 6278 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4207 6279 peerDependencies: 4208 6280 postcss: ^8.4.32 4209 6281 6282 + postcss-normalize-timing-functions@8.0.0: 6283 + resolution: {integrity: sha512-uEfaXst5Xgqxv7geYUuz6vs9mn88K2NPY2RoIzM3BMmSjsdTSeppV9x2qIgrxsisdbSqF6IVhzI2occcte3hTA==} 6284 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6285 + peerDependencies: 6286 + postcss: ^8.5.14 6287 + 4210 6288 postcss-normalize-unicode@7.0.5: 4211 6289 resolution: {integrity: sha512-X6BBwiRxVaFHrb2WyBMddIeB5HBjJcAaUHyhLrM2FsxSq5TFqcHSsK7Zu1otag+o0ZphQGJewGH1tAyrD0zX1Q==} 4212 6290 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4213 6291 peerDependencies: 4214 6292 postcss: ^8.4.32 4215 6293 6294 + postcss-normalize-unicode@8.0.0: 6295 + resolution: {integrity: sha512-+WYngZaChEeTHZmWhmKtnJ4gTzWdINEaFcgWBnu6WdVu8Ftim8OBTcw768DuCC/3Aax9bZ9WkwrLGHym2Lzf+A==} 6296 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6297 + peerDependencies: 6298 + postcss: ^8.5.14 6299 + 4216 6300 postcss-normalize-url@7.0.1: 4217 6301 resolution: {integrity: sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==} 4218 6302 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4219 6303 peerDependencies: 4220 6304 postcss: ^8.4.32 4221 6305 6306 + postcss-normalize-url@8.0.0: 6307 + resolution: {integrity: sha512-4Mz9hZHn/QIB+YtFqTXrDmE2193GYxGb3F8uMfLvMicaEXCCUlDIJ658gFFJbqEGl9FYzwPtRiuNgbwlO9kkBg==} 6308 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6309 + peerDependencies: 6310 + postcss: ^8.5.14 6311 + 4222 6312 postcss-normalize-whitespace@7.0.1: 4223 6313 resolution: {integrity: sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==} 4224 6314 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4225 6315 peerDependencies: 4226 6316 postcss: ^8.4.32 4227 6317 6318 + postcss-normalize-whitespace@8.0.0: 6319 + resolution: {integrity: sha512-V1f8tYnwIP5tscOXQFTKK8Y5EJ+R2GMpFJ6FjzwoKoQnhbqQy3IeSrDjJJb8JjVos8ut6Osi80Zybpayv/XjIQ==} 6320 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6321 + peerDependencies: 6322 + postcss: ^8.5.14 6323 + 4228 6324 postcss-ordered-values@7.0.2: 4229 6325 resolution: {integrity: sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==} 4230 6326 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4231 6327 peerDependencies: 4232 6328 postcss: ^8.4.32 4233 6329 6330 + postcss-ordered-values@8.0.0: 6331 + resolution: {integrity: sha512-Dg9+itb6lmD0bxqhQyHCtXAwYRh0wUrx6Mp4/BNXgkLoJmdYMmWi+V+Pypw79Q6iQhxA8KFMHqLBITQJV2gKMA==} 6332 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6333 + peerDependencies: 6334 + postcss: ^8.5.14 6335 + 4234 6336 postcss-reduce-initial@7.0.5: 4235 6337 resolution: {integrity: sha512-RHagHLidG8hTZcnr4FpyMB2jtgd/OcyAazjMhoy5qmWJOx1uxKh4ntk0Pb46ajKM0rkf32lRH4C8c9qQiPR6IA==} 4236 6338 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4237 6339 peerDependencies: 4238 6340 postcss: ^8.4.32 4239 6341 6342 + postcss-reduce-initial@8.0.0: 6343 + resolution: {integrity: sha512-DChcE9d528AKrlpCTHjhsAiOsWCk4H9ApHPS1QqRT3praObWTiWyn6W1UddGpc46K9LQnHwUu4YwaPUukGtXVA==} 6344 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6345 + peerDependencies: 6346 + postcss: ^8.5.14 6347 + 4240 6348 postcss-reduce-transforms@7.0.1: 4241 6349 resolution: {integrity: sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==} 4242 6350 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4243 6351 peerDependencies: 4244 6352 postcss: ^8.4.32 4245 6353 6354 + postcss-reduce-transforms@8.0.0: 6355 + resolution: {integrity: sha512-cLZT0som7vvumQT9XQCnSKOSnRinNQZd1Hm+J723Ney13E8CIydDhw6JwzsjPtgnYThTqn9Q45906gz6wxaAsw==} 6356 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6357 + peerDependencies: 6358 + postcss: ^8.5.14 6359 + 4246 6360 postcss-selector-parser@7.1.1: 4247 6361 resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} 4248 6362 engines: {node: '>=4'} ··· 4252 6366 engines: {node: ^18.12.0 || ^20.9.0 || >= 18} 4253 6367 peerDependencies: 4254 6368 postcss: ^8.4.32 6369 + 6370 + postcss-svgo@8.0.0: 6371 + resolution: {integrity: sha512-Q2fMSYEiNE1ioDc/3sxvI24NdgA/MJno2XLNpOxgv8aCcJbym8mZY10/lDY5+AWCIc3Aiqzy2Wcp9/zaIXBZgQ==} 6372 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6373 + peerDependencies: 6374 + postcss: ^8.5.14 4255 6375 4256 6376 postcss-unique-selectors@7.0.4: 4257 6377 resolution: {integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==} ··· 4259 6379 peerDependencies: 4260 6380 postcss: ^8.4.32 4261 6381 6382 + postcss-unique-selectors@8.0.0: 6383 + resolution: {integrity: sha512-iObuolUX+ITJfMU2QQFQdh31JgSjNLPNjVs6YGAqBHvOvAWXMMNget6donQl83aQaeS32i5XeKZURUW/WBxIUw==} 6384 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6385 + peerDependencies: 6386 + postcss: ^8.5.14 6387 + 4262 6388 postcss-value-parser@4.2.0: 4263 6389 resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 4264 6390 ··· 4286 6412 resolution: {integrity: sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==} 4287 6413 engines: {node: '>=12'} 4288 6414 6415 + powershell-utils@0.1.0: 6416 + resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} 6417 + engines: {node: '>=20'} 6418 + 4289 6419 prebuild-install@7.1.3: 4290 6420 resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} 4291 6421 engines: {node: '>=10'} ··· 4300 6430 resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==} 4301 6431 engines: {node: '>=20'} 4302 6432 6433 + process-nextick-args@2.0.1: 6434 + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 6435 + 4303 6436 process-warning@4.0.1: 4304 6437 resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==} 4305 6438 ··· 4309 6442 process@0.11.10: 4310 6443 resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 4311 6444 engines: {node: '>= 0.6.0'} 6445 + 6446 + proper-lockfile@4.1.2: 6447 + resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} 4312 6448 4313 6449 protobufjs@7.6.1: 4314 6450 resolution: {integrity: sha512-4K0myLaWL5EteuSAro91EGFgcfVgxb64Jx+7oDAY6GOkXD4M69yuSEljNcInGVCA5sOPxmZ/EqDLj2x0Q0+Ygg==} ··· 4324 6460 quansync@0.2.11: 4325 6461 resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 4326 6462 6463 + queue-microtask@1.2.3: 6464 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 6465 + 4327 6466 quick-format-unescaped@4.0.4: 4328 6467 resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 4329 6468 6469 + radix3@1.1.2: 6470 + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 6471 + 6472 + range-parser@1.2.1: 6473 + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 6474 + engines: {node: '>= 0.6'} 6475 + 6476 + rc9@3.0.1: 6477 + resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==} 6478 + 4330 6479 rc@1.2.8: 4331 6480 resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 4332 6481 hasBin: true ··· 4347 6496 resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} 4348 6497 engines: {node: '>=10.13'} 4349 6498 6499 + readable-stream@2.3.8: 6500 + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 6501 + 4350 6502 readable-stream@3.6.2: 4351 6503 resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 4352 6504 engines: {node: '>= 6'} 4353 6505 6506 + readable-stream@4.7.0: 6507 + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 6508 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6509 + 6510 + readdir-glob@1.1.3: 6511 + resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} 6512 + 4354 6513 readdirp@4.1.2: 4355 6514 resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 4356 6515 engines: {node: '>= 14.18.0'} 4357 6516 6517 + readdirp@5.0.0: 6518 + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} 6519 + engines: {node: '>= 20.19.0'} 6520 + 4358 6521 real-require@0.2.0: 4359 6522 resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 4360 6523 engines: {node: '>= 12.13.0'} ··· 4362 6525 real-require@1.0.0: 4363 6526 resolution: {integrity: sha512-P4nbQYQfePJxRSmY+v/KINxVucm4NF3p3s7pJveMTtom52FR4YGltUQLB8idDXwDDWW+eYrWDFbuzUnjoWHF7g==} 4364 6527 6528 + redis-errors@1.2.0: 6529 + resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} 6530 + engines: {node: '>=4'} 6531 + 6532 + redis-parser@3.0.0: 6533 + resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} 6534 + engines: {node: '>=4'} 6535 + 4365 6536 refa@0.12.1: 4366 6537 resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} 4367 6538 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} ··· 4393 6564 reserved-identifiers@1.2.0: 4394 6565 resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==} 4395 6566 engines: {node: '>=18'} 6567 + 6568 + resolve-from@5.0.0: 6569 + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 6570 + engines: {node: '>=8'} 4396 6571 4397 6572 resolve-pkg-maps@1.0.0: 4398 6573 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} ··· 4409 6584 resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==} 4410 6585 engines: {node: '>=10'} 4411 6586 6587 + retry@0.12.0: 6588 + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} 6589 + engines: {node: '>= 4'} 6590 + 4412 6591 reusify@1.1.0: 4413 6592 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 4414 6593 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} ··· 4428 6607 rollup: ^3.29.4 || ^4 4429 6608 typescript: ^4.5 || ^5.0 4430 6609 6610 + rollup-plugin-visualizer@7.0.1: 6611 + resolution: {integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg==} 6612 + engines: {node: '>=22'} 6613 + hasBin: true 6614 + peerDependencies: 6615 + rolldown: 1.x || ^1.0.0-beta || ^1.0.0-rc 6616 + rollup: 2.x || 3.x || 4.x 6617 + peerDependenciesMeta: 6618 + rolldown: 6619 + optional: true 6620 + rollup: 6621 + optional: true 6622 + 4431 6623 rollup@4.56.0: 4432 6624 resolution: {integrity: sha512-9FwVqlgUHzbXtDg9RCMgodF3Ua4Na6Gau+Sdt9vyCN4RhHfVKX2DCHy3BjMLTDd47ITDhYAnTwGulWTblJSDLg==} 4433 6625 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 4434 6626 hasBin: true 4435 6627 6628 + rollup@4.60.4: 6629 + resolution: {integrity: sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==} 6630 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 6631 + hasBin: true 6632 + 6633 + rou3@0.8.1: 6634 + resolution: {integrity: sha512-ePa+XGk00/3HuCqrEnK3LxJW7I0SdNg6EFzKUJG73hMAdDcOUC/i/aSz7LSDwLrGr33kal/rqOGydzwl6U7zBA==} 6635 + 6636 + run-applescript@7.1.0: 6637 + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} 6638 + engines: {node: '>=18'} 6639 + 6640 + run-parallel@1.2.0: 6641 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 6642 + 4436 6643 safe-buffer@5.1.2: 4437 6644 resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 4438 6645 ··· 4455 6662 resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==} 4456 6663 engines: {node: '>=11.0.0'} 4457 6664 6665 + sax@1.6.0: 6666 + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} 6667 + engines: {node: '>=11.0.0'} 6668 + 4458 6669 scslre@0.3.0: 4459 6670 resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} 4460 6671 engines: {node: ^14.0.0 || >=16.0.0} ··· 4465 6676 secure-json-parse@4.1.0: 4466 6677 resolution: {integrity: sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==} 4467 6678 6679 + semver@6.3.1: 6680 + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 6681 + hasBin: true 6682 + 4468 6683 semver@7.8.1: 4469 6684 resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==} 4470 6685 engines: {node: '>=10'} 4471 6686 hasBin: true 4472 6687 6688 + send@1.2.1: 6689 + resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} 6690 + engines: {node: '>= 18'} 6691 + 6692 + serialize-javascript@7.0.5: 6693 + resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==} 6694 + engines: {node: '>=20.0.0'} 6695 + 6696 + seroval@1.5.4: 6697 + resolution: {integrity: sha512-46uFvgrXTVxZcUorgSSRZ4y+ieqLLQRMlG4bnCZKW3qI6BZm7Rg4ntMW4p1mILEEBZWrFlcpp0AyIIlM6jD9iw==} 6698 + engines: {node: '>=10'} 6699 + 6700 + serve-placeholder@2.0.2: 6701 + resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==} 6702 + 6703 + serve-static@2.2.1: 6704 + resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==} 6705 + engines: {node: '>= 18'} 6706 + 4473 6707 set-cookie-parser@2.7.2: 4474 6708 resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==} 4475 6709 ··· 4477 6711 resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 4478 6712 engines: {node: '>= 0.4'} 4479 6713 6714 + setprototypeof@1.2.0: 6715 + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 6716 + 4480 6717 shallow-equal@1.2.1: 4481 6718 resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==} 4482 6719 ··· 4487 6724 shebang-regex@3.0.0: 4488 6725 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 4489 6726 engines: {node: '>=8'} 6727 + 6728 + shell-quote@1.8.4: 6729 + resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==} 6730 + engines: {node: '>= 0.4'} 4490 6731 4491 6732 siginfo@2.0.0: 4492 6733 resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} ··· 4508 6749 resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==} 4509 6750 hasBin: true 4510 6751 6752 + simple-git@3.36.0: 6753 + resolution: {integrity: sha512-cGQjLjK8bxJw4QuYT7gxHw3/IouVESbhahSsHrX97MzCL1gu2u7oy38W6L2ZIGECEfIBG4BabsWDPjBxJENv9Q==} 6754 + 6755 + sirv@3.0.2: 6756 + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} 6757 + engines: {node: '>=18'} 6758 + 4511 6759 sisteransi@1.0.5: 4512 6760 resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 4513 6761 6762 + slash@5.1.0: 6763 + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 6764 + engines: {node: '>=14.16'} 6765 + 6766 + smob@1.6.2: 6767 + resolution: {integrity: sha512-RQsvleCbF8cVHEv+xuDGaA4pOizFqJ0GgjtMSRo6oP8pnN7WsigHgVGey6aILRBKv4W2YOMHLqbKdnB6hpB9fw==} 6768 + engines: {node: '>=20.0.0'} 6769 + 4514 6770 smol-toml@1.6.1: 4515 6771 resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} 4516 6772 engines: {node: '>= 18'} ··· 4522 6778 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 4523 6779 engines: {node: '>=0.10.0'} 4524 6780 6781 + source-map-support@0.5.21: 6782 + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 6783 + 6784 + source-map@0.6.1: 6785 + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 6786 + engines: {node: '>=0.10.0'} 6787 + 6788 + source-map@0.7.6: 6789 + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} 6790 + engines: {node: '>= 12'} 6791 + 4525 6792 spdx-correct@3.2.0: 4526 6793 resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 4527 6794 ··· 4541 6808 resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 4542 6809 engines: {node: '>= 10.x'} 4543 6810 6811 + srvx@0.11.16: 6812 + resolution: {integrity: sha512-bp07zRuycfTY43IjAvvTFnmnJi8ikW0VFiHwOhhYcVW/L4xQ1XY4PAd4Nuum1rsA17C39zL7x+CDhrn5AL32Rw==} 6813 + engines: {node: '>=20.16.0'} 6814 + hasBin: true 6815 + 4544 6816 stackback@0.0.2: 4545 6817 resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 4546 6818 6819 + standard-as-callback@2.1.0: 6820 + resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} 6821 + 6822 + statuses@2.0.2: 6823 + resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} 6824 + engines: {node: '>= 0.8'} 6825 + 4547 6826 std-env@4.1.0: 4548 6827 resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} 4549 6828 4550 6829 stream-shift@1.0.3: 4551 6830 resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} 4552 6831 6832 + streamx@2.25.0: 6833 + resolution: {integrity: sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==} 6834 + 4553 6835 string-width@4.2.3: 4554 6836 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 4555 6837 engines: {node: '>=8'} ··· 4558 6840 resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 4559 6841 engines: {node: '>=12'} 4560 6842 6843 + string-width@7.2.0: 6844 + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 6845 + engines: {node: '>=18'} 6846 + 6847 + string_decoder@1.1.1: 6848 + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 6849 + 4561 6850 string_decoder@1.3.0: 4562 6851 resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 4563 6852 ··· 4577 6866 resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 4578 6867 engines: {node: '>=6'} 4579 6868 6869 + strip-final-newline@3.0.0: 6870 + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 6871 + engines: {node: '>=12'} 6872 + 4580 6873 strip-indent@4.1.1: 4581 6874 resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==} 4582 6875 engines: {node: '>=12'} ··· 4589 6882 resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} 4590 6883 engines: {node: '>=14.16'} 4591 6884 6885 + strip-literal@3.1.0: 6886 + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} 6887 + 6888 + structured-clone-es@2.0.0: 6889 + resolution: {integrity: sha512-5UuAHmBLXYPCl22xWJrFuGmIhBKQzxISPVz6E7nmTmTcAOpUzlbjKJsRrCE4vADmMQ0dzeCnlWn9XufnAGf76Q==} 6890 + 4592 6891 stylehacks@7.0.7: 4593 6892 resolution: {integrity: sha512-bJkD0JkEtbRrMFtwgpJyBbFIwfDDONQ1Ov3sDLZQP8HuJ73kBOyx66H4bOcAbVWmnfLdvQ0AJwXxOMkpujcO6g==} 4594 6893 engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 4595 6894 peerDependencies: 4596 6895 postcss: ^8.4.32 4597 6896 6897 + stylehacks@8.0.0: 6898 + resolution: {integrity: sha512-sWyjaJvBqHoVKYPbQ8JRvrGSPaYWtWrJsU+fGVtwKB1GE1rRPu3rC7T6UCuXLoL00Dwb+tsHe2T904r8Vnsx8w==} 6899 + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} 6900 + peerDependencies: 6901 + postcss: ^8.5.14 6902 + 6903 + supports-color@10.2.2: 6904 + resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} 6905 + engines: {node: '>=18'} 6906 + 4598 6907 supports-color@7.2.0: 4599 6908 resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 4600 6909 engines: {node: '>=8'} ··· 4605 6914 4606 6915 svgo@4.0.0: 4607 6916 resolution: {integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==} 6917 + engines: {node: '>=16'} 6918 + hasBin: true 6919 + 6920 + svgo@4.0.1: 6921 + resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==} 4608 6922 engines: {node: '>=16'} 4609 6923 hasBin: true 4610 6924 ··· 4616 6930 resolution: {integrity: sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==} 4617 6931 engines: {node: '>=12.17'} 4618 6932 6933 + tagged-tag@1.0.0: 6934 + resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==} 6935 + engines: {node: '>=20'} 6936 + 4619 6937 tapable@2.3.3: 4620 6938 resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} 4621 6939 engines: {node: '>=6'} ··· 4627 6945 resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 4628 6946 engines: {node: '>=6'} 4629 6947 6948 + tar-stream@3.2.0: 6949 + resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==} 6950 + 6951 + tar@7.5.15: 6952 + resolution: {integrity: sha512-dzGK0boVlC4W5QFuQN1EFSl3bIDYsk7Tj40U6eIBnK2k/8ml7TZ5agbI5j5+qnoVcAA+rNtBml8SEiLxZpNqRQ==} 6953 + engines: {node: '>=18'} 6954 + 6955 + teex@1.0.1: 6956 + resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==} 6957 + 6958 + terser@5.48.0: 6959 + resolution: {integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==} 6960 + engines: {node: '>=10'} 6961 + hasBin: true 6962 + 6963 + text-decoder@1.2.7: 6964 + resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==} 6965 + 4630 6966 thread-stream@4.2.0: 4631 6967 resolution: {integrity: sha512-e2zZ96wSChazBsbENf/Pcm/4swHt2cEKQ92rhUjkL9GCKiTDJIaTBenjE/m9DXi0QBmTMDkFDdOomUy20A1tDQ==} 4632 6968 engines: {node: '>=20'} 4633 6969 6970 + tiny-invariant@1.3.3: 6971 + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} 6972 + 4634 6973 tinybench@2.9.0: 4635 6974 resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 4636 6975 6976 + tinyclip@0.1.12: 6977 + resolution: {integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==} 6978 + engines: {node: ^16.14.0 || >= 17.3.0} 6979 + 4637 6980 tinyexec@1.1.2: 4638 6981 resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==} 4639 6982 engines: {node: '>=18'} ··· 4649 6992 tinyrainbow@3.1.0: 4650 6993 resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} 4651 6994 engines: {node: '>=14.0.0'} 6995 + 6996 + to-regex-range@5.0.1: 6997 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 6998 + engines: {node: '>=8.0'} 4652 6999 4653 7000 to-valid-identifier@1.0.0: 4654 7001 resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==} ··· 4658 7005 resolution: {integrity: sha512-5DXWzE4Vz7xNHsv+xQ+MGfJYyC78Aok3tEr0MNwHoRf7vZnga1mQXZ4/Nsodld4VR6Wd+VhfmqnNrsRJyYPfrQ==} 4659 7006 engines: {node: '>=20'} 4660 7007 7008 + toidentifier@1.0.1: 7009 + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 7010 + engines: {node: '>=0.6'} 7011 + 4661 7012 toml-eslint-parser@1.0.3: 4662 7013 resolution: {integrity: sha512-A5F0cM6+mDleacLIEUkmfpkBbnHJFV1d2rprHU2MXNk7mlxHq2zGojA+SRvQD1RoMo9gqjZPWEaKG4v1BQ48lw==} 4663 7014 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 4664 7015 7016 + totalist@3.0.1: 7017 + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 7018 + engines: {node: '>=6'} 7019 + 4665 7020 tr46@0.0.3: 4666 7021 resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 4667 7022 ··· 4690 7045 resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 4691 7046 engines: {node: '>=16'} 4692 7047 7048 + type-fest@5.6.0: 7049 + resolution: {integrity: sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==} 7050 + engines: {node: '>=20'} 7051 + 7052 + type-level-regexp@0.1.17: 7053 + resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==} 7054 + 4693 7055 typescript@6.0.3: 4694 7056 resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} 4695 7057 engines: {node: '>=14.17'} ··· 4702 7064 ufo@1.6.3: 4703 7065 resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==} 4704 7066 7067 + ufo@1.6.4: 7068 + resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==} 7069 + 7070 + ultrahtml@1.6.0: 7071 + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 7072 + 4705 7073 unbash@3.0.0: 4706 7074 resolution: {integrity: sha512-FeFPZ/WFT0mbRCuydiZzpPFlrYN8ZUpphQKoq4EeElVIYjYyGzPMxQR/simUwCOJIyVhpFk4RbtyO7RuMpMnHA==} 4707 7075 engines: {node: '>=14'} ··· 4714 7082 peerDependenciesMeta: 4715 7083 typescript: 4716 7084 optional: true 7085 + 7086 + uncrypto@0.1.3: 7087 + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 7088 + 7089 + unctx@2.5.0: 7090 + resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==} 4717 7091 4718 7092 undici-types@7.16.0: 4719 7093 resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} 4720 7094 7095 + unenv@2.0.0-rc.24: 7096 + resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==} 7097 + 7098 + unhead@2.1.15: 7099 + resolution: {integrity: sha512-MCt5T90mCWyr3Z6pUCdM9lVRXoMoVBlL7z7U4CYVIiaDiuzad/UCfLuMqz5MeNmpZUgoBCQnrucJimU7EZR+XA==} 7100 + 4721 7101 unicorn-magic@0.1.0: 4722 7102 resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} 4723 7103 engines: {node: '>=18'} 4724 7104 7105 + unicorn-magic@0.3.0: 7106 + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} 7107 + engines: {node: '>=18'} 7108 + 7109 + unicorn-magic@0.4.0: 7110 + resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==} 7111 + engines: {node: '>=20'} 7112 + 7113 + unimport@6.3.0: 7114 + resolution: {integrity: sha512-M+Dxk5W9WRd+8j56W9tp8lGW/dmMc7g5zj7BWQnEjKQhryBstqsi1V0izb0zHwSkEN8cSYV7K75/bykairV2tA==} 7115 + engines: {node: '>=18.12.0'} 7116 + peerDependencies: 7117 + oxc-parser: '*' 7118 + rolldown: ^1.0.0 7119 + peerDependenciesMeta: 7120 + oxc-parser: 7121 + optional: true 7122 + rolldown: 7123 + optional: true 7124 + 4725 7125 unist-util-is@6.0.1: 4726 7126 resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 4727 7127 ··· 4740 7140 universal-cookie@8.1.2: 4741 7141 resolution: {integrity: sha512-kcKzTGNsxVytujrYOvQbvh//QyFrA53HrzCGyzh6i9ujCww5gfPrLK0tG+jJD40SIIldiEjBNPPSR8fBMS21GA==} 4742 7142 7143 + unplugin-utils@0.3.1: 7144 + resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==} 7145 + engines: {node: '>=20.19.0'} 7146 + 7147 + unplugin@2.3.11: 7148 + resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==} 7149 + engines: {node: '>=18.12.0'} 7150 + 7151 + unplugin@3.0.0: 7152 + resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==} 7153 + engines: {node: ^20.19.0 || >=22.12.0} 7154 + 7155 + unrouting@0.1.7: 7156 + resolution: {integrity: sha512-+0hfD+CVWtD636rc5Fn9VEjjTEDhdqgMpbwAuVoUmydSHDaMNiFW93SJG4LV++RoGSEAyvQN5uABAscYpDphpQ==} 7157 + 7158 + unstorage@1.17.5: 7159 + resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==} 7160 + peerDependencies: 7161 + '@azure/app-configuration': ^1.8.0 7162 + '@azure/cosmos': ^4.2.0 7163 + '@azure/data-tables': ^13.3.0 7164 + '@azure/identity': ^4.6.0 7165 + '@azure/keyvault-secrets': ^4.9.0 7166 + '@azure/storage-blob': ^12.26.0 7167 + '@capacitor/preferences': ^6 || ^7 || ^8 7168 + '@deno/kv': '>=0.9.0' 7169 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 7170 + '@planetscale/database': ^1.19.0 7171 + '@upstash/redis': ^1.34.3 7172 + '@vercel/blob': '>=0.27.1' 7173 + '@vercel/functions': ^2.2.12 || ^3.0.0 7174 + '@vercel/kv': ^1 || ^2 || ^3 7175 + aws4fetch: ^1.0.20 7176 + db0: '>=0.2.1' 7177 + idb-keyval: ^6.2.1 7178 + ioredis: ^5.4.2 7179 + uploadthing: ^7.4.4 7180 + peerDependenciesMeta: 7181 + '@azure/app-configuration': 7182 + optional: true 7183 + '@azure/cosmos': 7184 + optional: true 7185 + '@azure/data-tables': 7186 + optional: true 7187 + '@azure/identity': 7188 + optional: true 7189 + '@azure/keyvault-secrets': 7190 + optional: true 7191 + '@azure/storage-blob': 7192 + optional: true 7193 + '@capacitor/preferences': 7194 + optional: true 7195 + '@deno/kv': 7196 + optional: true 7197 + '@netlify/blobs': 7198 + optional: true 7199 + '@planetscale/database': 7200 + optional: true 7201 + '@upstash/redis': 7202 + optional: true 7203 + '@vercel/blob': 7204 + optional: true 7205 + '@vercel/functions': 7206 + optional: true 7207 + '@vercel/kv': 7208 + optional: true 7209 + aws4fetch: 7210 + optional: true 7211 + db0: 7212 + optional: true 7213 + idb-keyval: 7214 + optional: true 7215 + ioredis: 7216 + optional: true 7217 + uploadthing: 7218 + optional: true 7219 + 7220 + untun@0.1.3: 7221 + resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} 7222 + hasBin: true 7223 + 4743 7224 untyped@2.0.0: 4744 7225 resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==} 4745 7226 hasBin: true 4746 7227 7228 + unwasm@0.5.3: 7229 + resolution: {integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw==} 7230 + 4747 7231 update-browserslist-db@1.2.3: 4748 7232 resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} 4749 7233 hasBin: true 4750 7234 peerDependencies: 4751 7235 browserslist: '>= 4.21.0' 7236 + 7237 + uqr@0.1.3: 7238 + resolution: {integrity: sha512-0rjE8iEJe4YmT9TOhwsZtqCMRLc5DXZUI2UEYUUg63ikBkqqE5EYWaI0etFe/5KUcmcYwLih2RND1kq+hrUJXA==} 4752 7239 4753 7240 uri-js@4.4.1: 4754 7241 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} ··· 4783 7270 resolution: {integrity: sha512-JwPr6erhX53EWH/HCSzfy1tTFrtPXUe927wdM1jqBBeYp1OM+qPHjWbsvv6pIBduqdgxxS+ScfG7S28pzyr2DQ==} 4784 7271 engines: {node: '>=0.10.48'} 4785 7272 7273 + vite-dev-rpc@1.1.0: 7274 + resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==} 7275 + peerDependencies: 7276 + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0 7277 + 7278 + vite-hot-client@2.2.0: 7279 + resolution: {integrity: sha512-76Zs9zrHbH7M7wqeyooGQKdX+yg0pQ0xuQ1PbFp4z5a0Lzn2e5IPFoCswnmqZ4GiwqB4Jo3WcDAMO9jARTJl8w==} 7280 + peerDependencies: 7281 + vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 || ^8.0.0 7282 + 7283 + vite-node@5.3.0: 7284 + resolution: {integrity: sha512-8f20COPYJujc3OKPX6OuyBy3ZIv2det4eRRU4GY1y2MjbeGSUmPjedxg1b72KnTagCofwvZ65ThzjxDW2AtQFQ==} 7285 + engines: {node: ^20.19.0 || >=22.12.0} 7286 + hasBin: true 7287 + 7288 + vite-plugin-checker@0.13.0: 7289 + resolution: {integrity: sha512-14EkOZmfinVZNxRmg2uCNDwtqGc/33lU/UEJansHgu27+ad+r6mMBf1Xtnq57jGZWiO/xzwtiEKPYsganw7ZFQ==} 7290 + engines: {node: '>=16.11'} 7291 + peerDependencies: 7292 + '@biomejs/biome': '>=1.7' 7293 + eslint: '>=9.39.4' 7294 + meow: ^13.2.0 || ^14.0.0 7295 + optionator: ^0.9.4 7296 + oxlint: '>=1' 7297 + stylelint: '>=16.26.1' 7298 + typescript: '*' 7299 + vite: '>=5.4.21' 7300 + vls: '*' 7301 + vti: '*' 7302 + vue-tsc: ~2.2.10 || ^3.0.0 7303 + peerDependenciesMeta: 7304 + '@biomejs/biome': 7305 + optional: true 7306 + eslint: 7307 + optional: true 7308 + meow: 7309 + optional: true 7310 + optionator: 7311 + optional: true 7312 + oxlint: 7313 + optional: true 7314 + stylelint: 7315 + optional: true 7316 + typescript: 7317 + optional: true 7318 + vls: 7319 + optional: true 7320 + vti: 7321 + optional: true 7322 + vue-tsc: 7323 + optional: true 7324 + 7325 + vite-plugin-inspect@11.3.3: 7326 + resolution: {integrity: sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==} 7327 + engines: {node: '>=14'} 7328 + peerDependencies: 7329 + '@nuxt/kit': '*' 7330 + vite: ^6.0.0 || ^7.0.0-0 7331 + peerDependenciesMeta: 7332 + '@nuxt/kit': 7333 + optional: true 7334 + 7335 + vite-plugin-vue-tracer@1.4.0: 7336 + resolution: {integrity: sha512-0tQCjCqZWVSK6UeRW9S4ABbf47lKQ68zvrT2FNvZmiL+alDydCVyH/T3Jlfbdc3T3C2Iuyyl5aVsMbF8IQIoxA==} 7337 + peerDependencies: 7338 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0 7339 + vue: ^3.5.0 7340 + 7341 + vite@7.3.3: 7342 + resolution: {integrity: sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==} 7343 + engines: {node: ^20.19.0 || >=22.12.0} 7344 + hasBin: true 7345 + peerDependencies: 7346 + '@types/node': ^20.19.0 || >=22.12.0 7347 + jiti: '>=1.21.0' 7348 + less: ^4.0.0 7349 + lightningcss: ^1.21.0 7350 + sass: ^1.70.0 7351 + sass-embedded: ^1.70.0 7352 + stylus: '>=0.54.8' 7353 + sugarss: ^5.0.0 7354 + terser: ^5.16.0 7355 + tsx: ^4.8.1 7356 + yaml: ^2.4.2 7357 + peerDependenciesMeta: 7358 + '@types/node': 7359 + optional: true 7360 + jiti: 7361 + optional: true 7362 + less: 7363 + optional: true 7364 + lightningcss: 7365 + optional: true 7366 + sass: 7367 + optional: true 7368 + sass-embedded: 7369 + optional: true 7370 + stylus: 7371 + optional: true 7372 + sugarss: 7373 + optional: true 7374 + terser: 7375 + optional: true 7376 + tsx: 7377 + optional: true 7378 + yaml: 7379 + optional: true 7380 + 4786 7381 vite@8.0.14: 4787 7382 resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==} 4788 7383 engines: {node: ^20.19.0 || >=22.12.0} ··· 4826 7421 yaml: 4827 7422 optional: true 4828 7423 7424 + vitest-environment-nuxt@2.0.0: 7425 + resolution: {integrity: sha512-zEGFRiCAaRR3fHnqISHKMNTRvCzkQEI1XyFeqNgR2IBD0oYkfZ1rUHwi7C+h3Cns3KPykfB0av1B3MtLEbChDw==} 7426 + 4829 7427 vitest@4.1.7: 4830 7428 resolution: {integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==} 4831 7429 engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 4870 7468 vscode-uri@3.1.0: 4871 7469 resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} 4872 7470 7471 + vue-bundle-renderer@2.2.0: 7472 + resolution: {integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==} 7473 + 7474 + vue-devtools-stub@0.1.0: 7475 + resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==} 7476 + 4873 7477 vue-eslint-parser@10.4.0: 4874 7478 resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==} 4875 7479 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 4876 7480 peerDependencies: 4877 7481 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 4878 7482 7483 + vue-router@5.0.7: 7484 + resolution: {integrity: sha512-dqfk8kvRbCutmCOCj/XLDqDEYxc1wBdAOGLuVy5M93ifYMsBd5fIjfaPN4tQAbxr5IprdBDIox1gr4wYyOx/SA==} 7485 + peerDependencies: 7486 + '@pinia/colada': '>=0.21.2' 7487 + '@vue/compiler-sfc': ^3.5.34 7488 + pinia: ^3.0.4 7489 + vue: ^3.5.34 7490 + peerDependenciesMeta: 7491 + '@pinia/colada': 7492 + optional: true 7493 + '@vue/compiler-sfc': 7494 + optional: true 7495 + pinia: 7496 + optional: true 7497 + 4879 7498 vue-tsc@3.2.8: 4880 7499 resolution: {integrity: sha512-27vTLJ6Q2370obOd0PFYoYoKnmXJ521uUIedrs3Zhhhg/8YG10VOCMmwt+JQslatpAMTDbnWiitLnoD5VlIvog==} 4881 7500 hasBin: true ··· 4897 7516 webidl-conversions@3.0.1: 4898 7517 resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 4899 7518 7519 + webpack-virtual-modules@0.6.2: 7520 + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} 7521 + 7522 + whatwg-mimetype@3.0.0: 7523 + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} 7524 + engines: {node: '>=12'} 7525 + 4900 7526 whatwg-url@5.0.0: 4901 7527 resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 4902 7528 ··· 4914 7540 engines: {node: ^16.13.0 || >=18.0.0} 4915 7541 hasBin: true 4916 7542 7543 + which@6.0.1: 7544 + resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==} 7545 + engines: {node: ^20.17.0 || >=22.9.0} 7546 + hasBin: true 7547 + 4917 7548 why-is-node-running@2.3.0: 4918 7549 resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 4919 7550 engines: {node: '>=8'} ··· 4935 7566 resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 4936 7567 engines: {node: '>=12'} 4937 7568 7569 + wrap-ansi@9.0.2: 7570 + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 7571 + engines: {node: '>=18'} 7572 + 4938 7573 wrappy@1.0.2: 4939 7574 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 4940 7575 ··· 4950 7585 utf-8-validate: 4951 7586 optional: true 4952 7587 7588 + wsl-utils@0.1.0: 7589 + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} 7590 + engines: {node: '>=18'} 7591 + 7592 + wsl-utils@0.3.1: 7593 + resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} 7594 + engines: {node: '>=20'} 7595 + 4953 7596 xml-name-validator@4.0.0: 4954 7597 resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 4955 7598 engines: {node: '>=12'} ··· 4962 7605 resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 4963 7606 engines: {node: '>=10'} 4964 7607 7608 + yallist@3.1.1: 7609 + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 7610 + 7611 + yallist@5.0.0: 7612 + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 7613 + engines: {node: '>=18'} 7614 + 4965 7615 yaml-eslint-parser@2.0.0: 4966 7616 resolution: {integrity: sha512-h0uDm97wvT2bokfwwTmY6kJ1hp6YDFL0nRHwNKz8s/VD1FH/vvZjAKoMUE+un0eaYBSG7/c6h+lJTP+31tjgTw==} 4967 7617 engines: {node: ^20.19.0 || ^22.13.0 || >=24} ··· 4975 7625 resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 4976 7626 engines: {node: '>=12'} 4977 7627 7628 + yargs-parser@22.0.0: 7629 + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} 7630 + engines: {node: ^20.19.0 || ^22.12.0 || >=23} 7631 + 4978 7632 yargs@17.7.2: 4979 7633 resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 4980 7634 engines: {node: '>=12'} 7635 + 7636 + yargs@18.0.0: 7637 + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} 7638 + engines: {node: ^20.19.0 || ^22.12.0 || >=23} 4981 7639 4982 7640 yocto-queue@0.1.0: 4983 7641 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} ··· 4990 7648 yoctocolors@2.1.2: 4991 7649 resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} 4992 7650 engines: {node: '>=18'} 7651 + 7652 + youch-core@0.3.3: 7653 + resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} 7654 + 7655 + youch@4.1.1: 7656 + resolution: {integrity: sha512-mxW3qiSnl+GRxXsaUMzv2Mbada1Y8CDltET9UxejDQe6DBYlSekghl5U5K0ReAikcHDi0G1vKZEmmo/NWAGKLA==} 7657 + 7658 + zip-stream@6.0.1: 7659 + resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} 7660 + engines: {node: '>= 14'} 4993 7661 4994 7662 zod@4.3.6: 4995 7663 resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} ··· 5063 7731 '@babel/helper-validator-identifier': 7.28.5 5064 7732 js-tokens: 4.0.0 5065 7733 picocolors: 1.1.1 7734 + optional: true 7735 + 7736 + '@babel/code-frame@7.29.0': 7737 + dependencies: 7738 + '@babel/helper-validator-identifier': 7.28.5 7739 + js-tokens: 4.0.0 7740 + picocolors: 1.1.1 7741 + 7742 + '@babel/compat-data@7.29.3': {} 7743 + 7744 + '@babel/core@7.29.0': 7745 + dependencies: 7746 + '@babel/code-frame': 7.29.0 7747 + '@babel/generator': 7.29.1 7748 + '@babel/helper-compilation-targets': 7.28.6 7749 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) 7750 + '@babel/helpers': 7.29.2 7751 + '@babel/parser': 7.29.3 7752 + '@babel/template': 7.28.6 7753 + '@babel/traverse': 7.29.0 7754 + '@babel/types': 7.29.0 7755 + '@jridgewell/remapping': 2.3.5 7756 + convert-source-map: 2.0.0 7757 + debug: 4.4.3 7758 + gensync: 1.0.0-beta.2 7759 + json5: 2.2.3 7760 + semver: 6.3.1 7761 + transitivePeerDependencies: 7762 + - supports-color 7763 + 7764 + '@babel/generator@7.29.1': 7765 + dependencies: 7766 + '@babel/parser': 7.29.3 7767 + '@babel/types': 7.29.0 7768 + '@jridgewell/gen-mapping': 0.3.13 7769 + '@jridgewell/trace-mapping': 0.3.31 7770 + jsesc: 3.1.0 7771 + 7772 + '@babel/generator@8.0.0-rc.5': 7773 + dependencies: 7774 + '@babel/parser': 8.0.0-rc.5 7775 + '@babel/types': 8.0.0-rc.5 7776 + '@jridgewell/gen-mapping': 0.3.13 7777 + '@jridgewell/trace-mapping': 0.3.31 7778 + '@types/jsesc': 2.5.1 7779 + jsesc: 3.1.0 7780 + 7781 + '@babel/helper-annotate-as-pure@7.27.3': 7782 + dependencies: 7783 + '@babel/types': 7.29.0 7784 + 7785 + '@babel/helper-compilation-targets@7.28.6': 7786 + dependencies: 7787 + '@babel/compat-data': 7.29.3 7788 + '@babel/helper-validator-option': 7.27.1 7789 + browserslist: 4.28.2 7790 + lru-cache: 5.1.1 7791 + semver: 6.3.1 7792 + 7793 + '@babel/helper-create-class-features-plugin@7.29.3(@babel/core@7.29.0)': 7794 + dependencies: 7795 + '@babel/core': 7.29.0 7796 + '@babel/helper-annotate-as-pure': 7.27.3 7797 + '@babel/helper-member-expression-to-functions': 7.28.5 7798 + '@babel/helper-optimise-call-expression': 7.27.1 7799 + '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0) 7800 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 7801 + '@babel/traverse': 7.29.0 7802 + semver: 6.3.1 7803 + transitivePeerDependencies: 7804 + - supports-color 7805 + 7806 + '@babel/helper-globals@7.28.0': {} 7807 + 7808 + '@babel/helper-member-expression-to-functions@7.28.5': 7809 + dependencies: 7810 + '@babel/traverse': 7.29.0 7811 + '@babel/types': 7.29.0 7812 + transitivePeerDependencies: 7813 + - supports-color 7814 + 7815 + '@babel/helper-module-imports@7.28.6': 7816 + dependencies: 7817 + '@babel/traverse': 7.29.0 7818 + '@babel/types': 7.29.0 7819 + transitivePeerDependencies: 7820 + - supports-color 7821 + 7822 + '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)': 7823 + dependencies: 7824 + '@babel/core': 7.29.0 7825 + '@babel/helper-module-imports': 7.28.6 7826 + '@babel/helper-validator-identifier': 7.28.5 7827 + '@babel/traverse': 7.29.0 7828 + transitivePeerDependencies: 7829 + - supports-color 7830 + 7831 + '@babel/helper-optimise-call-expression@7.27.1': 7832 + dependencies: 7833 + '@babel/types': 7.29.0 7834 + 7835 + '@babel/helper-plugin-utils@7.28.6': {} 7836 + 7837 + '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)': 7838 + dependencies: 7839 + '@babel/core': 7.29.0 7840 + '@babel/helper-member-expression-to-functions': 7.28.5 7841 + '@babel/helper-optimise-call-expression': 7.27.1 7842 + '@babel/traverse': 7.29.0 7843 + transitivePeerDependencies: 7844 + - supports-color 7845 + 7846 + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 7847 + dependencies: 7848 + '@babel/traverse': 7.29.0 7849 + '@babel/types': 7.29.0 7850 + transitivePeerDependencies: 7851 + - supports-color 5066 7852 5067 7853 '@babel/helper-string-parser@7.27.1': {} 5068 7854 7855 + '@babel/helper-string-parser@8.0.0-rc.5': {} 7856 + 5069 7857 '@babel/helper-validator-identifier@7.28.5': {} 5070 7858 7859 + '@babel/helper-validator-identifier@8.0.0-rc.5': {} 7860 + 7861 + '@babel/helper-validator-option@7.27.1': {} 7862 + 7863 + '@babel/helpers@7.29.2': 7864 + dependencies: 7865 + '@babel/template': 7.28.6 7866 + '@babel/types': 7.29.0 7867 + 5071 7868 '@babel/parser@7.29.2': 5072 7869 dependencies: 5073 7870 '@babel/types': 7.29.0 ··· 5076 7873 dependencies: 5077 7874 '@babel/types': 7.29.0 5078 7875 7876 + '@babel/parser@8.0.0-rc.5': 7877 + dependencies: 7878 + '@babel/types': 8.0.0-rc.5 7879 + 7880 + '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)': 7881 + dependencies: 7882 + '@babel/core': 7.29.0 7883 + '@babel/helper-plugin-utils': 7.28.6 7884 + 7885 + '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)': 7886 + dependencies: 7887 + '@babel/core': 7.29.0 7888 + '@babel/helper-plugin-utils': 7.28.6 7889 + 7890 + '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)': 7891 + dependencies: 7892 + '@babel/core': 7.29.0 7893 + '@babel/helper-annotate-as-pure': 7.27.3 7894 + '@babel/helper-create-class-features-plugin': 7.29.3(@babel/core@7.29.0) 7895 + '@babel/helper-plugin-utils': 7.28.6 7896 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 7897 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) 7898 + transitivePeerDependencies: 7899 + - supports-color 7900 + 7901 + '@babel/template@7.28.6': 7902 + dependencies: 7903 + '@babel/code-frame': 7.29.0 7904 + '@babel/parser': 7.29.3 7905 + '@babel/types': 7.29.0 7906 + 7907 + '@babel/traverse@7.29.0': 7908 + dependencies: 7909 + '@babel/code-frame': 7.29.0 7910 + '@babel/generator': 7.29.1 7911 + '@babel/helper-globals': 7.28.0 7912 + '@babel/parser': 7.29.3 7913 + '@babel/template': 7.28.6 7914 + '@babel/types': 7.29.0 7915 + debug: 4.4.3 7916 + transitivePeerDependencies: 7917 + - supports-color 7918 + 5079 7919 '@babel/types@7.29.0': 5080 7920 dependencies: 5081 7921 '@babel/helper-string-parser': 7.27.1 5082 7922 '@babel/helper-validator-identifier': 7.28.5 7923 + 7924 + '@babel/types@8.0.0-rc.5': 7925 + dependencies: 7926 + '@babel/helper-string-parser': 8.0.0-rc.5 7927 + '@babel/helper-validator-identifier': 8.0.0-rc.5 5083 7928 5084 7929 '@badrap/valita@0.3.11': {} 5085 7930 5086 7931 '@bcoe/v8-coverage@1.0.2': {} 5087 7932 7933 + '@bomb.sh/tab@0.0.15(cac@6.7.14)(citty@0.2.2)': 7934 + optionalDependencies: 7935 + cac: 6.7.14 7936 + citty: 0.2.2 7937 + 7938 + '@clack/core@1.2.0': 7939 + dependencies: 7940 + fast-wrap-ansi: 0.1.6 7941 + sisteransi: 1.0.5 7942 + 5088 7943 '@clack/core@1.3.1': 5089 7944 dependencies: 5090 7945 fast-wrap-ansi: 0.2.0 5091 7946 sisteransi: 1.0.5 5092 7947 7948 + '@clack/prompts@1.2.0': 7949 + dependencies: 7950 + '@clack/core': 1.2.0 7951 + fast-string-width: 1.1.0 7952 + fast-wrap-ansi: 0.1.6 7953 + sisteransi: 1.0.5 7954 + 5093 7955 '@clack/prompts@1.4.0': 5094 7956 dependencies: 5095 7957 '@clack/core': 1.3.1 5096 7958 fast-string-width: 3.0.2 5097 7959 fast-wrap-ansi: 0.2.0 5098 7960 sisteransi: 1.0.5 7961 + 7962 + '@cloudflare/kv-asset-handler@0.4.2': {} 7963 + 7964 + '@colordx/core@5.4.3': {} 5099 7965 5100 7966 '@databases/escape-identifier@1.0.3': 5101 7967 dependencies: ··· 5121 7987 5122 7988 '@drdgvhbh/postgres-error-codes@0.0.6': {} 5123 7989 7990 + '@dxup/nuxt@0.4.1(magicast@0.5.2)(typescript@6.0.3)': 7991 + dependencies: 7992 + '@dxup/unimport': 0.1.2 7993 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 7994 + chokidar: 5.0.0 7995 + pathe: 2.0.3 7996 + tinyglobby: 0.2.16 7997 + optionalDependencies: 7998 + typescript: 6.0.3 7999 + transitivePeerDependencies: 8000 + - magicast 8001 + 8002 + '@dxup/unimport@0.1.2': {} 8003 + 5124 8004 '@e18e/eslint-plugin@0.4.1(eslint@10.4.0(jiti@2.7.0))': 5125 8005 dependencies: 5126 8006 empathic: 2.0.0 ··· 5170 8050 '@esbuild/aix-ppc64@0.25.12': 5171 8051 optional: true 5172 8052 8053 + '@esbuild/aix-ppc64@0.27.7': 8054 + optional: true 8055 + 5173 8056 '@esbuild/aix-ppc64@0.28.0': 5174 8057 optional: true 5175 8058 5176 8059 '@esbuild/android-arm64@0.25.12': 5177 8060 optional: true 5178 8061 8062 + '@esbuild/android-arm64@0.27.7': 8063 + optional: true 8064 + 5179 8065 '@esbuild/android-arm64@0.28.0': 5180 8066 optional: true 5181 8067 5182 8068 '@esbuild/android-arm@0.25.12': 5183 8069 optional: true 5184 8070 8071 + '@esbuild/android-arm@0.27.7': 8072 + optional: true 8073 + 5185 8074 '@esbuild/android-arm@0.28.0': 5186 8075 optional: true 5187 8076 5188 8077 '@esbuild/android-x64@0.25.12': 5189 8078 optional: true 5190 8079 8080 + '@esbuild/android-x64@0.27.7': 8081 + optional: true 8082 + 5191 8083 '@esbuild/android-x64@0.28.0': 5192 8084 optional: true 5193 8085 5194 8086 '@esbuild/darwin-arm64@0.25.12': 5195 8087 optional: true 5196 8088 8089 + '@esbuild/darwin-arm64@0.27.7': 8090 + optional: true 8091 + 5197 8092 '@esbuild/darwin-arm64@0.28.0': 5198 8093 optional: true 5199 8094 5200 8095 '@esbuild/darwin-x64@0.25.12': 5201 8096 optional: true 5202 8097 8098 + '@esbuild/darwin-x64@0.27.7': 8099 + optional: true 8100 + 5203 8101 '@esbuild/darwin-x64@0.28.0': 5204 8102 optional: true 5205 8103 5206 8104 '@esbuild/freebsd-arm64@0.25.12': 5207 8105 optional: true 5208 8106 8107 + '@esbuild/freebsd-arm64@0.27.7': 8108 + optional: true 8109 + 5209 8110 '@esbuild/freebsd-arm64@0.28.0': 5210 8111 optional: true 5211 8112 5212 8113 '@esbuild/freebsd-x64@0.25.12': 5213 8114 optional: true 5214 8115 8116 + '@esbuild/freebsd-x64@0.27.7': 8117 + optional: true 8118 + 5215 8119 '@esbuild/freebsd-x64@0.28.0': 5216 8120 optional: true 5217 8121 5218 8122 '@esbuild/linux-arm64@0.25.12': 5219 8123 optional: true 5220 8124 8125 + '@esbuild/linux-arm64@0.27.7': 8126 + optional: true 8127 + 5221 8128 '@esbuild/linux-arm64@0.28.0': 5222 8129 optional: true 5223 8130 5224 8131 '@esbuild/linux-arm@0.25.12': 5225 8132 optional: true 5226 8133 8134 + '@esbuild/linux-arm@0.27.7': 8135 + optional: true 8136 + 5227 8137 '@esbuild/linux-arm@0.28.0': 5228 8138 optional: true 5229 8139 5230 8140 '@esbuild/linux-ia32@0.25.12': 5231 8141 optional: true 5232 8142 8143 + '@esbuild/linux-ia32@0.27.7': 8144 + optional: true 8145 + 5233 8146 '@esbuild/linux-ia32@0.28.0': 5234 8147 optional: true 5235 8148 5236 8149 '@esbuild/linux-loong64@0.25.12': 5237 8150 optional: true 5238 8151 8152 + '@esbuild/linux-loong64@0.27.7': 8153 + optional: true 8154 + 5239 8155 '@esbuild/linux-loong64@0.28.0': 5240 8156 optional: true 5241 8157 5242 8158 '@esbuild/linux-mips64el@0.25.12': 5243 8159 optional: true 5244 8160 8161 + '@esbuild/linux-mips64el@0.27.7': 8162 + optional: true 8163 + 5245 8164 '@esbuild/linux-mips64el@0.28.0': 5246 8165 optional: true 5247 8166 5248 8167 '@esbuild/linux-ppc64@0.25.12': 5249 8168 optional: true 5250 8169 8170 + '@esbuild/linux-ppc64@0.27.7': 8171 + optional: true 8172 + 5251 8173 '@esbuild/linux-ppc64@0.28.0': 5252 8174 optional: true 5253 8175 5254 8176 '@esbuild/linux-riscv64@0.25.12': 5255 8177 optional: true 5256 8178 8179 + '@esbuild/linux-riscv64@0.27.7': 8180 + optional: true 8181 + 5257 8182 '@esbuild/linux-riscv64@0.28.0': 5258 8183 optional: true 5259 8184 5260 8185 '@esbuild/linux-s390x@0.25.12': 8186 + optional: true 8187 + 8188 + '@esbuild/linux-s390x@0.27.7': 5261 8189 optional: true 5262 8190 5263 8191 '@esbuild/linux-s390x@0.28.0': ··· 5266 8194 '@esbuild/linux-x64@0.25.12': 5267 8195 optional: true 5268 8196 8197 + '@esbuild/linux-x64@0.27.7': 8198 + optional: true 8199 + 5269 8200 '@esbuild/linux-x64@0.28.0': 5270 8201 optional: true 5271 8202 5272 8203 '@esbuild/netbsd-arm64@0.25.12': 8204 + optional: true 8205 + 8206 + '@esbuild/netbsd-arm64@0.27.7': 5273 8207 optional: true 5274 8208 5275 8209 '@esbuild/netbsd-arm64@0.28.0': ··· 5278 8212 '@esbuild/netbsd-x64@0.25.12': 5279 8213 optional: true 5280 8214 8215 + '@esbuild/netbsd-x64@0.27.7': 8216 + optional: true 8217 + 5281 8218 '@esbuild/netbsd-x64@0.28.0': 5282 8219 optional: true 5283 8220 5284 8221 '@esbuild/openbsd-arm64@0.25.12': 5285 8222 optional: true 5286 8223 8224 + '@esbuild/openbsd-arm64@0.27.7': 8225 + optional: true 8226 + 5287 8227 '@esbuild/openbsd-arm64@0.28.0': 5288 8228 optional: true 5289 8229 5290 8230 '@esbuild/openbsd-x64@0.25.12': 5291 8231 optional: true 5292 8232 8233 + '@esbuild/openbsd-x64@0.27.7': 8234 + optional: true 8235 + 5293 8236 '@esbuild/openbsd-x64@0.28.0': 5294 8237 optional: true 5295 8238 5296 8239 '@esbuild/openharmony-arm64@0.25.12': 5297 8240 optional: true 5298 8241 8242 + '@esbuild/openharmony-arm64@0.27.7': 8243 + optional: true 8244 + 5299 8245 '@esbuild/openharmony-arm64@0.28.0': 5300 8246 optional: true 5301 8247 5302 8248 '@esbuild/sunos-x64@0.25.12': 8249 + optional: true 8250 + 8251 + '@esbuild/sunos-x64@0.27.7': 5303 8252 optional: true 5304 8253 5305 8254 '@esbuild/sunos-x64@0.28.0': ··· 5308 8257 '@esbuild/win32-arm64@0.25.12': 5309 8258 optional: true 5310 8259 8260 + '@esbuild/win32-arm64@0.27.7': 8261 + optional: true 8262 + 5311 8263 '@esbuild/win32-arm64@0.28.0': 5312 8264 optional: true 5313 8265 5314 8266 '@esbuild/win32-ia32@0.25.12': 5315 8267 optional: true 5316 8268 8269 + '@esbuild/win32-ia32@0.27.7': 8270 + optional: true 8271 + 5317 8272 '@esbuild/win32-ia32@0.28.0': 5318 8273 optional: true 5319 8274 5320 8275 '@esbuild/win32-x64@0.25.12': 8276 + optional: true 8277 + 8278 + '@esbuild/win32-x64@0.27.7': 5321 8279 optional: true 5322 8280 5323 8281 '@esbuild/win32-x64@0.28.0': ··· 5457 8415 5458 8416 '@humanwhocodes/retry@0.4.3': {} 5459 8417 8418 + '@ioredis/commands@1.5.1': {} 8419 + 5460 8420 '@isaacs/cliui@8.0.2': 5461 8421 dependencies: 5462 8422 string-width: 5.1.2 ··· 5466 8426 wrap-ansi: 8.1.0 5467 8427 wrap-ansi-cjs: wrap-ansi@7.0.0 5468 8428 8429 + '@isaacs/fs-minipass@4.0.1': 8430 + dependencies: 8431 + minipass: 7.1.3 8432 + 8433 + '@jridgewell/gen-mapping@0.3.13': 8434 + dependencies: 8435 + '@jridgewell/sourcemap-codec': 1.5.5 8436 + '@jridgewell/trace-mapping': 0.3.31 8437 + 8438 + '@jridgewell/remapping@2.3.5': 8439 + dependencies: 8440 + '@jridgewell/gen-mapping': 0.3.13 8441 + '@jridgewell/trace-mapping': 0.3.31 8442 + 5469 8443 '@jridgewell/resolve-uri@3.1.2': {} 5470 8444 8445 + '@jridgewell/source-map@0.3.11': 8446 + dependencies: 8447 + '@jridgewell/gen-mapping': 0.3.13 8448 + '@jridgewell/trace-mapping': 0.3.31 8449 + 5471 8450 '@jridgewell/sourcemap-codec@1.5.5': {} 5472 8451 5473 8452 '@jridgewell/trace-mapping@0.3.31': ··· 5477 8456 5478 8457 '@js-sdsl/ordered-map@4.4.2': {} 5479 8458 8459 + '@kwsites/file-exists@1.1.1': 8460 + dependencies: 8461 + debug: 4.4.3 8462 + transitivePeerDependencies: 8463 + - supports-color 8464 + 8465 + '@kwsites/promise-deferred@1.1.1': {} 8466 + 8467 + '@mapbox/node-pre-gyp@2.0.3': 8468 + dependencies: 8469 + consola: 3.4.2 8470 + detect-libc: 2.1.2 8471 + https-proxy-agent: 7.0.6 8472 + node-fetch: 2.7.0 8473 + nopt: 8.1.0 8474 + semver: 7.8.1 8475 + tar: 7.5.15 8476 + transitivePeerDependencies: 8477 + - encoding 8478 + - supports-color 8479 + 5480 8480 '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': 5481 8481 dependencies: 5482 8482 '@emnapi/core': 1.10.0 ··· 5492 8492 5493 8493 '@noble/hashes@1.8.0': {} 5494 8494 8495 + '@nodelib/fs.scandir@2.1.5': 8496 + dependencies: 8497 + '@nodelib/fs.stat': 2.0.5 8498 + run-parallel: 1.2.0 8499 + 8500 + '@nodelib/fs.stat@2.0.5': {} 8501 + 8502 + '@nodelib/fs.walk@1.2.8': 8503 + dependencies: 8504 + '@nodelib/fs.scandir': 2.1.5 8505 + fastq: 1.20.1 8506 + 5495 8507 '@npmcli/map-workspaces@3.0.6': 5496 8508 dependencies: 5497 8509 '@npmcli/name-from-folder': 2.0.0 ··· 5501 8513 5502 8514 '@npmcli/name-from-folder@2.0.0': {} 5503 8515 8516 + '@nuxt/cli@3.35.2(@nuxt/schema@4.4.6)(cac@6.7.14)(magicast@0.5.2)': 8517 + dependencies: 8518 + '@bomb.sh/tab': 0.0.15(cac@6.7.14)(citty@0.2.2) 8519 + '@clack/prompts': 1.4.0 8520 + c12: 3.3.4(magicast@0.5.2) 8521 + citty: 0.2.2 8522 + confbox: 0.2.4 8523 + consola: 3.4.2 8524 + debug: 4.4.3 8525 + defu: 6.1.7 8526 + exsolve: 1.0.8 8527 + fuse.js: 7.3.0 8528 + fzf: 0.5.2 8529 + giget: 3.2.0 8530 + jiti: 2.7.0 8531 + listhen: 1.10.0(srvx@0.11.16) 8532 + nypm: 0.6.6 8533 + ofetch: 1.5.1 8534 + ohash: 2.0.11 8535 + pathe: 2.0.3 8536 + perfect-debounce: 2.1.0 8537 + pkg-types: 2.3.1 8538 + scule: 1.3.0 8539 + semver: 7.8.1 8540 + srvx: 0.11.16 8541 + std-env: 4.1.0 8542 + tinyclip: 0.1.12 8543 + tinyexec: 1.1.2 8544 + ufo: 1.6.4 8545 + youch: 4.1.1 8546 + optionalDependencies: 8547 + '@nuxt/schema': 4.4.6 8548 + transitivePeerDependencies: 8549 + - cac 8550 + - commander 8551 + - magicast 8552 + - supports-color 8553 + 8554 + '@nuxt/devalue@2.0.2': {} 8555 + 8556 + '@nuxt/devtools-kit@2.7.0(magicast@0.5.2)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))': 8557 + dependencies: 8558 + '@nuxt/kit': 3.21.6(magicast@0.5.2) 8559 + execa: 8.0.1 8560 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 8561 + transitivePeerDependencies: 8562 + - magicast 8563 + 8564 + '@nuxt/devtools-kit@3.2.4(magicast@0.5.2)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))': 8565 + dependencies: 8566 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 8567 + execa: 8.0.1 8568 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 8569 + transitivePeerDependencies: 8570 + - magicast 8571 + 8572 + '@nuxt/devtools-wizard@3.2.4': 8573 + dependencies: 8574 + '@clack/prompts': 1.4.0 8575 + consola: 3.4.2 8576 + diff: 8.0.4 8577 + execa: 8.0.1 8578 + magicast: 0.5.2 8579 + pathe: 2.0.3 8580 + pkg-types: 2.3.1 8581 + semver: 7.8.1 8582 + 8583 + '@nuxt/devtools@3.2.4(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))': 8584 + dependencies: 8585 + '@nuxt/devtools-kit': 3.2.4(magicast@0.5.2)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 8586 + '@nuxt/devtools-wizard': 3.2.4 8587 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 8588 + '@vue/devtools-core': 8.1.2(vue@3.5.34(typescript@6.0.3)) 8589 + '@vue/devtools-kit': 8.1.2 8590 + birpc: 4.0.0 8591 + consola: 3.4.2 8592 + destr: 2.0.5 8593 + error-stack-parser-es: 1.0.5 8594 + execa: 8.0.1 8595 + fast-npm-meta: 1.5.1 8596 + get-port-please: 3.2.0 8597 + hookable: 6.1.1 8598 + image-meta: 0.2.2 8599 + is-installed-globally: 1.0.0 8600 + launch-editor: 2.13.2 8601 + local-pkg: 1.1.2 8602 + magicast: 0.5.2 8603 + nypm: 0.6.6 8604 + ohash: 2.0.11 8605 + pathe: 2.0.3 8606 + perfect-debounce: 2.1.0 8607 + pkg-types: 2.3.1 8608 + semver: 7.8.1 8609 + simple-git: 3.36.0 8610 + sirv: 3.0.2 8611 + structured-clone-es: 2.0.0 8612 + tinyglobby: 0.2.16 8613 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 8614 + vite-plugin-inspect: 11.3.3(@nuxt/kit@4.4.6(magicast@0.5.2))(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 8615 + vite-plugin-vue-tracer: 1.4.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 8616 + which: 6.0.1 8617 + ws: 8.21.0 8618 + transitivePeerDependencies: 8619 + - bufferutil 8620 + - supports-color 8621 + - utf-8-validate 8622 + - vue 8623 + 8624 + '@nuxt/kit@3.21.6(magicast@0.5.2)': 8625 + dependencies: 8626 + c12: 3.3.4(magicast@0.5.2) 8627 + consola: 3.4.2 8628 + defu: 6.1.7 8629 + destr: 2.0.5 8630 + errx: 0.1.0 8631 + exsolve: 1.0.8 8632 + ignore: 7.0.5 8633 + jiti: 2.7.0 8634 + klona: 2.0.6 8635 + knitwork: 1.3.0 8636 + mlly: 1.8.2 8637 + ohash: 2.0.11 8638 + pathe: 2.0.3 8639 + pkg-types: 2.3.1 8640 + rc9: 3.0.1 8641 + scule: 1.3.0 8642 + semver: 7.8.1 8643 + tinyglobby: 0.2.16 8644 + ufo: 1.6.4 8645 + unctx: 2.5.0 8646 + untyped: 2.0.0 8647 + transitivePeerDependencies: 8648 + - magicast 8649 + 8650 + '@nuxt/kit@4.4.6(magicast@0.5.2)': 8651 + dependencies: 8652 + c12: 3.3.4(magicast@0.5.2) 8653 + consola: 3.4.2 8654 + defu: 6.1.7 8655 + destr: 2.0.5 8656 + errx: 0.1.0 8657 + exsolve: 1.0.8 8658 + ignore: 7.0.5 8659 + jiti: 2.7.0 8660 + klona: 2.0.6 8661 + mlly: 1.8.2 8662 + ohash: 2.0.11 8663 + pathe: 2.0.3 8664 + pkg-types: 2.3.1 8665 + rc9: 3.0.1 8666 + scule: 1.3.0 8667 + semver: 7.8.1 8668 + tinyglobby: 0.2.16 8669 + ufo: 1.6.4 8670 + unctx: 2.5.0 8671 + untyped: 2.0.0 8672 + transitivePeerDependencies: 8673 + - magicast 8674 + 8675 + '@nuxt/nitro-server@4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.2)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.2)(srvx@0.11.16)(typescript@6.0.3)': 8676 + dependencies: 8677 + '@nuxt/devalue': 2.0.2 8678 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 8679 + '@unhead/vue': 2.1.15(vue@3.5.34(typescript@6.0.3)) 8680 + '@vue/shared': 3.5.34 8681 + consola: 3.4.2 8682 + defu: 6.1.7 8683 + destr: 2.0.5 8684 + devalue: 5.8.1 8685 + errx: 0.1.0 8686 + escape-string-regexp: 5.0.0 8687 + exsolve: 1.0.8 8688 + h3: 1.15.11 8689 + impound: 1.1.5 8690 + klona: 2.0.6 8691 + mocked-exports: 0.1.1 8692 + nitropack: 2.13.4(oxc-parser@0.131.0)(rolldown@1.0.2)(srvx@0.11.16) 8693 + nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0) 8694 + nypm: 0.6.6 8695 + ohash: 2.0.11 8696 + pathe: 2.0.3 8697 + rou3: 0.8.1 8698 + std-env: 4.1.0 8699 + ufo: 1.6.4 8700 + unctx: 2.5.0 8701 + unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1) 8702 + vue: 3.5.34(typescript@6.0.3) 8703 + vue-bundle-renderer: 2.2.0 8704 + vue-devtools-stub: 0.1.0 8705 + optionalDependencies: 8706 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) 8707 + transitivePeerDependencies: 8708 + - '@azure/app-configuration' 8709 + - '@azure/cosmos' 8710 + - '@azure/data-tables' 8711 + - '@azure/identity' 8712 + - '@azure/keyvault-secrets' 8713 + - '@azure/storage-blob' 8714 + - '@capacitor/preferences' 8715 + - '@deno/kv' 8716 + - '@electric-sql/pglite' 8717 + - '@libsql/client' 8718 + - '@netlify/blobs' 8719 + - '@planetscale/database' 8720 + - '@upstash/redis' 8721 + - '@vercel/blob' 8722 + - '@vercel/functions' 8723 + - '@vercel/kv' 8724 + - aws4fetch 8725 + - bare-abort-controller 8726 + - bare-buffer 8727 + - better-sqlite3 8728 + - db0 8729 + - drizzle-orm 8730 + - encoding 8731 + - idb-keyval 8732 + - ioredis 8733 + - magicast 8734 + - mysql2 8735 + - oxc-parser 8736 + - react-native-b4a 8737 + - rolldown 8738 + - sqlite3 8739 + - srvx 8740 + - supports-color 8741 + - typescript 8742 + - uploadthing 8743 + - xml2js 8744 + 8745 + '@nuxt/schema@4.4.6': 8746 + dependencies: 8747 + '@vue/shared': 3.5.34 8748 + defu: 6.1.7 8749 + pathe: 2.0.3 8750 + pkg-types: 2.3.1 8751 + std-env: 4.1.0 8752 + 8753 + '@nuxt/telemetry@2.8.0(@nuxt/kit@4.4.6(magicast@0.5.2))': 8754 + dependencies: 8755 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 8756 + citty: 0.2.2 8757 + consola: 3.4.2 8758 + ofetch: 2.0.0-alpha.3 8759 + rc9: 3.0.1 8760 + std-env: 4.1.0 8761 + 8762 + '@nuxt/test-utils@4.0.3(crossws@0.4.5(srvx@0.11.16))(happy-dom@20.9.0)(magicast@0.5.2)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vitest@4.1.7)': 8763 + dependencies: 8764 + '@clack/prompts': 1.2.0 8765 + '@nuxt/devtools-kit': 2.7.0(magicast@0.5.2)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 8766 + '@nuxt/kit': 3.21.6(magicast@0.5.2) 8767 + c12: 3.3.4(magicast@0.5.2) 8768 + consola: 3.4.2 8769 + defu: 6.1.7 8770 + destr: 2.0.5 8771 + estree-walker: 3.0.3 8772 + exsolve: 1.0.8 8773 + fake-indexeddb: 6.2.5 8774 + get-port-please: 3.2.0 8775 + h3: 1.15.11 8776 + h3-next: h3@2.0.1-rc.20(crossws@0.4.5(srvx@0.11.16)) 8777 + local-pkg: 1.1.2 8778 + magic-string: 0.30.21 8779 + node-fetch-native: 1.6.7 8780 + node-mock-http: 1.0.4 8781 + nypm: 0.6.6 8782 + ofetch: 1.5.1 8783 + pathe: 2.0.3 8784 + perfect-debounce: 2.1.0 8785 + radix3: 1.1.2 8786 + scule: 1.3.0 8787 + std-env: 4.1.0 8788 + tinyexec: 1.1.2 8789 + ufo: 1.6.4 8790 + unplugin: 3.0.0 8791 + vitest-environment-nuxt: 2.0.0(crossws@0.4.5(srvx@0.11.16))(happy-dom@20.9.0)(magicast@0.5.2)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vitest@4.1.7) 8792 + vue: 3.5.34(typescript@6.0.3) 8793 + optionalDependencies: 8794 + happy-dom: 20.9.0 8795 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 8796 + transitivePeerDependencies: 8797 + - crossws 8798 + - magicast 8799 + - typescript 8800 + - vite 8801 + 8802 + '@nuxt/vite-builder@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@types/node@24.11.0)(eslint@10.4.0(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.2)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vue-tsc@3.2.8(typescript@6.0.3))(vue@3.5.34(typescript@6.0.3))(yaml@2.9.0)': 8803 + dependencies: 8804 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 8805 + '@rollup/plugin-replace': 6.0.3(rollup@4.60.4) 8806 + '@vitejs/plugin-vue': 6.0.7(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 8807 + '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 8808 + autoprefixer: 10.5.0(postcss@8.5.15) 8809 + consola: 3.4.2 8810 + cssnano: 8.0.1(postcss@8.5.15) 8811 + defu: 6.1.7 8812 + escape-string-regexp: 5.0.0 8813 + exsolve: 1.0.8 8814 + get-port-please: 3.2.0 8815 + jiti: 2.7.0 8816 + knitwork: 1.3.0 8817 + magic-string: 0.30.21 8818 + mlly: 1.8.2 8819 + mocked-exports: 0.1.1 8820 + nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0) 8821 + nypm: 0.6.6 8822 + pathe: 2.0.3 8823 + pkg-types: 2.3.1 8824 + postcss: 8.5.15 8825 + seroval: 1.5.4 8826 + std-env: 4.1.0 8827 + ufo: 1.6.4 8828 + unenv: 2.0.0-rc.24 8829 + vite: 7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 8830 + vite-node: 5.3.0(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 8831 + vite-plugin-checker: 0.13.0(eslint@10.4.0(jiti@2.7.0))(optionator@0.9.4)(typescript@6.0.3)(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3)) 8832 + vue: 3.5.34(typescript@6.0.3) 8833 + vue-bundle-renderer: 2.2.0 8834 + optionalDependencies: 8835 + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0) 8836 + rolldown: 1.0.2 8837 + rollup-plugin-visualizer: 7.0.1(rolldown@1.0.2)(rollup@4.60.4) 8838 + transitivePeerDependencies: 8839 + - '@biomejs/biome' 8840 + - '@types/node' 8841 + - eslint 8842 + - less 8843 + - lightningcss 8844 + - magicast 8845 + - meow 8846 + - optionator 8847 + - oxlint 8848 + - rollup 8849 + - sass 8850 + - sass-embedded 8851 + - stylelint 8852 + - stylus 8853 + - sugarss 8854 + - supports-color 8855 + - terser 8856 + - tsx 8857 + - typescript 8858 + - vls 8859 + - vti 8860 + - vue-tsc 8861 + - yaml 8862 + 5504 8863 '@opentelemetry/api-logs@0.203.0': 5505 8864 dependencies: 5506 8865 '@opentelemetry/api': 1.9.1 ··· 6205 9564 6206 9565 '@ota-meshi/ast-token-store@0.3.0': {} 6207 9566 9567 + '@oxc-minify/binding-android-arm-eabi@0.131.0': 9568 + optional: true 9569 + 9570 + '@oxc-minify/binding-android-arm64@0.131.0': 9571 + optional: true 9572 + 9573 + '@oxc-minify/binding-darwin-arm64@0.131.0': 9574 + optional: true 9575 + 9576 + '@oxc-minify/binding-darwin-x64@0.131.0': 9577 + optional: true 9578 + 9579 + '@oxc-minify/binding-freebsd-x64@0.131.0': 9580 + optional: true 9581 + 9582 + '@oxc-minify/binding-linux-arm-gnueabihf@0.131.0': 9583 + optional: true 9584 + 9585 + '@oxc-minify/binding-linux-arm-musleabihf@0.131.0': 9586 + optional: true 9587 + 9588 + '@oxc-minify/binding-linux-arm64-gnu@0.131.0': 9589 + optional: true 9590 + 9591 + '@oxc-minify/binding-linux-arm64-musl@0.131.0': 9592 + optional: true 9593 + 9594 + '@oxc-minify/binding-linux-ppc64-gnu@0.131.0': 9595 + optional: true 9596 + 9597 + '@oxc-minify/binding-linux-riscv64-gnu@0.131.0': 9598 + optional: true 9599 + 9600 + '@oxc-minify/binding-linux-riscv64-musl@0.131.0': 9601 + optional: true 9602 + 9603 + '@oxc-minify/binding-linux-s390x-gnu@0.131.0': 9604 + optional: true 9605 + 9606 + '@oxc-minify/binding-linux-x64-gnu@0.131.0': 9607 + optional: true 9608 + 9609 + '@oxc-minify/binding-linux-x64-musl@0.131.0': 9610 + optional: true 9611 + 9612 + '@oxc-minify/binding-openharmony-arm64@0.131.0': 9613 + optional: true 9614 + 9615 + '@oxc-minify/binding-wasm32-wasi@0.131.0': 9616 + dependencies: 9617 + '@emnapi/core': 1.10.0 9618 + '@emnapi/runtime': 1.10.0 9619 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 9620 + optional: true 9621 + 9622 + '@oxc-minify/binding-win32-arm64-msvc@0.131.0': 9623 + optional: true 9624 + 9625 + '@oxc-minify/binding-win32-ia32-msvc@0.131.0': 9626 + optional: true 9627 + 9628 + '@oxc-minify/binding-win32-x64-msvc@0.131.0': 9629 + optional: true 9630 + 6208 9631 '@oxc-parser/binding-android-arm-eabi@0.130.0': 6209 9632 optional: true 6210 9633 9634 + '@oxc-parser/binding-android-arm-eabi@0.131.0': 9635 + optional: true 9636 + 6211 9637 '@oxc-parser/binding-android-arm64@0.130.0': 6212 9638 optional: true 6213 9639 9640 + '@oxc-parser/binding-android-arm64@0.131.0': 9641 + optional: true 9642 + 6214 9643 '@oxc-parser/binding-darwin-arm64@0.130.0': 6215 9644 optional: true 6216 9645 9646 + '@oxc-parser/binding-darwin-arm64@0.131.0': 9647 + optional: true 9648 + 6217 9649 '@oxc-parser/binding-darwin-x64@0.130.0': 6218 9650 optional: true 6219 9651 9652 + '@oxc-parser/binding-darwin-x64@0.131.0': 9653 + optional: true 9654 + 6220 9655 '@oxc-parser/binding-freebsd-x64@0.130.0': 6221 9656 optional: true 6222 9657 9658 + '@oxc-parser/binding-freebsd-x64@0.131.0': 9659 + optional: true 9660 + 6223 9661 '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0': 6224 9662 optional: true 6225 9663 9664 + '@oxc-parser/binding-linux-arm-gnueabihf@0.131.0': 9665 + optional: true 9666 + 6226 9667 '@oxc-parser/binding-linux-arm-musleabihf@0.130.0': 6227 9668 optional: true 6228 9669 9670 + '@oxc-parser/binding-linux-arm-musleabihf@0.131.0': 9671 + optional: true 9672 + 6229 9673 '@oxc-parser/binding-linux-arm64-gnu@0.130.0': 9674 + optional: true 9675 + 9676 + '@oxc-parser/binding-linux-arm64-gnu@0.131.0': 6230 9677 optional: true 6231 9678 6232 9679 '@oxc-parser/binding-linux-arm64-musl@0.130.0': 6233 9680 optional: true 6234 9681 9682 + '@oxc-parser/binding-linux-arm64-musl@0.131.0': 9683 + optional: true 9684 + 6235 9685 '@oxc-parser/binding-linux-ppc64-gnu@0.130.0': 6236 9686 optional: true 6237 9687 9688 + '@oxc-parser/binding-linux-ppc64-gnu@0.131.0': 9689 + optional: true 9690 + 6238 9691 '@oxc-parser/binding-linux-riscv64-gnu@0.130.0': 6239 9692 optional: true 6240 9693 9694 + '@oxc-parser/binding-linux-riscv64-gnu@0.131.0': 9695 + optional: true 9696 + 6241 9697 '@oxc-parser/binding-linux-riscv64-musl@0.130.0': 6242 9698 optional: true 6243 9699 9700 + '@oxc-parser/binding-linux-riscv64-musl@0.131.0': 9701 + optional: true 9702 + 6244 9703 '@oxc-parser/binding-linux-s390x-gnu@0.130.0': 9704 + optional: true 9705 + 9706 + '@oxc-parser/binding-linux-s390x-gnu@0.131.0': 6245 9707 optional: true 6246 9708 6247 9709 '@oxc-parser/binding-linux-x64-gnu@0.130.0': 6248 9710 optional: true 6249 9711 9712 + '@oxc-parser/binding-linux-x64-gnu@0.131.0': 9713 + optional: true 9714 + 6250 9715 '@oxc-parser/binding-linux-x64-musl@0.130.0': 6251 9716 optional: true 6252 9717 9718 + '@oxc-parser/binding-linux-x64-musl@0.131.0': 9719 + optional: true 9720 + 6253 9721 '@oxc-parser/binding-openharmony-arm64@0.130.0': 9722 + optional: true 9723 + 9724 + '@oxc-parser/binding-openharmony-arm64@0.131.0': 6254 9725 optional: true 6255 9726 6256 9727 '@oxc-parser/binding-wasm32-wasi@0.130.0': ··· 6260 9731 '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 6261 9732 optional: true 6262 9733 9734 + '@oxc-parser/binding-wasm32-wasi@0.131.0': 9735 + dependencies: 9736 + '@emnapi/core': 1.10.0 9737 + '@emnapi/runtime': 1.10.0 9738 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 9739 + optional: true 9740 + 6263 9741 '@oxc-parser/binding-win32-arm64-msvc@0.130.0': 6264 9742 optional: true 6265 9743 9744 + '@oxc-parser/binding-win32-arm64-msvc@0.131.0': 9745 + optional: true 9746 + 6266 9747 '@oxc-parser/binding-win32-ia32-msvc@0.130.0': 6267 9748 optional: true 6268 9749 9750 + '@oxc-parser/binding-win32-ia32-msvc@0.131.0': 9751 + optional: true 9752 + 6269 9753 '@oxc-parser/binding-win32-x64-msvc@0.130.0': 6270 9754 optional: true 6271 9755 9756 + '@oxc-parser/binding-win32-x64-msvc@0.131.0': 9757 + optional: true 9758 + 6272 9759 '@oxc-project/types@0.130.0': {} 9760 + 9761 + '@oxc-project/types@0.131.0': {} 6273 9762 6274 9763 '@oxc-project/types@0.132.0': {} 6275 9764 ··· 6338 9827 '@oxc-resolver/binding-win32-x64-msvc@11.19.1': 6339 9828 optional: true 6340 9829 9830 + '@oxc-transform/binding-android-arm-eabi@0.131.0': 9831 + optional: true 9832 + 9833 + '@oxc-transform/binding-android-arm64@0.131.0': 9834 + optional: true 9835 + 9836 + '@oxc-transform/binding-darwin-arm64@0.131.0': 9837 + optional: true 9838 + 9839 + '@oxc-transform/binding-darwin-x64@0.131.0': 9840 + optional: true 9841 + 9842 + '@oxc-transform/binding-freebsd-x64@0.131.0': 9843 + optional: true 9844 + 9845 + '@oxc-transform/binding-linux-arm-gnueabihf@0.131.0': 9846 + optional: true 9847 + 9848 + '@oxc-transform/binding-linux-arm-musleabihf@0.131.0': 9849 + optional: true 9850 + 9851 + '@oxc-transform/binding-linux-arm64-gnu@0.131.0': 9852 + optional: true 9853 + 9854 + '@oxc-transform/binding-linux-arm64-musl@0.131.0': 9855 + optional: true 9856 + 9857 + '@oxc-transform/binding-linux-ppc64-gnu@0.131.0': 9858 + optional: true 9859 + 9860 + '@oxc-transform/binding-linux-riscv64-gnu@0.131.0': 9861 + optional: true 9862 + 9863 + '@oxc-transform/binding-linux-riscv64-musl@0.131.0': 9864 + optional: true 9865 + 9866 + '@oxc-transform/binding-linux-s390x-gnu@0.131.0': 9867 + optional: true 9868 + 9869 + '@oxc-transform/binding-linux-x64-gnu@0.131.0': 9870 + optional: true 9871 + 9872 + '@oxc-transform/binding-linux-x64-musl@0.131.0': 9873 + optional: true 9874 + 9875 + '@oxc-transform/binding-openharmony-arm64@0.131.0': 9876 + optional: true 9877 + 9878 + '@oxc-transform/binding-wasm32-wasi@0.131.0': 9879 + dependencies: 9880 + '@emnapi/core': 1.10.0 9881 + '@emnapi/runtime': 1.10.0 9882 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 9883 + optional: true 9884 + 9885 + '@oxc-transform/binding-win32-arm64-msvc@0.131.0': 9886 + optional: true 9887 + 9888 + '@oxc-transform/binding-win32-ia32-msvc@0.131.0': 9889 + optional: true 9890 + 9891 + '@oxc-transform/binding-win32-x64-msvc@0.131.0': 9892 + optional: true 9893 + 6341 9894 '@oxfmt/binding-android-arm-eabi@0.45.0': 6342 9895 optional: true 6343 9896 ··· 6395 9948 '@oxfmt/binding-win32-x64-msvc@0.45.0': 6396 9949 optional: true 6397 9950 9951 + '@parcel/watcher-android-arm64@2.5.6': 9952 + optional: true 9953 + 9954 + '@parcel/watcher-darwin-arm64@2.5.6': 9955 + optional: true 9956 + 9957 + '@parcel/watcher-darwin-x64@2.5.6': 9958 + optional: true 9959 + 9960 + '@parcel/watcher-freebsd-x64@2.5.6': 9961 + optional: true 9962 + 9963 + '@parcel/watcher-linux-arm-glibc@2.5.6': 9964 + optional: true 9965 + 9966 + '@parcel/watcher-linux-arm-musl@2.5.6': 9967 + optional: true 9968 + 9969 + '@parcel/watcher-linux-arm64-glibc@2.5.6': 9970 + optional: true 9971 + 9972 + '@parcel/watcher-linux-arm64-musl@2.5.6': 9973 + optional: true 9974 + 9975 + '@parcel/watcher-linux-x64-glibc@2.5.6': 9976 + optional: true 9977 + 9978 + '@parcel/watcher-linux-x64-musl@2.5.6': 9979 + optional: true 9980 + 9981 + '@parcel/watcher-wasm@2.5.6': 9982 + dependencies: 9983 + is-glob: 4.0.3 9984 + picomatch: 4.0.4 9985 + 9986 + '@parcel/watcher-win32-arm64@2.5.6': 9987 + optional: true 9988 + 9989 + '@parcel/watcher-win32-ia32@2.5.6': 9990 + optional: true 9991 + 9992 + '@parcel/watcher-win32-x64@2.5.6': 9993 + optional: true 9994 + 9995 + '@parcel/watcher@2.5.6': 9996 + dependencies: 9997 + detect-libc: 2.1.2 9998 + is-glob: 4.0.3 9999 + node-addon-api: 7.1.1 10000 + picomatch: 4.0.4 10001 + optionalDependencies: 10002 + '@parcel/watcher-android-arm64': 2.5.6 10003 + '@parcel/watcher-darwin-arm64': 2.5.6 10004 + '@parcel/watcher-darwin-x64': 2.5.6 10005 + '@parcel/watcher-freebsd-x64': 2.5.6 10006 + '@parcel/watcher-linux-arm-glibc': 2.5.6 10007 + '@parcel/watcher-linux-arm-musl': 2.5.6 10008 + '@parcel/watcher-linux-arm64-glibc': 2.5.6 10009 + '@parcel/watcher-linux-arm64-musl': 2.5.6 10010 + '@parcel/watcher-linux-x64-glibc': 2.5.6 10011 + '@parcel/watcher-linux-x64-musl': 2.5.6 10012 + '@parcel/watcher-win32-arm64': 2.5.6 10013 + '@parcel/watcher-win32-ia32': 2.5.6 10014 + '@parcel/watcher-win32-x64': 2.5.6 10015 + 6398 10016 '@pinojs/redact@0.4.0': {} 6399 10017 6400 10018 '@pkgjs/parseargs@0.11.0': ··· 6413 10031 '@pnpm/constants': 10.0.0 6414 10032 '@pnpm/error': 6.0.3 6415 10033 read-yaml-file: 2.1.0 10034 + 10035 + '@polka/url@1.0.0-next.29': {} 10036 + 10037 + '@poppinss/colors@4.1.6': 10038 + dependencies: 10039 + kleur: 4.1.5 10040 + 10041 + '@poppinss/dumper@0.7.0': 10042 + dependencies: 10043 + '@poppinss/colors': 4.1.6 10044 + '@sindresorhus/is': 7.2.0 10045 + supports-color: 10.2.2 10046 + 10047 + '@poppinss/exception@1.2.3': {} 6416 10048 6417 10049 '@postgresql-typed/oids@0.2.0': {} 6418 10050 ··· 6565 10197 optionalDependencies: 6566 10198 rollup: 4.56.0 6567 10199 10200 + '@rollup/plugin-alias@6.0.0(rollup@4.60.4)': 10201 + optionalDependencies: 10202 + rollup: 4.60.4 10203 + 6568 10204 '@rollup/plugin-commonjs@28.0.9(rollup@4.56.0)': 6569 10205 dependencies: 6570 10206 '@rollup/pluginutils': 5.3.0(rollup@4.56.0) ··· 6577 10213 optionalDependencies: 6578 10214 rollup: 4.56.0 6579 10215 10216 + '@rollup/plugin-commonjs@29.0.2(rollup@4.60.4)': 10217 + dependencies: 10218 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10219 + commondir: 1.0.1 10220 + estree-walker: 2.0.2 10221 + fdir: 6.5.0(picomatch@4.0.4) 10222 + is-reference: 1.2.1 10223 + magic-string: 0.30.21 10224 + picomatch: 4.0.4 10225 + optionalDependencies: 10226 + rollup: 4.60.4 10227 + 10228 + '@rollup/plugin-inject@5.0.5(rollup@4.60.4)': 10229 + dependencies: 10230 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10231 + estree-walker: 2.0.2 10232 + magic-string: 0.30.21 10233 + optionalDependencies: 10234 + rollup: 4.60.4 10235 + 6580 10236 '@rollup/plugin-json@6.1.0(rollup@4.56.0)': 6581 10237 dependencies: 6582 10238 '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 6583 10239 optionalDependencies: 6584 10240 rollup: 4.56.0 10241 + 10242 + '@rollup/plugin-json@6.1.0(rollup@4.60.4)': 10243 + dependencies: 10244 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10245 + optionalDependencies: 10246 + rollup: 4.60.4 6585 10247 6586 10248 '@rollup/plugin-node-resolve@16.0.3(rollup@4.56.0)': 6587 10249 dependencies: ··· 6593 10255 optionalDependencies: 6594 10256 rollup: 4.56.0 6595 10257 10258 + '@rollup/plugin-node-resolve@16.0.3(rollup@4.60.4)': 10259 + dependencies: 10260 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10261 + '@types/resolve': 1.20.2 10262 + deepmerge: 4.3.1 10263 + is-module: 1.0.0 10264 + resolve: 1.22.12 10265 + optionalDependencies: 10266 + rollup: 4.60.4 10267 + 6596 10268 '@rollup/plugin-replace@6.0.3(rollup@4.56.0)': 6597 10269 dependencies: 6598 10270 '@rollup/pluginutils': 5.3.0(rollup@4.56.0) ··· 6600 10272 optionalDependencies: 6601 10273 rollup: 4.56.0 6602 10274 10275 + '@rollup/plugin-replace@6.0.3(rollup@4.60.4)': 10276 + dependencies: 10277 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10278 + magic-string: 0.30.21 10279 + optionalDependencies: 10280 + rollup: 4.60.4 10281 + 10282 + '@rollup/plugin-terser@1.0.0(rollup@4.60.4)': 10283 + dependencies: 10284 + serialize-javascript: 7.0.5 10285 + smob: 1.6.2 10286 + terser: 5.48.0 10287 + optionalDependencies: 10288 + rollup: 4.60.4 10289 + 6603 10290 '@rollup/pluginutils@5.3.0(rollup@4.56.0)': 6604 10291 dependencies: 6605 10292 '@types/estree': 1.0.8 ··· 6608 10295 optionalDependencies: 6609 10296 rollup: 4.56.0 6610 10297 10298 + '@rollup/pluginutils@5.3.0(rollup@4.60.4)': 10299 + dependencies: 10300 + '@types/estree': 1.0.8 10301 + estree-walker: 2.0.2 10302 + picomatch: 4.0.4 10303 + optionalDependencies: 10304 + rollup: 4.60.4 10305 + 6611 10306 '@rollup/rollup-android-arm-eabi@4.56.0': 10307 + optional: true 10308 + 10309 + '@rollup/rollup-android-arm-eabi@4.60.4': 6612 10310 optional: true 6613 10311 6614 10312 '@rollup/rollup-android-arm64@4.56.0': 6615 10313 optional: true 6616 10314 10315 + '@rollup/rollup-android-arm64@4.60.4': 10316 + optional: true 10317 + 6617 10318 '@rollup/rollup-darwin-arm64@4.56.0': 10319 + optional: true 10320 + 10321 + '@rollup/rollup-darwin-arm64@4.60.4': 6618 10322 optional: true 6619 10323 6620 10324 '@rollup/rollup-darwin-x64@4.56.0': 6621 10325 optional: true 6622 10326 10327 + '@rollup/rollup-darwin-x64@4.60.4': 10328 + optional: true 10329 + 6623 10330 '@rollup/rollup-freebsd-arm64@4.56.0': 10331 + optional: true 10332 + 10333 + '@rollup/rollup-freebsd-arm64@4.60.4': 6624 10334 optional: true 6625 10335 6626 10336 '@rollup/rollup-freebsd-x64@4.56.0': 6627 10337 optional: true 6628 10338 10339 + '@rollup/rollup-freebsd-x64@4.60.4': 10340 + optional: true 10341 + 6629 10342 '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 6630 10343 optional: true 6631 10344 10345 + '@rollup/rollup-linux-arm-gnueabihf@4.60.4': 10346 + optional: true 10347 + 6632 10348 '@rollup/rollup-linux-arm-musleabihf@4.56.0': 6633 10349 optional: true 6634 10350 10351 + '@rollup/rollup-linux-arm-musleabihf@4.60.4': 10352 + optional: true 10353 + 6635 10354 '@rollup/rollup-linux-arm64-gnu@4.56.0': 6636 10355 optional: true 6637 10356 10357 + '@rollup/rollup-linux-arm64-gnu@4.60.4': 10358 + optional: true 10359 + 6638 10360 '@rollup/rollup-linux-arm64-musl@4.56.0': 6639 10361 optional: true 6640 10362 10363 + '@rollup/rollup-linux-arm64-musl@4.60.4': 10364 + optional: true 10365 + 6641 10366 '@rollup/rollup-linux-loong64-gnu@4.56.0': 6642 10367 optional: true 6643 10368 10369 + '@rollup/rollup-linux-loong64-gnu@4.60.4': 10370 + optional: true 10371 + 6644 10372 '@rollup/rollup-linux-loong64-musl@4.56.0': 6645 10373 optional: true 6646 10374 10375 + '@rollup/rollup-linux-loong64-musl@4.60.4': 10376 + optional: true 10377 + 6647 10378 '@rollup/rollup-linux-ppc64-gnu@4.56.0': 6648 10379 optional: true 6649 10380 10381 + '@rollup/rollup-linux-ppc64-gnu@4.60.4': 10382 + optional: true 10383 + 6650 10384 '@rollup/rollup-linux-ppc64-musl@4.56.0': 10385 + optional: true 10386 + 10387 + '@rollup/rollup-linux-ppc64-musl@4.60.4': 6651 10388 optional: true 6652 10389 6653 10390 '@rollup/rollup-linux-riscv64-gnu@4.56.0': 6654 10391 optional: true 6655 10392 10393 + '@rollup/rollup-linux-riscv64-gnu@4.60.4': 10394 + optional: true 10395 + 6656 10396 '@rollup/rollup-linux-riscv64-musl@4.56.0': 10397 + optional: true 10398 + 10399 + '@rollup/rollup-linux-riscv64-musl@4.60.4': 6657 10400 optional: true 6658 10401 6659 10402 '@rollup/rollup-linux-s390x-gnu@4.56.0': 6660 10403 optional: true 6661 10404 10405 + '@rollup/rollup-linux-s390x-gnu@4.60.4': 10406 + optional: true 10407 + 6662 10408 '@rollup/rollup-linux-x64-gnu@4.56.0': 6663 10409 optional: true 6664 10410 10411 + '@rollup/rollup-linux-x64-gnu@4.60.4': 10412 + optional: true 10413 + 6665 10414 '@rollup/rollup-linux-x64-musl@4.56.0': 6666 10415 optional: true 6667 10416 10417 + '@rollup/rollup-linux-x64-musl@4.60.4': 10418 + optional: true 10419 + 6668 10420 '@rollup/rollup-openbsd-x64@4.56.0': 6669 10421 optional: true 6670 10422 10423 + '@rollup/rollup-openbsd-x64@4.60.4': 10424 + optional: true 10425 + 6671 10426 '@rollup/rollup-openharmony-arm64@4.56.0': 6672 10427 optional: true 6673 10428 10429 + '@rollup/rollup-openharmony-arm64@4.60.4': 10430 + optional: true 10431 + 6674 10432 '@rollup/rollup-win32-arm64-msvc@4.56.0': 6675 10433 optional: true 6676 10434 10435 + '@rollup/rollup-win32-arm64-msvc@4.60.4': 10436 + optional: true 10437 + 6677 10438 '@rollup/rollup-win32-ia32-msvc@4.56.0': 6678 10439 optional: true 6679 10440 10441 + '@rollup/rollup-win32-ia32-msvc@4.60.4': 10442 + optional: true 10443 + 6680 10444 '@rollup/rollup-win32-x64-gnu@4.56.0': 6681 10445 optional: true 6682 10446 10447 + '@rollup/rollup-win32-x64-gnu@4.60.4': 10448 + optional: true 10449 + 6683 10450 '@rollup/rollup-win32-x64-msvc@4.56.0': 6684 10451 optional: true 6685 10452 10453 + '@rollup/rollup-win32-x64-msvc@4.60.4': 10454 + optional: true 10455 + 10456 + '@simple-git/args-pathspec@1.0.3': {} 10457 + 10458 + '@simple-git/argv-parser@1.1.1': 10459 + dependencies: 10460 + '@simple-git/args-pathspec': 1.0.3 10461 + 6686 10462 '@sindresorhus/base62@1.0.0': {} 6687 10463 10464 + '@sindresorhus/is@7.2.0': {} 10465 + 10466 + '@sindresorhus/merge-streams@4.0.0': {} 10467 + 10468 + '@speed-highlight/core@1.2.15': {} 10469 + 6688 10470 '@standard-schema/spec@1.1.0': {} 6689 10471 6690 10472 '@stylistic/eslint-plugin@5.10.0(eslint@10.4.0(jiti@2.7.0))': ··· 6739 10521 6740 10522 '@types/js-cookie@3.0.6': {} 6741 10523 10524 + '@types/jsesc@2.5.1': {} 10525 + 6742 10526 '@types/json-schema@7.0.15': {} 6743 10527 6744 10528 '@types/katex@0.16.8': {} ··· 6786 10570 '@types/unist@3.0.3': {} 6787 10571 6788 10572 '@types/web-bluetooth@0.0.21': {} 10573 + 10574 + '@types/whatwg-mimetype@3.0.2': {} 6789 10575 6790 10576 '@types/ws@8.18.1': 6791 10577 dependencies: ··· 6959 10745 '@typescript-eslint/types': 8.59.3 6960 10746 eslint-visitor-keys: 5.0.1 6961 10747 6962 - '@vitejs/plugin-vue@6.0.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))': 10748 + '@unhead/vue@2.1.15(vue@3.5.34(typescript@6.0.3))': 10749 + dependencies: 10750 + hookable: 6.1.1 10751 + unhead: 2.1.15 10752 + vue: 3.5.34(typescript@6.0.3) 10753 + 10754 + '@vercel/nft@1.5.0(rollup@4.60.4)': 10755 + dependencies: 10756 + '@mapbox/node-pre-gyp': 2.0.3 10757 + '@rollup/pluginutils': 5.3.0(rollup@4.60.4) 10758 + acorn: 8.16.0 10759 + acorn-import-attributes: 1.9.5(acorn@8.16.0) 10760 + async-sema: 3.1.1 10761 + bindings: 1.5.0 10762 + estree-walker: 2.0.2 10763 + glob: 13.0.6 10764 + graceful-fs: 4.2.11 10765 + node-gyp-build: 4.8.4 10766 + picomatch: 4.0.4 10767 + resolve-from: 5.0.0 10768 + transitivePeerDependencies: 10769 + - encoding 10770 + - rollup 10771 + - supports-color 10772 + 10773 + '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))': 6963 10774 dependencies: 10775 + '@babel/core': 7.29.0 10776 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) 10777 + '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) 6964 10778 '@rolldown/pluginutils': 1.0.1 6965 - vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0) 10779 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) 10780 + vite: 7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 10781 + vue: 3.5.34(typescript@6.0.3) 10782 + transitivePeerDependencies: 10783 + - supports-color 10784 + 10785 + '@vitejs/plugin-vue@6.0.7(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))': 10786 + dependencies: 10787 + '@rolldown/pluginutils': 1.0.1 10788 + vite: 7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 10789 + vue: 3.5.34(typescript@6.0.3) 10790 + 10791 + '@vitejs/plugin-vue@6.0.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))': 10792 + dependencies: 10793 + '@rolldown/pluginutils': 1.0.1 10794 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 6966 10795 vue: 3.5.34(typescript@6.0.3) 6967 10796 6968 10797 '@vitest/coverage-v8@4.1.7(vitest@4.1.7)': ··· 6977 10806 obug: 2.1.1 6978 10807 std-env: 4.1.0 6979 10808 tinyrainbow: 3.1.0 6980 - vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0)) 10809 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 6981 10810 6982 10811 '@vitest/eslint-plugin@1.6.17(@typescript-eslint/eslint-plugin@8.59.3(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.7)': 6983 10812 dependencies: ··· 6987 10816 optionalDependencies: 6988 10817 '@typescript-eslint/eslint-plugin': 8.59.3(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3) 6989 10818 typescript: 6.0.3 6990 - vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0)) 10819 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 6991 10820 transitivePeerDependencies: 6992 10821 - supports-color 6993 10822 ··· 7000 10829 chai: 6.2.2 7001 10830 tinyrainbow: 3.1.0 7002 10831 7003 - '@vitest/mocker@4.1.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0))': 10832 + '@vitest/mocker@4.1.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))': 7004 10833 dependencies: 7005 10834 '@vitest/spy': 4.1.7 7006 10835 estree-walker: 3.0.3 7007 10836 magic-string: 0.30.21 7008 10837 optionalDependencies: 7009 - vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0) 10838 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 7010 10839 7011 10840 '@vitest/pretty-format@4.1.7': 7012 10841 dependencies: ··· 7054 10883 dependencies: 7055 10884 '@voxpelli/type-helpers': 3.5.0 7056 10885 7057 - '@vue/compiler-core@3.5.33': 10886 + '@vue-macros/common@3.1.2(vue@3.5.34(typescript@6.0.3))': 10887 + dependencies: 10888 + '@vue/compiler-sfc': 3.5.34 10889 + ast-kit: 2.2.0 10890 + local-pkg: 1.1.2 10891 + magic-string-ast: 1.0.3 10892 + unplugin-utils: 0.3.1 10893 + optionalDependencies: 10894 + vue: 3.5.34(typescript@6.0.3) 10895 + 10896 + '@vue/babel-helper-vue-transform-on@2.0.1': {} 10897 + 10898 + '@vue/babel-plugin-jsx@2.0.1(@babel/core@7.29.0)': 10899 + dependencies: 10900 + '@babel/helper-module-imports': 7.28.6 10901 + '@babel/helper-plugin-utils': 7.28.6 10902 + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0) 10903 + '@babel/template': 7.28.6 10904 + '@babel/traverse': 7.29.0 10905 + '@babel/types': 7.29.0 10906 + '@vue/babel-helper-vue-transform-on': 2.0.1 10907 + '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0) 10908 + '@vue/shared': 3.5.34 10909 + optionalDependencies: 10910 + '@babel/core': 7.29.0 10911 + transitivePeerDependencies: 10912 + - supports-color 10913 + 10914 + '@vue/babel-plugin-resolve-type@2.0.1(@babel/core@7.29.0)': 7058 10915 dependencies: 7059 - '@babel/parser': 7.29.2 7060 - '@vue/shared': 3.5.33 7061 - entities: 7.0.1 7062 - estree-walker: 2.0.2 7063 - source-map-js: 1.2.1 10916 + '@babel/code-frame': 7.29.0 10917 + '@babel/core': 7.29.0 10918 + '@babel/helper-module-imports': 7.28.6 10919 + '@babel/helper-plugin-utils': 7.28.6 10920 + '@babel/parser': 7.29.3 10921 + '@vue/compiler-sfc': 3.5.34 10922 + transitivePeerDependencies: 10923 + - supports-color 7064 10924 7065 10925 '@vue/compiler-core@3.5.34': 7066 10926 dependencies: ··· 7069 10929 entities: 7.0.1 7070 10930 estree-walker: 2.0.2 7071 10931 source-map-js: 1.2.1 7072 - 7073 - '@vue/compiler-dom@3.5.33': 7074 - dependencies: 7075 - '@vue/compiler-core': 3.5.33 7076 - '@vue/shared': 3.5.33 7077 10932 7078 10933 '@vue/compiler-dom@3.5.34': 7079 10934 dependencies: ··· 7097 10952 '@vue/compiler-dom': 3.5.34 7098 10953 '@vue/shared': 3.5.34 7099 10954 10955 + '@vue/devtools-api@8.1.2': 10956 + dependencies: 10957 + '@vue/devtools-kit': 8.1.2 10958 + 10959 + '@vue/devtools-core@8.1.2(vue@3.5.34(typescript@6.0.3))': 10960 + dependencies: 10961 + '@vue/devtools-kit': 8.1.2 10962 + '@vue/devtools-shared': 8.1.2 10963 + vue: 3.5.34(typescript@6.0.3) 10964 + 10965 + '@vue/devtools-kit@8.1.2': 10966 + dependencies: 10967 + '@vue/devtools-shared': 8.1.2 10968 + birpc: 2.9.0 10969 + hookable: 5.5.3 10970 + perfect-debounce: 2.1.0 10971 + 10972 + '@vue/devtools-shared@8.1.2': {} 10973 + 7100 10974 '@vue/language-core@3.2.8': 7101 10975 dependencies: 7102 10976 '@volar/language-core': 2.4.28 7103 - '@vue/compiler-dom': 3.5.33 7104 - '@vue/shared': 3.5.33 10977 + '@vue/compiler-dom': 3.5.34 10978 + '@vue/shared': 3.5.34 7105 10979 alien-signals: 3.2.1 7106 10980 muggle-string: 0.4.1 7107 10981 path-browserify: 1.0.1 ··· 7128 11002 '@vue/compiler-ssr': 3.5.34 7129 11003 '@vue/shared': 3.5.34 7130 11004 vue: 3.5.34(typescript@6.0.3) 7131 - 7132 - '@vue/shared@3.5.33': {} 7133 11005 7134 11006 '@vue/shared@3.5.34': {} 7135 11007 ··· 7145 11017 '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@6.0.3)) 7146 11018 vue: 3.5.34(typescript@6.0.3) 7147 11019 7148 - '@vueuse/integrations@14.3.0(change-case@5.4.4)(universal-cookie@8.1.2)(vue@3.5.34(typescript@6.0.3))': 11020 + '@vueuse/integrations@14.3.0(change-case@5.4.4)(fuse.js@7.3.0)(universal-cookie@8.1.2)(vue@3.5.34(typescript@6.0.3))': 7149 11021 dependencies: 7150 11022 '@vueuse/core': 14.3.0(vue@3.5.34(typescript@6.0.3)) 7151 11023 '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@6.0.3)) 7152 11024 vue: 3.5.34(typescript@6.0.3) 7153 11025 optionalDependencies: 7154 11026 change-case: 5.4.4 11027 + fuse.js: 7.3.0 7155 11028 universal-cookie: 8.1.2 7156 11029 7157 11030 '@vueuse/metadata@14.3.0': {} ··· 7159 11032 '@vueuse/shared@14.3.0(vue@3.5.34(typescript@6.0.3))': 7160 11033 dependencies: 7161 11034 vue: 3.5.34(typescript@6.0.3) 11035 + 11036 + abbrev@3.0.1: {} 11037 + 11038 + abort-controller@3.0.0: 11039 + dependencies: 11040 + event-target-shim: 5.0.1 7162 11041 7163 11042 abstract-logging@2.0.1: {} 7164 11043 ··· 7212 11091 7213 11092 ansis@4.2.0: {} 7214 11093 11094 + anymatch@3.1.3: 11095 + dependencies: 11096 + normalize-path: 3.0.0 11097 + picomatch: 2.3.2 11098 + 11099 + archiver-utils@5.0.2: 11100 + dependencies: 11101 + glob: 10.5.0 11102 + graceful-fs: 4.2.11 11103 + is-stream: 2.0.1 11104 + lazystream: 1.0.1 11105 + lodash: 4.18.1 11106 + normalize-path: 3.0.0 11107 + readable-stream: 4.7.0 11108 + 11109 + archiver@7.0.1: 11110 + dependencies: 11111 + archiver-utils: 5.0.2 11112 + async: 3.2.6 11113 + buffer-crc32: 1.0.0 11114 + readable-stream: 4.7.0 11115 + readdir-glob: 1.1.3 11116 + tar-stream: 3.2.0 11117 + zip-stream: 6.0.1 11118 + transitivePeerDependencies: 11119 + - bare-abort-controller 11120 + - bare-buffer 11121 + - react-native-b4a 11122 + 7215 11123 are-docs-informative@0.0.2: {} 7216 11124 7217 11125 argparse@2.0.1: {} ··· 7220 11128 7221 11129 assertion-error@2.0.1: {} 7222 11130 11131 + ast-kit@2.2.0: 11132 + dependencies: 11133 + '@babel/parser': 7.29.3 11134 + pathe: 2.0.3 11135 + 7223 11136 ast-v8-to-istanbul@1.0.0: 7224 11137 dependencies: 7225 11138 '@jridgewell/trace-mapping': 0.3.31 7226 11139 estree-walker: 3.0.3 7227 11140 js-tokens: 10.0.0 7228 11141 11142 + ast-walker-scope@0.8.3: 11143 + dependencies: 11144 + '@babel/parser': 7.29.3 11145 + ast-kit: 2.2.0 11146 + 11147 + async-sema@3.1.1: {} 11148 + 11149 + async@3.2.6: {} 11150 + 7229 11151 atomic-sleep@1.0.0: {} 7230 11152 7231 11153 autoprefixer@10.4.23(postcss@8.5.15): ··· 7237 11159 postcss: 8.5.15 7238 11160 postcss-value-parser: 4.2.0 7239 11161 11162 + autoprefixer@10.5.0(postcss@8.5.15): 11163 + dependencies: 11164 + browserslist: 4.28.2 11165 + caniuse-lite: 1.0.30001791 11166 + fraction.js: 5.3.4 11167 + picocolors: 1.1.1 11168 + postcss: 8.5.15 11169 + postcss-value-parser: 4.2.0 11170 + 7240 11171 available-typed-arrays@1.0.7: 7241 11172 dependencies: 7242 11173 possible-typed-array-names: 1.1.0 ··· 7246 11177 '@fastify/error': 4.2.0 7247 11178 fastq: 1.20.1 7248 11179 11180 + b4a@1.8.1: {} 11181 + 7249 11182 balanced-match@1.0.2: {} 7250 11183 7251 11184 balanced-match@4.0.4: {} 7252 11185 11186 + bare-events@2.8.3: {} 11187 + 11188 + bare-fs@4.7.1: 11189 + dependencies: 11190 + bare-events: 2.8.3 11191 + bare-path: 3.0.0 11192 + bare-stream: 2.13.1(bare-events@2.8.3) 11193 + bare-url: 2.4.3 11194 + fast-fifo: 1.3.2 11195 + transitivePeerDependencies: 11196 + - bare-abort-controller 11197 + - react-native-b4a 11198 + 11199 + bare-os@3.9.1: {} 11200 + 11201 + bare-path@3.0.0: 11202 + dependencies: 11203 + bare-os: 3.9.1 11204 + 11205 + bare-stream@2.13.1(bare-events@2.8.3): 11206 + dependencies: 11207 + streamx: 2.25.0 11208 + teex: 1.0.1 11209 + optionalDependencies: 11210 + bare-events: 2.8.3 11211 + transitivePeerDependencies: 11212 + - react-native-b4a 11213 + 11214 + bare-url@2.4.3: 11215 + dependencies: 11216 + bare-path: 3.0.0 11217 + 7253 11218 base64-js@1.5.1: {} 7254 11219 7255 11220 baseline-browser-mapping@2.10.23: {} ··· 7263 11228 bindings@1.5.0: 7264 11229 dependencies: 7265 11230 file-uri-to-path: 1.0.0 11231 + 11232 + birpc@2.9.0: {} 11233 + 11234 + birpc@4.0.0: {} 7266 11235 7267 11236 bl@4.1.0: 7268 11237 dependencies: ··· 7280 11249 dependencies: 7281 11250 balanced-match: 4.0.4 7282 11251 11252 + braces@3.0.3: 11253 + dependencies: 11254 + fill-range: 7.1.1 11255 + 7283 11256 browserslist@4.28.2: 7284 11257 dependencies: 7285 11258 baseline-browser-mapping: 2.10.23 ··· 7288 11261 node-releases: 2.0.38 7289 11262 update-browserslist-db: 1.2.3(browserslist@4.28.2) 7290 11263 11264 + buffer-crc32@1.0.0: {} 11265 + 11266 + buffer-from@1.1.2: {} 11267 + 7291 11268 buffer@5.7.1: 7292 11269 dependencies: 7293 11270 base64-js: 1.5.1 7294 11271 ieee754: 1.2.1 7295 11272 11273 + buffer@6.0.3: 11274 + dependencies: 11275 + base64-js: 1.5.1 11276 + ieee754: 1.2.1 11277 + 7296 11278 buffered-async-iterable@1.0.1: {} 7297 11279 7298 11280 builtin-modules@5.1.0: {} 7299 11281 11282 + bundle-name@4.1.0: 11283 + dependencies: 11284 + run-applescript: 7.1.0 11285 + 11286 + c12@3.3.4(magicast@0.5.2): 11287 + dependencies: 11288 + chokidar: 5.0.0 11289 + confbox: 0.2.4 11290 + defu: 6.1.7 11291 + dotenv: 17.4.2 11292 + exsolve: 1.0.8 11293 + giget: 3.2.0 11294 + jiti: 2.7.0 11295 + ohash: 2.0.11 11296 + pathe: 2.0.3 11297 + perfect-debounce: 2.1.0 11298 + pkg-types: 2.3.1 11299 + rc9: 3.0.1 11300 + optionalDependencies: 11301 + magicast: 0.5.2 11302 + 11303 + cac@6.7.14: {} 11304 + 7300 11305 cac@7.0.0: {} 7301 11306 7302 11307 call-bind-apply-helpers@1.0.2: ··· 7352 11357 dependencies: 7353 11358 readdirp: 4.1.2 7354 11359 11360 + chokidar@5.0.0: 11361 + dependencies: 11362 + readdirp: 5.0.0 11363 + 7355 11364 chownr@1.1.4: {} 7356 11365 11366 + chownr@3.0.0: {} 11367 + 7357 11368 ci-info@4.4.0: {} 7358 11369 7359 11370 citty@0.1.6: 7360 11371 dependencies: 7361 11372 consola: 3.4.2 11373 + 11374 + citty@0.2.2: {} 7362 11375 7363 11376 cjs-module-lexer@1.4.3: {} 7364 11377 ··· 7372 11385 strip-ansi: 6.0.1 7373 11386 wrap-ansi: 7.0.0 7374 11387 11388 + cliui@9.0.1: 11389 + dependencies: 11390 + string-width: 7.2.0 11391 + strip-ansi: 7.2.0 11392 + wrap-ansi: 9.0.2 11393 + 7375 11394 cloudevents@10.0.0: 7376 11395 dependencies: 7377 11396 ajv: 8.20.0 ··· 7381 11400 util: 0.12.5 7382 11401 uuid: 8.3.2 7383 11402 11403 + cluster-key-slot@1.1.2: {} 11404 + 7384 11405 color-convert@2.0.1: 7385 11406 dependencies: 7386 11407 color-name: 1.1.4 ··· 7405 11426 7406 11427 commander@11.1.0: {} 7407 11428 11429 + commander@2.20.3: {} 11430 + 7408 11431 commander@8.3.0: {} 7409 11432 7410 11433 comment-parser@1.4.5: {} ··· 7415 11438 7416 11439 compare-utf8@0.2.0: {} 7417 11440 11441 + compatx@0.2.0: {} 11442 + 11443 + compress-commons@6.0.2: 11444 + dependencies: 11445 + crc-32: 1.2.2 11446 + crc32-stream: 6.0.0 11447 + is-stream: 2.0.1 11448 + normalize-path: 3.0.0 11449 + readable-stream: 4.7.0 11450 + 7418 11451 confbox@0.1.8: {} 7419 11452 7420 11453 confbox@0.2.4: {} ··· 7423 11456 7424 11457 convert-source-map@2.0.0: {} 7425 11458 11459 + cookie-es@1.2.3: {} 11460 + 11461 + cookie-es@2.0.1: {} 11462 + 11463 + cookie-es@3.1.1: {} 11464 + 7426 11465 cookie@1.1.1: {} 7427 11466 7428 11467 core-js-compat@3.49.0: 7429 11468 dependencies: 7430 11469 browserslist: 4.28.2 7431 11470 11471 + core-util-is@1.0.3: {} 11472 + 11473 + crc-32@1.2.2: {} 11474 + 11475 + crc32-stream@6.0.0: 11476 + dependencies: 11477 + crc-32: 1.2.2 11478 + readable-stream: 4.7.0 11479 + 11480 + croner@10.0.1: {} 11481 + 7432 11482 cross-spawn@7.0.6: 7433 11483 dependencies: 7434 11484 path-key: 3.1.1 7435 11485 shebang-command: 2.0.0 7436 11486 which: 2.0.2 11487 + 11488 + crossws@0.3.5: 11489 + dependencies: 11490 + uncrypto: 0.1.3 11491 + 11492 + crossws@0.4.5(srvx@0.11.16): 11493 + optionalDependencies: 11494 + srvx: 0.11.16 7437 11495 7438 11496 css-declaration-sorter@7.3.1(postcss@8.5.15): 7439 11497 dependencies: ··· 7494 11552 postcss-reduce-transforms: 7.0.1(postcss@8.5.15) 7495 11553 postcss-svgo: 7.1.0(postcss@8.5.15) 7496 11554 postcss-unique-selectors: 7.0.4(postcss@8.5.15) 11555 + 11556 + cssnano-preset-default@8.0.1(postcss@8.5.15): 11557 + dependencies: 11558 + browserslist: 4.28.2 11559 + cssnano-utils: 6.0.0(postcss@8.5.15) 11560 + postcss: 8.5.15 11561 + postcss-calc: 10.1.1(postcss@8.5.15) 11562 + postcss-colormin: 8.0.0(postcss@8.5.15) 11563 + postcss-convert-values: 8.0.0(postcss@8.5.15) 11564 + postcss-discard-comments: 8.0.0(postcss@8.5.15) 11565 + postcss-discard-duplicates: 8.0.0(postcss@8.5.15) 11566 + postcss-discard-empty: 8.0.0(postcss@8.5.15) 11567 + postcss-discard-overridden: 8.0.0(postcss@8.5.15) 11568 + postcss-merge-longhand: 8.0.0(postcss@8.5.15) 11569 + postcss-merge-rules: 8.0.0(postcss@8.5.15) 11570 + postcss-minify-font-values: 8.0.0(postcss@8.5.15) 11571 + postcss-minify-gradients: 8.0.0(postcss@8.5.15) 11572 + postcss-minify-params: 8.0.0(postcss@8.5.15) 11573 + postcss-minify-selectors: 8.0.1(postcss@8.5.15) 11574 + postcss-normalize-charset: 8.0.0(postcss@8.5.15) 11575 + postcss-normalize-display-values: 8.0.0(postcss@8.5.15) 11576 + postcss-normalize-positions: 8.0.0(postcss@8.5.15) 11577 + postcss-normalize-repeat-style: 8.0.0(postcss@8.5.15) 11578 + postcss-normalize-string: 8.0.0(postcss@8.5.15) 11579 + postcss-normalize-timing-functions: 8.0.0(postcss@8.5.15) 11580 + postcss-normalize-unicode: 8.0.0(postcss@8.5.15) 11581 + postcss-normalize-url: 8.0.0(postcss@8.5.15) 11582 + postcss-normalize-whitespace: 8.0.0(postcss@8.5.15) 11583 + postcss-ordered-values: 8.0.0(postcss@8.5.15) 11584 + postcss-reduce-initial: 8.0.0(postcss@8.5.15) 11585 + postcss-reduce-transforms: 8.0.0(postcss@8.5.15) 11586 + postcss-svgo: 8.0.0(postcss@8.5.15) 11587 + postcss-unique-selectors: 8.0.0(postcss@8.5.15) 7497 11588 7498 11589 cssnano-utils@5.0.1(postcss@8.5.15): 7499 11590 dependencies: 7500 11591 postcss: 8.5.15 7501 11592 11593 + cssnano-utils@6.0.0(postcss@8.5.15): 11594 + dependencies: 11595 + postcss: 8.5.15 11596 + 7502 11597 cssnano@7.1.2(postcss@8.5.15): 7503 11598 dependencies: 7504 11599 cssnano-preset-default: 7.0.10(postcss@8.5.15) 11600 + lilconfig: 3.1.3 11601 + postcss: 8.5.15 11602 + 11603 + cssnano@8.0.1(postcss@8.5.15): 11604 + dependencies: 11605 + cssnano-preset-default: 8.0.1(postcss@8.5.15) 7505 11606 lilconfig: 3.1.3 7506 11607 postcss: 8.5.15 7507 11608 ··· 7511 11612 7512 11613 csstype@3.2.3: {} 7513 11614 11615 + db0@0.3.4: {} 11616 + 7514 11617 debug@4.4.3: 7515 11618 dependencies: 7516 11619 ms: 2.1.3 ··· 7529 11632 7530 11633 deepmerge@4.3.1: {} 7531 11634 11635 + default-browser-id@5.0.1: {} 11636 + 11637 + default-browser@5.5.0: 11638 + dependencies: 11639 + bundle-name: 4.1.0 11640 + default-browser-id: 5.0.1 11641 + 7532 11642 define-data-property@1.1.4: 7533 11643 dependencies: 7534 11644 es-define-property: 1.0.1 7535 11645 es-errors: 1.3.0 7536 11646 gopd: 1.2.0 7537 11647 11648 + define-lazy-prop@3.0.0: {} 11649 + 7538 11650 defu@6.1.7: {} 11651 + 11652 + denque@2.1.0: {} 11653 + 11654 + depd@2.0.0: {} 7539 11655 7540 11656 dequal@2.0.3: {} 7541 11657 11658 + destr@2.0.5: {} 11659 + 7542 11660 detect-libc@2.1.2: {} 11661 + 11662 + devalue@5.8.1: {} 7543 11663 7544 11664 devlop@1.1.0: 7545 11665 dependencies: ··· 7547 11667 7548 11668 diff-sequences@29.6.3: {} 7549 11669 11670 + diff@8.0.4: {} 11671 + 7550 11672 dom-serializer@2.0.0: 7551 11673 dependencies: 7552 11674 domelementtype: 2.3.0 ··· 7564 11686 dom-serializer: 2.0.0 7565 11687 domelementtype: 2.3.0 7566 11688 domhandler: 5.0.3 11689 + 11690 + dot-prop@10.1.0: 11691 + dependencies: 11692 + type-fest: 5.6.0 7567 11693 7568 11694 dotenv@17.4.2: {} 7569 11695 ··· 7573 11699 es-errors: 1.3.0 7574 11700 gopd: 1.2.0 7575 11701 11702 + duplexer@0.1.2: {} 11703 + 7576 11704 duplexify@4.1.3: 7577 11705 dependencies: 7578 11706 end-of-stream: 1.4.5 ··· 7588 11716 '@noble/ciphers': 1.3.0 7589 11717 '@noble/curves': 1.9.7 7590 11718 '@noble/hashes': 1.8.0 11719 + 11720 + ee-first@1.1.1: {} 7591 11721 7592 11722 electron-to-chromium@1.5.344: {} 7593 11723 11724 + emoji-regex@10.6.0: {} 11725 + 7594 11726 emoji-regex@8.0.0: {} 7595 11727 7596 11728 emoji-regex@9.2.2: {} 7597 11729 7598 11730 empathic@2.0.0: {} 11731 + 11732 + encodeurl@2.0.0: {} 7599 11733 7600 11734 end-of-stream@1.4.5: 7601 11735 dependencies: ··· 7614 11748 entities@4.5.0: {} 7615 11749 7616 11750 entities@7.0.1: {} 11751 + 11752 + error-stack-parser-es@1.0.5: {} 11753 + 11754 + errx@0.1.0: {} 7617 11755 7618 11756 es-define-property@1.0.1: {} 7619 11757 ··· 7654 11792 '@esbuild/win32-ia32': 0.25.12 7655 11793 '@esbuild/win32-x64': 0.25.12 7656 11794 11795 + esbuild@0.27.7: 11796 + optionalDependencies: 11797 + '@esbuild/aix-ppc64': 0.27.7 11798 + '@esbuild/android-arm': 0.27.7 11799 + '@esbuild/android-arm64': 0.27.7 11800 + '@esbuild/android-x64': 0.27.7 11801 + '@esbuild/darwin-arm64': 0.27.7 11802 + '@esbuild/darwin-x64': 0.27.7 11803 + '@esbuild/freebsd-arm64': 0.27.7 11804 + '@esbuild/freebsd-x64': 0.27.7 11805 + '@esbuild/linux-arm': 0.27.7 11806 + '@esbuild/linux-arm64': 0.27.7 11807 + '@esbuild/linux-ia32': 0.27.7 11808 + '@esbuild/linux-loong64': 0.27.7 11809 + '@esbuild/linux-mips64el': 0.27.7 11810 + '@esbuild/linux-ppc64': 0.27.7 11811 + '@esbuild/linux-riscv64': 0.27.7 11812 + '@esbuild/linux-s390x': 0.27.7 11813 + '@esbuild/linux-x64': 0.27.7 11814 + '@esbuild/netbsd-arm64': 0.27.7 11815 + '@esbuild/netbsd-x64': 0.27.7 11816 + '@esbuild/openbsd-arm64': 0.27.7 11817 + '@esbuild/openbsd-x64': 0.27.7 11818 + '@esbuild/openharmony-arm64': 0.27.7 11819 + '@esbuild/sunos-x64': 0.27.7 11820 + '@esbuild/win32-arm64': 0.27.7 11821 + '@esbuild/win32-ia32': 0.27.7 11822 + '@esbuild/win32-x64': 0.27.7 11823 + 7657 11824 esbuild@0.28.0: 7658 11825 optionalDependencies: 7659 11826 '@esbuild/aix-ppc64': 0.28.0 ··· 7684 11851 '@esbuild/win32-x64': 0.28.0 7685 11852 7686 11853 escalade@3.2.0: {} 11854 + 11855 + escape-html@1.0.3: {} 7687 11856 7688 11857 escape-string-regexp@1.0.5: {} 7689 11858 ··· 7968 12137 7969 12138 esutils@2.0.3: {} 7970 12139 12140 + etag@1.8.1: {} 12141 + 12142 + event-target-shim@5.0.1: {} 12143 + 7971 12144 eventemitter3@5.0.4: {} 7972 12145 12146 + events-universal@1.0.1: 12147 + dependencies: 12148 + bare-events: 2.8.3 12149 + transitivePeerDependencies: 12150 + - bare-abort-controller 12151 + 12152 + events@3.3.0: {} 12153 + 7973 12154 execa@5.1.1: 7974 12155 dependencies: 7975 12156 cross-spawn: 7.0.6 ··· 7982 12163 signal-exit: 3.0.7 7983 12164 strip-final-newline: 2.0.0 7984 12165 12166 + execa@8.0.1: 12167 + dependencies: 12168 + cross-spawn: 7.0.6 12169 + get-stream: 8.0.1 12170 + human-signals: 5.0.0 12171 + is-stream: 3.0.0 12172 + merge-stream: 2.0.0 12173 + npm-run-path: 5.3.0 12174 + onetime: 6.0.0 12175 + signal-exit: 4.1.0 12176 + strip-final-newline: 3.0.0 12177 + 7985 12178 expand-template@2.0.3: {} 7986 12179 7987 12180 expect-type@1.3.0: {} ··· 7990 12183 7991 12184 extend@3.0.2: {} 7992 12185 12186 + fake-indexeddb@6.2.5: {} 12187 + 7993 12188 fast-decode-uri-component@1.0.1: {} 7994 12189 7995 12190 fast-deep-equal@3.1.3: {} 7996 12191 12192 + fast-fifo@1.3.2: {} 12193 + 12194 + fast-glob@3.3.3: 12195 + dependencies: 12196 + '@nodelib/fs.stat': 2.0.5 12197 + '@nodelib/fs.walk': 1.2.8 12198 + glob-parent: 5.1.2 12199 + merge2: 1.4.1 12200 + micromatch: 4.0.8 12201 + 7997 12202 fast-json-stable-stringify@2.1.0: {} 7998 12203 7999 12204 fast-json-stringify@6.4.0: ··· 8007 12212 8008 12213 fast-levenshtein@2.0.6: {} 8009 12214 12215 + fast-npm-meta@1.5.1: {} 12216 + 8010 12217 fast-querystring@1.1.2: 8011 12218 dependencies: 8012 12219 fast-decode-uri-component: 1.0.1 8013 12220 12221 + fast-string-truncated-width@1.2.1: {} 12222 + 8014 12223 fast-string-truncated-width@3.0.3: {} 12224 + 12225 + fast-string-width@1.1.0: 12226 + dependencies: 12227 + fast-string-truncated-width: 1.2.1 8015 12228 8016 12229 fast-string-width@3.0.2: 8017 12230 dependencies: ··· 8019 12232 8020 12233 fast-uri@3.1.2: {} 8021 12234 12235 + fast-wrap-ansi@0.1.6: 12236 + dependencies: 12237 + fast-string-width: 1.1.0 12238 + 8022 12239 fast-wrap-ansi@0.2.0: 8023 12240 dependencies: 8024 12241 fast-string-width: 3.0.2 ··· 8065 12282 8066 12283 file-uri-to-path@1.0.0: {} 8067 12284 12285 + fill-range@7.1.1: 12286 + dependencies: 12287 + to-regex-range: 5.0.1 12288 + 8068 12289 find-my-way@9.6.0: 8069 12290 dependencies: 8070 12291 fast-deep-equal: 3.1.3 ··· 8112 12333 8113 12334 fraction.js@5.3.4: {} 8114 12335 12336 + fresh@2.0.0: {} 12337 + 8115 12338 fs-constants@1.0.0: {} 8116 12339 8117 12340 fsevents@2.3.3: ··· 8119 12342 8120 12343 function-bind@1.1.2: {} 8121 12344 12345 + fuse.js@7.3.0: {} 12346 + 12347 + fzf@0.5.2: {} 12348 + 8122 12349 gaxios@6.7.1: 8123 12350 dependencies: 8124 12351 extend: 3.0.2 ··· 8141 12368 8142 12369 generator-function@2.0.1: {} 8143 12370 12371 + gensync@1.0.0-beta.2: {} 12372 + 8144 12373 get-caller-file@2.0.5: {} 8145 12374 12375 + get-east-asian-width@1.6.0: {} 12376 + 8146 12377 get-intrinsic@1.3.0: 8147 12378 dependencies: 8148 12379 call-bind-apply-helpers: 1.0.2 ··· 8156 12387 hasown: 2.0.3 8157 12388 math-intrinsics: 1.1.0 8158 12389 12390 + get-port-please@3.2.0: {} 12391 + 8159 12392 get-proto@1.0.1: 8160 12393 dependencies: 8161 12394 dunder-proto: 1.0.1 8162 12395 es-object-atoms: 1.1.2 8163 12396 8164 12397 get-stream@6.0.1: {} 12398 + 12399 + get-stream@8.0.1: {} 8165 12400 8166 12401 get-tsconfig@4.14.0: 8167 12402 dependencies: 8168 12403 resolve-pkg-maps: 1.0.0 8169 12404 12405 + giget@3.2.0: {} 12406 + 8170 12407 github-from-package@0.0.0: {} 8171 12408 8172 12409 github-slugger@2.0.0: {} 12410 + 12411 + glob-parent@5.1.2: 12412 + dependencies: 12413 + is-glob: 4.0.3 8173 12414 8174 12415 glob-parent@6.0.2: 8175 12416 dependencies: ··· 8184 12425 package-json-from-dist: 1.0.1 8185 12426 path-scurry: 1.11.1 8186 12427 12428 + glob@13.0.6: 12429 + dependencies: 12430 + minimatch: 10.2.5 12431 + minipass: 7.1.3 12432 + path-scurry: 2.0.2 12433 + 12434 + global-directory@4.0.1: 12435 + dependencies: 12436 + ini: 4.1.1 12437 + 8187 12438 globals@15.15.0: {} 8188 12439 8189 12440 globals@17.6.0: {} 8190 12441 12442 + globby@16.2.0: 12443 + dependencies: 12444 + '@sindresorhus/merge-streams': 4.0.0 12445 + fast-glob: 3.3.3 12446 + ignore: 7.0.5 12447 + is-path-inside: 4.0.0 12448 + slash: 5.1.0 12449 + unicorn-magic: 0.4.0 12450 + 8191 12451 globrex@0.1.2: {} 8192 12452 8193 12453 google-logging-utils@0.0.2: {} ··· 8196 12456 8197 12457 graceful-fs@4.2.11: {} 8198 12458 12459 + gzip-size@7.0.0: 12460 + dependencies: 12461 + duplexer: 0.1.2 12462 + 12463 + h3@1.15.11: 12464 + dependencies: 12465 + cookie-es: 1.2.3 12466 + crossws: 0.3.5 12467 + defu: 6.1.7 12468 + destr: 2.0.5 12469 + iron-webcrypto: 1.2.1 12470 + node-mock-http: 1.0.4 12471 + radix3: 1.1.2 12472 + ufo: 1.6.4 12473 + uncrypto: 0.1.3 12474 + 12475 + h3@2.0.1-rc.20(crossws@0.4.5(srvx@0.11.16)): 12476 + dependencies: 12477 + rou3: 0.8.1 12478 + srvx: 0.11.16 12479 + optionalDependencies: 12480 + crossws: 0.4.5(srvx@0.11.16) 12481 + 12482 + happy-dom@20.9.0: 12483 + dependencies: 12484 + '@types/node': 24.11.0 12485 + '@types/whatwg-mimetype': 3.0.2 12486 + '@types/ws': 8.18.1 12487 + entities: 7.0.1 12488 + whatwg-mimetype: 3.0.0 12489 + ws: 8.21.0 12490 + transitivePeerDependencies: 12491 + - bufferutil 12492 + - utf-8-validate 12493 + 8199 12494 has-flag@4.0.0: {} 8200 12495 8201 12496 has-property-descriptors@1.0.2: ··· 8213 12508 function-bind: 1.1.2 8214 12509 8215 12510 hookable@5.5.3: {} 12511 + 12512 + hookable@6.1.1: {} 8216 12513 8217 12514 hosted-git-info@7.0.2: 8218 12515 dependencies: ··· 8222 12519 8223 12520 html-escaper@2.0.2: {} 8224 12521 12522 + http-errors@2.0.1: 12523 + dependencies: 12524 + depd: 2.0.0 12525 + inherits: 2.0.4 12526 + setprototypeof: 1.2.0 12527 + statuses: 2.0.2 12528 + toidentifier: 1.0.1 12529 + 12530 + http-shutdown@1.2.2: {} 12531 + 8225 12532 https-proxy-agent@7.0.6: 8226 12533 dependencies: 8227 12534 agent-base: 7.1.4 ··· 8229 12536 transitivePeerDependencies: 8230 12537 - supports-color 8231 12538 12539 + httpxy@0.5.3: {} 12540 + 8232 12541 human-signals@2.1.0: {} 12542 + 12543 + human-signals@5.0.0: {} 8233 12544 8234 12545 ieee754@1.2.1: {} 8235 12546 8236 12547 ignore@5.3.2: {} 8237 12548 8238 12549 ignore@7.0.5: {} 12550 + 12551 + image-meta@0.2.2: {} 8239 12552 8240 12553 import-in-the-middle@1.15.0: 8241 12554 dependencies: ··· 8244 12557 cjs-module-lexer: 1.4.3 8245 12558 module-details-from-path: 1.0.4 8246 12559 12560 + impound@1.1.5: 12561 + dependencies: 12562 + '@jridgewell/trace-mapping': 0.3.31 12563 + es-module-lexer: 2.1.0 12564 + pathe: 2.0.3 12565 + unplugin: 3.0.0 12566 + unplugin-utils: 0.3.1 12567 + 8247 12568 imurmurhash@0.1.4: {} 8248 12569 8249 12570 indent-string@5.0.0: {} ··· 8253 12574 inherits@2.0.4: {} 8254 12575 8255 12576 ini@1.3.8: {} 12577 + 12578 + ini@4.1.1: {} 8256 12579 8257 12580 installed-check-core@8.3.1: 8258 12581 dependencies: ··· 8272 12595 resolve-workspace-root: 2.0.1 8273 12596 version-guard: 1.1.3 8274 12597 12598 + ioredis@5.10.1: 12599 + dependencies: 12600 + '@ioredis/commands': 1.5.1 12601 + cluster-key-slot: 1.1.2 12602 + debug: 4.4.3 12603 + denque: 2.1.0 12604 + lodash.defaults: 4.2.0 12605 + lodash.isarguments: 3.1.0 12606 + redis-errors: 1.2.0 12607 + redis-parser: 3.0.0 12608 + standard-as-callback: 2.1.0 12609 + transitivePeerDependencies: 12610 + - supports-color 12611 + 8275 12612 ipaddr.js@2.4.0: {} 12613 + 12614 + iron-webcrypto@1.2.1: {} 8276 12615 8277 12616 is-arguments@1.2.0: 8278 12617 dependencies: ··· 8288 12627 is-core-module@2.16.1: 8289 12628 dependencies: 8290 12629 hasown: 2.0.3 12630 + 12631 + is-docker@3.0.0: {} 8291 12632 8292 12633 is-extglob@2.1.1: {} 8293 12634 ··· 8305 12646 dependencies: 8306 12647 is-extglob: 2.1.1 8307 12648 12649 + is-in-ssh@1.0.0: {} 12650 + 8308 12651 is-in-subnet@4.0.1: {} 8309 12652 12653 + is-inside-container@1.0.0: 12654 + dependencies: 12655 + is-docker: 3.0.0 12656 + 12657 + is-installed-globally@1.0.0: 12658 + dependencies: 12659 + global-directory: 4.0.1 12660 + is-path-inside: 4.0.0 12661 + 8310 12662 is-module@1.0.0: {} 12663 + 12664 + is-number@7.0.0: {} 12665 + 12666 + is-path-inside@4.0.0: {} 8311 12667 8312 12668 is-reference@1.2.1: 8313 12669 dependencies: ··· 8322 12678 8323 12679 is-stream@2.0.1: {} 8324 12680 12681 + is-stream@3.0.0: {} 12682 + 8325 12683 is-typed-array@1.1.15: 8326 12684 dependencies: 8327 12685 which-typed-array: 1.1.20 8328 12686 12687 + is-wsl@3.1.1: 12688 + dependencies: 12689 + is-inside-container: 1.0.0 12690 + 12691 + isarray@1.0.0: {} 12692 + 8329 12693 isexe@2.0.0: {} 8330 12694 8331 12695 isexe@3.1.5: {} 12696 + 12697 + isexe@4.0.0: {} 8332 12698 8333 12699 istanbul-lib-coverage@3.2.2: {} 8334 12700 ··· 8361 12727 8362 12728 js-tokens@4.0.0: {} 8363 12729 12730 + js-tokens@9.0.1: {} 12731 + 8364 12732 js-xxhash@4.0.0: {} 8365 12733 8366 12734 js-yaml@4.1.1: ··· 8393 12761 8394 12762 json-stable-stringify-without-jsonify@1.0.1: {} 8395 12763 12764 + json5@2.2.3: {} 12765 + 8396 12766 jsonc-eslint-parser@3.1.0: 8397 12767 dependencies: 8398 12768 acorn: 8.16.0 ··· 8408 12778 keyv@4.5.4: 8409 12779 dependencies: 8410 12780 json-buffer: 3.0.1 12781 + 12782 + kleur@4.1.5: {} 12783 + 12784 + klona@2.0.6: {} 8411 12785 8412 12786 knip@6.14.2(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0): 8413 12787 dependencies: ··· 8431 12805 8432 12806 knitwork@1.3.0: {} 8433 12807 12808 + launch-editor@2.13.2: 12809 + dependencies: 12810 + picocolors: 1.1.1 12811 + shell-quote: 1.8.4 12812 + 12813 + lazystream@1.0.1: 12814 + dependencies: 12815 + readable-stream: 2.3.8 12816 + 8434 12817 levn@0.4.1: 8435 12818 dependencies: 8436 12819 prelude-ls: 1.2.1 ··· 8500 12883 read-pkg: 9.0.1 8501 12884 read-workspaces: 1.2.2 8502 12885 12886 + listhen@1.10.0(srvx@0.11.16): 12887 + dependencies: 12888 + '@parcel/watcher': 2.5.6 12889 + '@parcel/watcher-wasm': 2.5.6 12890 + citty: 0.2.2 12891 + consola: 3.4.2 12892 + crossws: 0.4.5(srvx@0.11.16) 12893 + defu: 6.1.7 12894 + get-port-please: 3.2.0 12895 + h3: 1.15.11 12896 + http-shutdown: 1.2.2 12897 + jiti: 2.7.0 12898 + mlly: 1.8.2 12899 + node-forge: 1.4.0 12900 + pathe: 2.0.3 12901 + std-env: 4.1.0 12902 + tinyclip: 0.1.12 12903 + ufo: 1.6.4 12904 + untun: 0.1.3 12905 + uqr: 0.1.3 12906 + transitivePeerDependencies: 12907 + - srvx 12908 + 8503 12909 local-pkg@1.1.2: 8504 12910 dependencies: 8505 12911 mlly: 1.8.2 ··· 8512 12918 8513 12919 lodash.camelcase@4.3.0: {} 8514 12920 12921 + lodash.defaults@4.2.0: {} 12922 + 12923 + lodash.isarguments@3.1.0: {} 12924 + 8515 12925 lodash.memoize@4.1.2: {} 8516 12926 8517 12927 lodash.merge@4.6.2: {} 8518 12928 8519 12929 lodash.uniq@4.5.0: {} 8520 12930 12931 + lodash@4.18.1: {} 12932 + 8521 12933 long@5.3.2: {} 8522 12934 8523 12935 longest-streak@3.1.0: {} 8524 12936 8525 12937 lru-cache@10.4.3: {} 8526 12938 12939 + lru-cache@11.5.0: {} 12940 + 12941 + lru-cache@5.1.1: 12942 + dependencies: 12943 + yallist: 3.1.1 12944 + 12945 + magic-regexp@0.11.0: 12946 + dependencies: 12947 + magic-string: 0.30.21 12948 + regexp-tree: 0.1.27 12949 + type-level-regexp: 0.1.17 12950 + unplugin: 3.0.0 12951 + 12952 + magic-string-ast@1.0.3: 12953 + dependencies: 12954 + magic-string: 0.30.21 12955 + 8527 12956 magic-string@0.30.21: 8528 12957 dependencies: 8529 12958 '@jridgewell/sourcemap-codec': 1.5.5 ··· 8672 13101 mdn-data@2.12.2: {} 8673 13102 8674 13103 merge-stream@2.0.0: {} 13104 + 13105 + merge2@1.4.1: {} 8675 13106 8676 13107 micromark-core-commonmark@2.0.3: 8677 13108 dependencies: ··· 8881 13312 transitivePeerDependencies: 8882 13313 - supports-color 8883 13314 13315 + micromatch@4.0.8: 13316 + dependencies: 13317 + braces: 3.0.3 13318 + picomatch: 2.3.2 13319 + 13320 + mime-db@1.54.0: {} 13321 + 13322 + mime-types@3.0.2: 13323 + dependencies: 13324 + mime-db: 1.54.0 13325 + 13326 + mime@4.1.0: {} 13327 + 8884 13328 mimic-fn@2.1.0: {} 13329 + 13330 + mimic-fn@4.0.0: {} 8885 13331 8886 13332 mimic-response@3.1.0: {} 8887 13333 ··· 8889 13335 dependencies: 8890 13336 brace-expansion: 5.0.5 8891 13337 13338 + minimatch@5.1.9: 13339 + dependencies: 13340 + brace-expansion: 2.0.2 13341 + 8892 13342 minimatch@9.0.5: 8893 13343 dependencies: 8894 13344 brace-expansion: 2.0.2 ··· 8896 13346 minimist@1.2.8: {} 8897 13347 8898 13348 minipass@7.1.2: {} 13349 + 13350 + minipass@7.1.3: {} 13351 + 13352 + minizlib@3.1.0: 13353 + dependencies: 13354 + minipass: 7.1.3 8899 13355 8900 13356 mkdirp-classic@0.5.3: {} 8901 13357 ··· 8930 13386 dependencies: 8931 13387 obliterator: 2.0.5 8932 13388 13389 + mocked-exports@0.1.1: {} 13390 + 8933 13391 module-details-from-path@1.0.4: {} 8934 13392 8935 13393 module-replacements@3.0.0-beta.7: {} 13394 + 13395 + mrmime@2.0.1: {} 8936 13396 8937 13397 ms@2.1.3: {} 8938 13398 ··· 8944 13404 8945 13405 nanoid@5.1.11: {} 8946 13406 13407 + nanotar@0.3.0: {} 13408 + 8947 13409 napi-build-utils@2.0.0: {} 8948 13410 8949 13411 natural-compare@1.4.0: {} 8950 13412 8951 13413 natural-orderby@5.0.0: {} 8952 13414 13415 + nitropack@2.13.4(oxc-parser@0.131.0)(rolldown@1.0.2)(srvx@0.11.16): 13416 + dependencies: 13417 + '@cloudflare/kv-asset-handler': 0.4.2 13418 + '@rollup/plugin-alias': 6.0.0(rollup@4.60.4) 13419 + '@rollup/plugin-commonjs': 29.0.2(rollup@4.60.4) 13420 + '@rollup/plugin-inject': 5.0.5(rollup@4.60.4) 13421 + '@rollup/plugin-json': 6.1.0(rollup@4.60.4) 13422 + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.60.4) 13423 + '@rollup/plugin-replace': 6.0.3(rollup@4.60.4) 13424 + '@rollup/plugin-terser': 1.0.0(rollup@4.60.4) 13425 + '@vercel/nft': 1.5.0(rollup@4.60.4) 13426 + archiver: 7.0.1 13427 + c12: 3.3.4(magicast@0.5.2) 13428 + chokidar: 5.0.0 13429 + citty: 0.2.2 13430 + compatx: 0.2.0 13431 + confbox: 0.2.4 13432 + consola: 3.4.2 13433 + cookie-es: 2.0.1 13434 + croner: 10.0.1 13435 + crossws: 0.3.5 13436 + db0: 0.3.4 13437 + defu: 6.1.7 13438 + destr: 2.0.5 13439 + dot-prop: 10.1.0 13440 + esbuild: 0.28.0 13441 + escape-string-regexp: 5.0.0 13442 + etag: 1.8.1 13443 + exsolve: 1.0.8 13444 + globby: 16.2.0 13445 + gzip-size: 7.0.0 13446 + h3: 1.15.11 13447 + hookable: 5.5.3 13448 + httpxy: 0.5.3 13449 + ioredis: 5.10.1 13450 + jiti: 2.7.0 13451 + klona: 2.0.6 13452 + knitwork: 1.3.0 13453 + listhen: 1.10.0(srvx@0.11.16) 13454 + magic-string: 0.30.21 13455 + magicast: 0.5.2 13456 + mime: 4.1.0 13457 + mlly: 1.8.2 13458 + node-fetch-native: 1.6.7 13459 + node-mock-http: 1.0.4 13460 + ofetch: 1.5.1 13461 + ohash: 2.0.11 13462 + pathe: 2.0.3 13463 + perfect-debounce: 2.1.0 13464 + pkg-types: 2.3.1 13465 + pretty-bytes: 7.1.0 13466 + radix3: 1.1.2 13467 + rollup: 4.60.4 13468 + rollup-plugin-visualizer: 7.0.1(rolldown@1.0.2)(rollup@4.60.4) 13469 + scule: 1.3.0 13470 + semver: 7.8.1 13471 + serve-placeholder: 2.0.2 13472 + serve-static: 2.2.1 13473 + source-map: 0.7.6 13474 + std-env: 4.1.0 13475 + ufo: 1.6.4 13476 + ultrahtml: 1.6.0 13477 + uncrypto: 0.1.3 13478 + unctx: 2.5.0 13479 + unenv: 2.0.0-rc.24 13480 + unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.0.2) 13481 + unplugin-utils: 0.3.1 13482 + unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1) 13483 + untyped: 2.0.0 13484 + unwasm: 0.5.3 13485 + youch: 4.1.1 13486 + youch-core: 0.3.3 13487 + transitivePeerDependencies: 13488 + - '@azure/app-configuration' 13489 + - '@azure/cosmos' 13490 + - '@azure/data-tables' 13491 + - '@azure/identity' 13492 + - '@azure/keyvault-secrets' 13493 + - '@azure/storage-blob' 13494 + - '@capacitor/preferences' 13495 + - '@deno/kv' 13496 + - '@electric-sql/pglite' 13497 + - '@libsql/client' 13498 + - '@netlify/blobs' 13499 + - '@planetscale/database' 13500 + - '@upstash/redis' 13501 + - '@vercel/blob' 13502 + - '@vercel/functions' 13503 + - '@vercel/kv' 13504 + - aws4fetch 13505 + - bare-abort-controller 13506 + - bare-buffer 13507 + - better-sqlite3 13508 + - drizzle-orm 13509 + - encoding 13510 + - idb-keyval 13511 + - mysql2 13512 + - oxc-parser 13513 + - react-native-b4a 13514 + - rolldown 13515 + - sqlite3 13516 + - srvx 13517 + - supports-color 13518 + - uploadthing 13519 + 8953 13520 node-abi@3.92.0: 8954 13521 dependencies: 8955 13522 semver: 7.8.1 8956 13523 13524 + node-addon-api@7.1.1: {} 13525 + 13526 + node-fetch-native@1.6.7: {} 13527 + 8957 13528 node-fetch@2.7.0: 8958 13529 dependencies: 8959 13530 whatwg-url: 5.0.0 8960 13531 13532 + node-forge@1.4.0: {} 13533 + 13534 + node-gyp-build@4.8.4: {} 13535 + 13536 + node-mock-http@1.0.4: {} 13537 + 8961 13538 node-releases@2.0.38: {} 8962 13539 13540 + nopt@8.1.0: 13541 + dependencies: 13542 + abbrev: 3.0.1 13543 + 8963 13544 normalize-package-data@6.0.2: 8964 13545 dependencies: 8965 13546 hosted-git-info: 7.0.2 8966 13547 semver: 7.8.1 8967 13548 validate-npm-package-license: 3.0.4 8968 13549 13550 + normalize-path@3.0.0: {} 13551 + 8969 13552 npm-normalize-package-bin@3.0.1: {} 8970 13553 8971 13554 npm-run-path@4.0.1: 8972 13555 dependencies: 8973 13556 path-key: 3.1.1 8974 13557 13558 + npm-run-path@5.3.0: 13559 + dependencies: 13560 + path-key: 4.0.0 13561 + 13562 + npm-run-path@6.0.0: 13563 + dependencies: 13564 + path-key: 4.0.0 13565 + unicorn-magic: 0.3.0 13566 + 8975 13567 nth-check@2.1.1: 8976 13568 dependencies: 8977 13569 boolbase: 1.0.0 8978 13570 13571 + nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0): 13572 + dependencies: 13573 + '@dxup/nuxt': 0.4.1(magicast@0.5.2)(typescript@6.0.3) 13574 + '@nuxt/cli': 3.35.2(@nuxt/schema@4.4.6)(cac@6.7.14)(magicast@0.5.2) 13575 + '@nuxt/devtools': 3.2.4(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)) 13576 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 13577 + '@nuxt/nitro-server': 4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.2)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.2)(srvx@0.11.16)(typescript@6.0.3) 13578 + '@nuxt/schema': 4.4.6 13579 + '@nuxt/telemetry': 2.8.0(@nuxt/kit@4.4.6(magicast@0.5.2)) 13580 + '@nuxt/vite-builder': 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@types/node@24.11.0)(eslint@10.4.0(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.2)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@parcel/watcher@2.5.6)(@types/node@24.11.0)(@vue/compiler-sfc@3.5.34)(cac@6.7.14)(db0@0.3.4)(eslint@10.4.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.16)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.2)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4))(rollup@4.60.4)(terser@5.48.0)(tsx@4.22.3)(typescript@6.0.3)(vue-tsc@3.2.8(typescript@6.0.3))(vue@3.5.34(typescript@6.0.3))(yaml@2.9.0) 13581 + '@unhead/vue': 2.1.15(vue@3.5.34(typescript@6.0.3)) 13582 + '@vue/shared': 3.5.34 13583 + chokidar: 5.0.0 13584 + compatx: 0.2.0 13585 + consola: 3.4.2 13586 + cookie-es: 3.1.1 13587 + defu: 6.1.7 13588 + devalue: 5.8.1 13589 + errx: 0.1.0 13590 + escape-string-regexp: 5.0.0 13591 + exsolve: 1.0.8 13592 + hookable: 6.1.1 13593 + ignore: 7.0.5 13594 + impound: 1.1.5 13595 + jiti: 2.7.0 13596 + klona: 2.0.6 13597 + knitwork: 1.3.0 13598 + magic-string: 0.30.21 13599 + mlly: 1.8.2 13600 + nanotar: 0.3.0 13601 + nypm: 0.6.6 13602 + ofetch: 1.5.1 13603 + ohash: 2.0.11 13604 + on-change: 6.0.2 13605 + oxc-minify: 0.131.0 13606 + oxc-parser: 0.131.0 13607 + oxc-transform: 0.131.0 13608 + oxc-walker: 1.0.0(oxc-parser@0.131.0)(rolldown@1.0.2) 13609 + pathe: 2.0.3 13610 + perfect-debounce: 2.1.0 13611 + picomatch: 4.0.4 13612 + pkg-types: 2.3.1 13613 + rou3: 0.8.1 13614 + scule: 1.3.0 13615 + semver: 7.8.1 13616 + std-env: 4.1.0 13617 + tinyglobby: 0.2.16 13618 + ufo: 1.6.4 13619 + ultrahtml: 1.6.0 13620 + uncrypto: 0.1.3 13621 + unctx: 2.5.0 13622 + unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.0.2) 13623 + unplugin: 3.0.0 13624 + unrouting: 0.1.7 13625 + untyped: 2.0.0 13626 + vue: 3.5.34(typescript@6.0.3) 13627 + vue-router: 5.0.7(@vue/compiler-sfc@3.5.34)(vue@3.5.34(typescript@6.0.3)) 13628 + optionalDependencies: 13629 + '@parcel/watcher': 2.5.6 13630 + '@types/node': 24.11.0 13631 + transitivePeerDependencies: 13632 + - '@azure/app-configuration' 13633 + - '@azure/cosmos' 13634 + - '@azure/data-tables' 13635 + - '@azure/identity' 13636 + - '@azure/keyvault-secrets' 13637 + - '@azure/storage-blob' 13638 + - '@babel/plugin-proposal-decorators' 13639 + - '@babel/plugin-syntax-jsx' 13640 + - '@babel/plugin-syntax-typescript' 13641 + - '@biomejs/biome' 13642 + - '@capacitor/preferences' 13643 + - '@deno/kv' 13644 + - '@electric-sql/pglite' 13645 + - '@libsql/client' 13646 + - '@netlify/blobs' 13647 + - '@pinia/colada' 13648 + - '@planetscale/database' 13649 + - '@rollup/plugin-babel' 13650 + - '@upstash/redis' 13651 + - '@vercel/blob' 13652 + - '@vercel/functions' 13653 + - '@vercel/kv' 13654 + - '@vitejs/devtools' 13655 + - '@vue/compiler-sfc' 13656 + - aws4fetch 13657 + - bare-abort-controller 13658 + - bare-buffer 13659 + - better-sqlite3 13660 + - bufferutil 13661 + - cac 13662 + - commander 13663 + - db0 13664 + - drizzle-orm 13665 + - encoding 13666 + - eslint 13667 + - idb-keyval 13668 + - ioredis 13669 + - less 13670 + - lightningcss 13671 + - magicast 13672 + - meow 13673 + - mysql2 13674 + - optionator 13675 + - oxlint 13676 + - pinia 13677 + - react-native-b4a 13678 + - rolldown 13679 + - rollup 13680 + - rollup-plugin-visualizer 13681 + - sass 13682 + - sass-embedded 13683 + - sqlite3 13684 + - srvx 13685 + - stylelint 13686 + - stylus 13687 + - sugarss 13688 + - supports-color 13689 + - terser 13690 + - tsx 13691 + - typescript 13692 + - uploadthing 13693 + - utf-8-validate 13694 + - vite 13695 + - vls 13696 + - vti 13697 + - vue-tsc 13698 + - xml2js 13699 + - yaml 13700 + 13701 + nypm@0.6.6: 13702 + dependencies: 13703 + citty: 0.2.2 13704 + pathe: 2.0.3 13705 + tinyexec: 1.1.2 13706 + 8979 13707 object-deep-merge@2.0.0: {} 8980 13708 8981 13709 object-treeify@1.1.33: {} ··· 8984 13712 8985 13713 obug@2.1.1: {} 8986 13714 13715 + ofetch@1.5.1: 13716 + dependencies: 13717 + destr: 2.0.5 13718 + node-fetch-native: 1.6.7 13719 + ufo: 1.6.4 13720 + 13721 + ofetch@2.0.0-alpha.3: {} 13722 + 13723 + ohash@2.0.11: {} 13724 + 13725 + on-change@6.0.2: {} 13726 + 8987 13727 on-exit-leak-free@2.1.2: {} 8988 13728 13729 + on-finished@2.4.1: 13730 + dependencies: 13731 + ee-first: 1.1.1 13732 + 8989 13733 once@1.4.0: 8990 13734 dependencies: 8991 13735 wrappy: 1.0.2 ··· 8994 13738 dependencies: 8995 13739 mimic-fn: 2.1.0 8996 13740 13741 + onetime@6.0.0: 13742 + dependencies: 13743 + mimic-fn: 4.0.0 13744 + 13745 + open@10.2.0: 13746 + dependencies: 13747 + default-browser: 5.5.0 13748 + define-lazy-prop: 3.0.0 13749 + is-inside-container: 1.0.0 13750 + wsl-utils: 0.1.0 13751 + 13752 + open@11.0.0: 13753 + dependencies: 13754 + default-browser: 5.5.0 13755 + define-lazy-prop: 3.0.0 13756 + is-in-ssh: 1.0.0 13757 + is-inside-container: 1.0.0 13758 + powershell-utils: 0.1.0 13759 + wsl-utils: 0.3.1 13760 + 8997 13761 optionator@0.9.4: 8998 13762 dependencies: 8999 13763 deep-is: 0.1.4 ··· 9003 13767 type-check: 0.4.0 9004 13768 word-wrap: 1.2.5 9005 13769 13770 + oxc-minify@0.131.0: 13771 + optionalDependencies: 13772 + '@oxc-minify/binding-android-arm-eabi': 0.131.0 13773 + '@oxc-minify/binding-android-arm64': 0.131.0 13774 + '@oxc-minify/binding-darwin-arm64': 0.131.0 13775 + '@oxc-minify/binding-darwin-x64': 0.131.0 13776 + '@oxc-minify/binding-freebsd-x64': 0.131.0 13777 + '@oxc-minify/binding-linux-arm-gnueabihf': 0.131.0 13778 + '@oxc-minify/binding-linux-arm-musleabihf': 0.131.0 13779 + '@oxc-minify/binding-linux-arm64-gnu': 0.131.0 13780 + '@oxc-minify/binding-linux-arm64-musl': 0.131.0 13781 + '@oxc-minify/binding-linux-ppc64-gnu': 0.131.0 13782 + '@oxc-minify/binding-linux-riscv64-gnu': 0.131.0 13783 + '@oxc-minify/binding-linux-riscv64-musl': 0.131.0 13784 + '@oxc-minify/binding-linux-s390x-gnu': 0.131.0 13785 + '@oxc-minify/binding-linux-x64-gnu': 0.131.0 13786 + '@oxc-minify/binding-linux-x64-musl': 0.131.0 13787 + '@oxc-minify/binding-openharmony-arm64': 0.131.0 13788 + '@oxc-minify/binding-wasm32-wasi': 0.131.0 13789 + '@oxc-minify/binding-win32-arm64-msvc': 0.131.0 13790 + '@oxc-minify/binding-win32-ia32-msvc': 0.131.0 13791 + '@oxc-minify/binding-win32-x64-msvc': 0.131.0 13792 + 9006 13793 oxc-parser@0.130.0: 9007 13794 dependencies: 9008 13795 '@oxc-project/types': 0.130.0 ··· 9028 13815 '@oxc-parser/binding-win32-ia32-msvc': 0.130.0 9029 13816 '@oxc-parser/binding-win32-x64-msvc': 0.130.0 9030 13817 13818 + oxc-parser@0.131.0: 13819 + dependencies: 13820 + '@oxc-project/types': 0.131.0 13821 + optionalDependencies: 13822 + '@oxc-parser/binding-android-arm-eabi': 0.131.0 13823 + '@oxc-parser/binding-android-arm64': 0.131.0 13824 + '@oxc-parser/binding-darwin-arm64': 0.131.0 13825 + '@oxc-parser/binding-darwin-x64': 0.131.0 13826 + '@oxc-parser/binding-freebsd-x64': 0.131.0 13827 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.131.0 13828 + '@oxc-parser/binding-linux-arm-musleabihf': 0.131.0 13829 + '@oxc-parser/binding-linux-arm64-gnu': 0.131.0 13830 + '@oxc-parser/binding-linux-arm64-musl': 0.131.0 13831 + '@oxc-parser/binding-linux-ppc64-gnu': 0.131.0 13832 + '@oxc-parser/binding-linux-riscv64-gnu': 0.131.0 13833 + '@oxc-parser/binding-linux-riscv64-musl': 0.131.0 13834 + '@oxc-parser/binding-linux-s390x-gnu': 0.131.0 13835 + '@oxc-parser/binding-linux-x64-gnu': 0.131.0 13836 + '@oxc-parser/binding-linux-x64-musl': 0.131.0 13837 + '@oxc-parser/binding-openharmony-arm64': 0.131.0 13838 + '@oxc-parser/binding-wasm32-wasi': 0.131.0 13839 + '@oxc-parser/binding-win32-arm64-msvc': 0.131.0 13840 + '@oxc-parser/binding-win32-ia32-msvc': 0.131.0 13841 + '@oxc-parser/binding-win32-x64-msvc': 0.131.0 13842 + 9031 13843 oxc-resolver@11.19.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0): 9032 13844 optionalDependencies: 9033 13845 '@oxc-resolver/binding-android-arm-eabi': 11.19.1 ··· 9054 13866 - '@emnapi/core' 9055 13867 - '@emnapi/runtime' 9056 13868 13869 + oxc-transform@0.131.0: 13870 + optionalDependencies: 13871 + '@oxc-transform/binding-android-arm-eabi': 0.131.0 13872 + '@oxc-transform/binding-android-arm64': 0.131.0 13873 + '@oxc-transform/binding-darwin-arm64': 0.131.0 13874 + '@oxc-transform/binding-darwin-x64': 0.131.0 13875 + '@oxc-transform/binding-freebsd-x64': 0.131.0 13876 + '@oxc-transform/binding-linux-arm-gnueabihf': 0.131.0 13877 + '@oxc-transform/binding-linux-arm-musleabihf': 0.131.0 13878 + '@oxc-transform/binding-linux-arm64-gnu': 0.131.0 13879 + '@oxc-transform/binding-linux-arm64-musl': 0.131.0 13880 + '@oxc-transform/binding-linux-ppc64-gnu': 0.131.0 13881 + '@oxc-transform/binding-linux-riscv64-gnu': 0.131.0 13882 + '@oxc-transform/binding-linux-riscv64-musl': 0.131.0 13883 + '@oxc-transform/binding-linux-s390x-gnu': 0.131.0 13884 + '@oxc-transform/binding-linux-x64-gnu': 0.131.0 13885 + '@oxc-transform/binding-linux-x64-musl': 0.131.0 13886 + '@oxc-transform/binding-openharmony-arm64': 0.131.0 13887 + '@oxc-transform/binding-wasm32-wasi': 0.131.0 13888 + '@oxc-transform/binding-win32-arm64-msvc': 0.131.0 13889 + '@oxc-transform/binding-win32-ia32-msvc': 0.131.0 13890 + '@oxc-transform/binding-win32-x64-msvc': 0.131.0 13891 + 13892 + oxc-walker@1.0.0(oxc-parser@0.131.0)(rolldown@1.0.2): 13893 + dependencies: 13894 + magic-regexp: 0.11.0 13895 + optionalDependencies: 13896 + oxc-parser: 0.131.0 13897 + rolldown: 1.0.2 13898 + 9057 13899 oxfmt@0.45.0: 9058 13900 dependencies: 9059 13901 tinypool: 2.1.0 ··· 9098 13940 9099 13941 parse-json@8.3.0: 9100 13942 dependencies: 9101 - '@babel/code-frame': 7.28.6 13943 + '@babel/code-frame': 7.29.0 9102 13944 index-to-position: 1.2.0 9103 13945 type-fest: 4.41.0 9104 13946 ··· 9108 13950 9109 13951 parse-statements@1.0.11: {} 9110 13952 13953 + parseurl@1.3.3: {} 13954 + 9111 13955 path-browserify@1.0.1: {} 9112 13956 9113 13957 path-exists@4.0.0: {} 9114 13958 9115 13959 path-key@3.1.1: {} 9116 13960 13961 + path-key@4.0.0: {} 13962 + 9117 13963 path-parse@1.0.7: {} 9118 13964 9119 13965 path-scurry@1.11.1: 9120 13966 dependencies: 9121 13967 lru-cache: 10.4.3 9122 - minipass: 7.1.2 13968 + minipass: 7.1.3 13969 + 13970 + path-scurry@2.0.2: 13971 + dependencies: 13972 + lru-cache: 11.5.0 13973 + minipass: 7.1.3 13974 + 13975 + pathe@1.1.2: {} 9123 13976 9124 13977 pathe@2.0.3: {} 9125 13978 9126 13979 peowly@1.3.3: {} 13980 + 13981 + perfect-debounce@2.1.0: {} 9127 13982 9128 13983 pg-format-fix@1.0.5: {} 9129 13984 ··· 9140 13995 postgres-interval: 1.2.0 9141 13996 9142 13997 picocolors@1.1.1: {} 13998 + 13999 + picomatch@2.3.2: {} 9143 14000 9144 14001 picomatch@4.0.4: {} 9145 14002 ··· 9199 14056 postcss: 8.5.15 9200 14057 postcss-value-parser: 4.2.0 9201 14058 14059 + postcss-colormin@8.0.0(postcss@8.5.15): 14060 + dependencies: 14061 + '@colordx/core': 5.4.3 14062 + browserslist: 4.28.2 14063 + caniuse-api: 3.0.0 14064 + postcss: 8.5.15 14065 + postcss-value-parser: 4.2.0 14066 + 9202 14067 postcss-convert-values@7.0.8(postcss@8.5.15): 9203 14068 dependencies: 9204 14069 browserslist: 4.28.2 9205 14070 postcss: 8.5.15 9206 14071 postcss-value-parser: 4.2.0 9207 14072 14073 + postcss-convert-values@8.0.0(postcss@8.5.15): 14074 + dependencies: 14075 + browserslist: 4.28.2 14076 + postcss: 8.5.15 14077 + postcss-value-parser: 4.2.0 14078 + 9208 14079 postcss-discard-comments@7.0.5(postcss@8.5.15): 9209 14080 dependencies: 9210 14081 postcss: 8.5.15 9211 14082 postcss-selector-parser: 7.1.1 9212 14083 14084 + postcss-discard-comments@8.0.0(postcss@8.5.15): 14085 + dependencies: 14086 + postcss: 8.5.15 14087 + postcss-selector-parser: 7.1.1 14088 + 9213 14089 postcss-discard-duplicates@7.0.2(postcss@8.5.15): 9214 14090 dependencies: 9215 14091 postcss: 8.5.15 9216 14092 14093 + postcss-discard-duplicates@8.0.0(postcss@8.5.15): 14094 + dependencies: 14095 + postcss: 8.5.15 14096 + 9217 14097 postcss-discard-empty@7.0.1(postcss@8.5.15): 14098 + dependencies: 14099 + postcss: 8.5.15 14100 + 14101 + postcss-discard-empty@8.0.0(postcss@8.5.15): 9218 14102 dependencies: 9219 14103 postcss: 8.5.15 9220 14104 ··· 9222 14106 dependencies: 9223 14107 postcss: 8.5.15 9224 14108 14109 + postcss-discard-overridden@8.0.0(postcss@8.5.15): 14110 + dependencies: 14111 + postcss: 8.5.15 14112 + 9225 14113 postcss-merge-longhand@7.0.5(postcss@8.5.15): 9226 14114 dependencies: 9227 14115 postcss: 8.5.15 9228 14116 postcss-value-parser: 4.2.0 9229 14117 stylehacks: 7.0.7(postcss@8.5.15) 9230 14118 14119 + postcss-merge-longhand@8.0.0(postcss@8.5.15): 14120 + dependencies: 14121 + postcss: 8.5.15 14122 + postcss-value-parser: 4.2.0 14123 + stylehacks: 8.0.0(postcss@8.5.15) 14124 + 9231 14125 postcss-merge-rules@7.0.7(postcss@8.5.15): 9232 14126 dependencies: 9233 14127 browserslist: 4.28.2 ··· 9236 14130 postcss: 8.5.15 9237 14131 postcss-selector-parser: 7.1.1 9238 14132 14133 + postcss-merge-rules@8.0.0(postcss@8.5.15): 14134 + dependencies: 14135 + browserslist: 4.28.2 14136 + caniuse-api: 3.0.0 14137 + cssnano-utils: 6.0.0(postcss@8.5.15) 14138 + postcss: 8.5.15 14139 + postcss-selector-parser: 7.1.1 14140 + 9239 14141 postcss-minify-font-values@7.0.1(postcss@8.5.15): 14142 + dependencies: 14143 + postcss: 8.5.15 14144 + postcss-value-parser: 4.2.0 14145 + 14146 + postcss-minify-font-values@8.0.0(postcss@8.5.15): 9240 14147 dependencies: 9241 14148 postcss: 8.5.15 9242 14149 postcss-value-parser: 4.2.0 ··· 9248 14155 postcss: 8.5.15 9249 14156 postcss-value-parser: 4.2.0 9250 14157 14158 + postcss-minify-gradients@8.0.0(postcss@8.5.15): 14159 + dependencies: 14160 + '@colordx/core': 5.4.3 14161 + cssnano-utils: 6.0.0(postcss@8.5.15) 14162 + postcss: 8.5.15 14163 + postcss-value-parser: 4.2.0 14164 + 9251 14165 postcss-minify-params@7.0.5(postcss@8.5.15): 9252 14166 dependencies: 9253 14167 browserslist: 4.28.2 ··· 9255 14169 postcss: 8.5.15 9256 14170 postcss-value-parser: 4.2.0 9257 14171 14172 + postcss-minify-params@8.0.0(postcss@8.5.15): 14173 + dependencies: 14174 + browserslist: 4.28.2 14175 + cssnano-utils: 6.0.0(postcss@8.5.15) 14176 + postcss: 8.5.15 14177 + postcss-value-parser: 4.2.0 14178 + 9258 14179 postcss-minify-selectors@7.0.5(postcss@8.5.15): 9259 14180 dependencies: 14181 + cssesc: 3.0.0 14182 + postcss: 8.5.15 14183 + postcss-selector-parser: 7.1.1 14184 + 14185 + postcss-minify-selectors@8.0.1(postcss@8.5.15): 14186 + dependencies: 14187 + browserslist: 4.28.2 14188 + caniuse-api: 3.0.0 9260 14189 cssesc: 3.0.0 9261 14190 postcss: 8.5.15 9262 14191 postcss-selector-parser: 7.1.1 ··· 9270 14199 dependencies: 9271 14200 postcss: 8.5.15 9272 14201 14202 + postcss-normalize-charset@8.0.0(postcss@8.5.15): 14203 + dependencies: 14204 + postcss: 8.5.15 14205 + 9273 14206 postcss-normalize-display-values@7.0.1(postcss@8.5.15): 9274 14207 dependencies: 9275 14208 postcss: 8.5.15 9276 14209 postcss-value-parser: 4.2.0 9277 14210 14211 + postcss-normalize-display-values@8.0.0(postcss@8.5.15): 14212 + dependencies: 14213 + postcss: 8.5.15 14214 + postcss-value-parser: 4.2.0 14215 + 9278 14216 postcss-normalize-positions@7.0.1(postcss@8.5.15): 9279 14217 dependencies: 9280 14218 postcss: 8.5.15 9281 14219 postcss-value-parser: 4.2.0 9282 14220 14221 + postcss-normalize-positions@8.0.0(postcss@8.5.15): 14222 + dependencies: 14223 + postcss: 8.5.15 14224 + postcss-value-parser: 4.2.0 14225 + 9283 14226 postcss-normalize-repeat-style@7.0.1(postcss@8.5.15): 9284 14227 dependencies: 9285 14228 postcss: 8.5.15 9286 14229 postcss-value-parser: 4.2.0 9287 14230 14231 + postcss-normalize-repeat-style@8.0.0(postcss@8.5.15): 14232 + dependencies: 14233 + postcss: 8.5.15 14234 + postcss-value-parser: 4.2.0 14235 + 9288 14236 postcss-normalize-string@7.0.1(postcss@8.5.15): 9289 14237 dependencies: 9290 14238 postcss: 8.5.15 9291 14239 postcss-value-parser: 4.2.0 9292 14240 14241 + postcss-normalize-string@8.0.0(postcss@8.5.15): 14242 + dependencies: 14243 + postcss: 8.5.15 14244 + postcss-value-parser: 4.2.0 14245 + 9293 14246 postcss-normalize-timing-functions@7.0.1(postcss@8.5.15): 9294 14247 dependencies: 9295 14248 postcss: 8.5.15 9296 14249 postcss-value-parser: 4.2.0 9297 14250 14251 + postcss-normalize-timing-functions@8.0.0(postcss@8.5.15): 14252 + dependencies: 14253 + postcss: 8.5.15 14254 + postcss-value-parser: 4.2.0 14255 + 9298 14256 postcss-normalize-unicode@7.0.5(postcss@8.5.15): 9299 14257 dependencies: 9300 14258 browserslist: 4.28.2 9301 14259 postcss: 8.5.15 9302 14260 postcss-value-parser: 4.2.0 9303 14261 14262 + postcss-normalize-unicode@8.0.0(postcss@8.5.15): 14263 + dependencies: 14264 + browserslist: 4.28.2 14265 + postcss: 8.5.15 14266 + postcss-value-parser: 4.2.0 14267 + 9304 14268 postcss-normalize-url@7.0.1(postcss@8.5.15): 9305 14269 dependencies: 9306 14270 postcss: 8.5.15 9307 14271 postcss-value-parser: 4.2.0 9308 14272 14273 + postcss-normalize-url@8.0.0(postcss@8.5.15): 14274 + dependencies: 14275 + postcss: 8.5.15 14276 + postcss-value-parser: 4.2.0 14277 + 9309 14278 postcss-normalize-whitespace@7.0.1(postcss@8.5.15): 9310 14279 dependencies: 9311 14280 postcss: 8.5.15 9312 14281 postcss-value-parser: 4.2.0 9313 14282 14283 + postcss-normalize-whitespace@8.0.0(postcss@8.5.15): 14284 + dependencies: 14285 + postcss: 8.5.15 14286 + postcss-value-parser: 4.2.0 14287 + 9314 14288 postcss-ordered-values@7.0.2(postcss@8.5.15): 9315 14289 dependencies: 9316 14290 cssnano-utils: 5.0.1(postcss@8.5.15) 9317 14291 postcss: 8.5.15 9318 14292 postcss-value-parser: 4.2.0 9319 14293 14294 + postcss-ordered-values@8.0.0(postcss@8.5.15): 14295 + dependencies: 14296 + cssnano-utils: 6.0.0(postcss@8.5.15) 14297 + postcss: 8.5.15 14298 + postcss-value-parser: 4.2.0 14299 + 9320 14300 postcss-reduce-initial@7.0.5(postcss@8.5.15): 9321 14301 dependencies: 9322 14302 browserslist: 4.28.2 9323 14303 caniuse-api: 3.0.0 9324 14304 postcss: 8.5.15 9325 14305 14306 + postcss-reduce-initial@8.0.0(postcss@8.5.15): 14307 + dependencies: 14308 + browserslist: 4.28.2 14309 + caniuse-api: 3.0.0 14310 + postcss: 8.5.15 14311 + 9326 14312 postcss-reduce-transforms@7.0.1(postcss@8.5.15): 14313 + dependencies: 14314 + postcss: 8.5.15 14315 + postcss-value-parser: 4.2.0 14316 + 14317 + postcss-reduce-transforms@8.0.0(postcss@8.5.15): 9327 14318 dependencies: 9328 14319 postcss: 8.5.15 9329 14320 postcss-value-parser: 4.2.0 ··· 9339 14330 postcss-value-parser: 4.2.0 9340 14331 svgo: 4.0.0 9341 14332 14333 + postcss-svgo@8.0.0(postcss@8.5.15): 14334 + dependencies: 14335 + postcss: 8.5.15 14336 + postcss-value-parser: 4.2.0 14337 + svgo: 4.0.1 14338 + 9342 14339 postcss-unique-selectors@7.0.4(postcss@8.5.15): 9343 14340 dependencies: 9344 14341 postcss: 8.5.15 9345 14342 postcss-selector-parser: 7.1.1 9346 14343 14344 + postcss-unique-selectors@8.0.0(postcss@8.5.15): 14345 + dependencies: 14346 + postcss: 8.5.15 14347 + postcss-selector-parser: 7.1.1 14348 + 9347 14349 postcss-value-parser@4.2.0: {} 9348 14350 9349 14351 postcss@8.5.15: ··· 9363 14365 xtend: 4.0.2 9364 14366 9365 14367 postgres@3.4.7: {} 14368 + 14369 + powershell-utils@0.1.0: {} 9366 14370 9367 14371 prebuild-install@7.1.3: 9368 14372 dependencies: ··· 9382 14386 prelude-ls@1.2.1: {} 9383 14387 9384 14388 pretty-bytes@7.1.0: {} 14389 + 14390 + process-nextick-args@2.0.1: {} 9385 14391 9386 14392 process-warning@4.0.1: {} 9387 14393 ··· 9389 14395 9390 14396 process@0.11.10: {} 9391 14397 14398 + proper-lockfile@4.1.2: 14399 + dependencies: 14400 + graceful-fs: 4.2.11 14401 + retry: 0.12.0 14402 + signal-exit: 3.0.7 14403 + 9392 14404 protobufjs@7.6.1: 9393 14405 dependencies: 9394 14406 '@protobufjs/aspromise': 1.1.2 ··· 9413 14425 9414 14426 quansync@0.2.11: {} 9415 14427 14428 + queue-microtask@1.2.3: {} 14429 + 9416 14430 quick-format-unescaped@4.0.4: {} 9417 14431 14432 + radix3@1.1.2: {} 14433 + 14434 + range-parser@1.2.1: {} 14435 + 14436 + rc9@3.0.1: 14437 + dependencies: 14438 + defu: 6.1.7 14439 + destr: 2.0.5 14440 + 9418 14441 rc@1.2.8: 9419 14442 dependencies: 9420 14443 deep-extend: 0.6.0 ··· 9446 14469 js-yaml: 4.1.1 9447 14470 strip-bom: 4.0.0 9448 14471 14472 + readable-stream@2.3.8: 14473 + dependencies: 14474 + core-util-is: 1.0.3 14475 + inherits: 2.0.4 14476 + isarray: 1.0.0 14477 + process-nextick-args: 2.0.1 14478 + safe-buffer: 5.1.2 14479 + string_decoder: 1.1.1 14480 + util-deprecate: 1.0.2 14481 + 9449 14482 readable-stream@3.6.2: 9450 14483 dependencies: 9451 14484 inherits: 2.0.4 9452 14485 string_decoder: 1.3.0 9453 14486 util-deprecate: 1.0.2 9454 14487 14488 + readable-stream@4.7.0: 14489 + dependencies: 14490 + abort-controller: 3.0.0 14491 + buffer: 6.0.3 14492 + events: 3.3.0 14493 + process: 0.11.10 14494 + string_decoder: 1.3.0 14495 + 14496 + readdir-glob@1.1.3: 14497 + dependencies: 14498 + minimatch: 5.1.9 14499 + 9455 14500 readdirp@4.1.2: {} 9456 14501 14502 + readdirp@5.0.0: {} 14503 + 9457 14504 real-require@0.2.0: {} 9458 14505 9459 14506 real-require@1.0.0: {} 9460 14507 14508 + redis-errors@1.2.0: {} 14509 + 14510 + redis-parser@3.0.0: 14511 + dependencies: 14512 + redis-errors: 1.2.0 14513 + 9461 14514 refa@0.12.1: 9462 14515 dependencies: 9463 14516 '@eslint-community/regexpp': 4.12.2 ··· 9487 14540 9488 14541 reserved-identifiers@1.2.0: {} 9489 14542 14543 + resolve-from@5.0.0: {} 14544 + 9490 14545 resolve-pkg-maps@1.0.0: {} 9491 14546 9492 14547 resolve-workspace-root@2.0.1: {} ··· 9500 14555 9501 14556 ret@0.5.0: {} 9502 14557 14558 + retry@0.12.0: {} 14559 + 9503 14560 reusify@1.1.0: {} 9504 14561 9505 14562 rfdc@1.4.1: {} ··· 9533 14590 optionalDependencies: 9534 14591 '@babel/code-frame': 7.28.6 9535 14592 14593 + rollup-plugin-visualizer@7.0.1(rolldown@1.0.2)(rollup@4.60.4): 14594 + dependencies: 14595 + open: 11.0.0 14596 + picomatch: 4.0.4 14597 + source-map: 0.7.6 14598 + yargs: 18.0.0 14599 + optionalDependencies: 14600 + rolldown: 1.0.2 14601 + rollup: 4.60.4 14602 + 9536 14603 rollup@4.56.0: 9537 14604 dependencies: 9538 14605 '@types/estree': 1.0.8 ··· 9563 14630 '@rollup/rollup-win32-x64-gnu': 4.56.0 9564 14631 '@rollup/rollup-win32-x64-msvc': 4.56.0 9565 14632 fsevents: 2.3.3 14633 + 14634 + rollup@4.60.4: 14635 + dependencies: 14636 + '@types/estree': 1.0.8 14637 + optionalDependencies: 14638 + '@rollup/rollup-android-arm-eabi': 4.60.4 14639 + '@rollup/rollup-android-arm64': 4.60.4 14640 + '@rollup/rollup-darwin-arm64': 4.60.4 14641 + '@rollup/rollup-darwin-x64': 4.60.4 14642 + '@rollup/rollup-freebsd-arm64': 4.60.4 14643 + '@rollup/rollup-freebsd-x64': 4.60.4 14644 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.4 14645 + '@rollup/rollup-linux-arm-musleabihf': 4.60.4 14646 + '@rollup/rollup-linux-arm64-gnu': 4.60.4 14647 + '@rollup/rollup-linux-arm64-musl': 4.60.4 14648 + '@rollup/rollup-linux-loong64-gnu': 4.60.4 14649 + '@rollup/rollup-linux-loong64-musl': 4.60.4 14650 + '@rollup/rollup-linux-ppc64-gnu': 4.60.4 14651 + '@rollup/rollup-linux-ppc64-musl': 4.60.4 14652 + '@rollup/rollup-linux-riscv64-gnu': 4.60.4 14653 + '@rollup/rollup-linux-riscv64-musl': 4.60.4 14654 + '@rollup/rollup-linux-s390x-gnu': 4.60.4 14655 + '@rollup/rollup-linux-x64-gnu': 4.60.4 14656 + '@rollup/rollup-linux-x64-musl': 4.60.4 14657 + '@rollup/rollup-openbsd-x64': 4.60.4 14658 + '@rollup/rollup-openharmony-arm64': 4.60.4 14659 + '@rollup/rollup-win32-arm64-msvc': 4.60.4 14660 + '@rollup/rollup-win32-ia32-msvc': 4.60.4 14661 + '@rollup/rollup-win32-x64-gnu': 4.60.4 14662 + '@rollup/rollup-win32-x64-msvc': 4.60.4 14663 + fsevents: 2.3.3 14664 + 14665 + rou3@0.8.1: {} 14666 + 14667 + run-applescript@7.1.0: {} 14668 + 14669 + run-parallel@1.2.0: 14670 + dependencies: 14671 + queue-microtask: 1.2.3 9566 14672 9567 14673 safe-buffer@5.1.2: {} 9568 14674 ··· 9582 14688 9583 14689 sax@1.4.4: {} 9584 14690 14691 + sax@1.6.0: {} 14692 + 9585 14693 scslre@0.3.0: 9586 14694 dependencies: 9587 14695 '@eslint-community/regexpp': 4.12.2 ··· 9592 14700 9593 14701 secure-json-parse@4.1.0: {} 9594 14702 14703 + semver@6.3.1: {} 14704 + 9595 14705 semver@7.8.1: {} 9596 14706 14707 + send@1.2.1: 14708 + dependencies: 14709 + debug: 4.4.3 14710 + encodeurl: 2.0.0 14711 + escape-html: 1.0.3 14712 + etag: 1.8.1 14713 + fresh: 2.0.0 14714 + http-errors: 2.0.1 14715 + mime-types: 3.0.2 14716 + ms: 2.1.3 14717 + on-finished: 2.4.1 14718 + range-parser: 1.2.1 14719 + statuses: 2.0.2 14720 + transitivePeerDependencies: 14721 + - supports-color 14722 + 14723 + serialize-javascript@7.0.5: {} 14724 + 14725 + seroval@1.5.4: {} 14726 + 14727 + serve-placeholder@2.0.2: 14728 + dependencies: 14729 + defu: 6.1.7 14730 + 14731 + serve-static@2.2.1: 14732 + dependencies: 14733 + encodeurl: 2.0.0 14734 + escape-html: 1.0.3 14735 + parseurl: 1.3.3 14736 + send: 1.2.1 14737 + transitivePeerDependencies: 14738 + - supports-color 14739 + 9597 14740 set-cookie-parser@2.7.2: {} 9598 14741 9599 14742 set-function-length@1.2.2: ··· 9604 14747 get-intrinsic: 1.3.0 9605 14748 gopd: 1.2.0 9606 14749 has-property-descriptors: 1.0.2 14750 + 14751 + setprototypeof@1.2.0: {} 9607 14752 9608 14753 shallow-equal@1.2.1: {} 9609 14754 ··· 9613 14758 9614 14759 shebang-regex@3.0.0: {} 9615 14760 14761 + shell-quote@1.8.4: {} 14762 + 9616 14763 siginfo@2.0.0: {} 9617 14764 9618 14765 signal-exit@3.0.7: {} ··· 9629 14776 9630 14777 simple-git-hooks@2.13.1: {} 9631 14778 14779 + simple-git@3.36.0: 14780 + dependencies: 14781 + '@kwsites/file-exists': 1.1.1 14782 + '@kwsites/promise-deferred': 1.1.1 14783 + '@simple-git/args-pathspec': 1.0.3 14784 + '@simple-git/argv-parser': 1.1.1 14785 + debug: 4.4.3 14786 + transitivePeerDependencies: 14787 + - supports-color 14788 + 14789 + sirv@3.0.2: 14790 + dependencies: 14791 + '@polka/url': 1.0.0-next.29 14792 + mrmime: 2.0.1 14793 + totalist: 3.0.1 14794 + 9632 14795 sisteransi@1.0.5: {} 14796 + 14797 + slash@5.1.0: {} 14798 + 14799 + smob@1.6.2: {} 9633 14800 9634 14801 smol-toml@1.6.1: {} 9635 14802 ··· 9639 14806 9640 14807 source-map-js@1.2.1: {} 9641 14808 14809 + source-map-support@0.5.21: 14810 + dependencies: 14811 + buffer-from: 1.1.2 14812 + source-map: 0.6.1 14813 + 14814 + source-map@0.6.1: {} 14815 + 14816 + source-map@0.7.6: {} 14817 + 9642 14818 spdx-correct@3.2.0: 9643 14819 dependencies: 9644 14820 spdx-expression-parse: 3.0.1 ··· 9660 14836 9661 14837 split2@4.2.0: {} 9662 14838 14839 + srvx@0.11.16: {} 14840 + 9663 14841 stackback@0.0.2: {} 9664 14842 14843 + standard-as-callback@2.1.0: {} 14844 + 14845 + statuses@2.0.2: {} 14846 + 9665 14847 std-env@4.1.0: {} 9666 14848 9667 14849 stream-shift@1.0.3: {} 9668 14850 14851 + streamx@2.25.0: 14852 + dependencies: 14853 + events-universal: 1.0.1 14854 + fast-fifo: 1.3.2 14855 + text-decoder: 1.2.7 14856 + transitivePeerDependencies: 14857 + - bare-abort-controller 14858 + - react-native-b4a 14859 + 9669 14860 string-width@4.2.3: 9670 14861 dependencies: 9671 14862 emoji-regex: 8.0.0 ··· 9678 14869 emoji-regex: 9.2.2 9679 14870 strip-ansi: 7.2.0 9680 14871 14872 + string-width@7.2.0: 14873 + dependencies: 14874 + emoji-regex: 10.6.0 14875 + get-east-asian-width: 1.6.0 14876 + strip-ansi: 7.2.0 14877 + 14878 + string_decoder@1.1.1: 14879 + dependencies: 14880 + safe-buffer: 5.1.2 14881 + 9681 14882 string_decoder@1.3.0: 9682 14883 dependencies: 9683 14884 safe-buffer: 5.2.1 ··· 9694 14895 9695 14896 strip-final-newline@2.0.0: {} 9696 14897 14898 + strip-final-newline@3.0.0: {} 14899 + 9697 14900 strip-indent@4.1.1: {} 9698 14901 9699 14902 strip-json-comments@2.0.1: {} 9700 14903 9701 14904 strip-json-comments@5.0.3: {} 9702 14905 14906 + strip-literal@3.1.0: 14907 + dependencies: 14908 + js-tokens: 9.0.1 14909 + 14910 + structured-clone-es@2.0.0: {} 14911 + 9703 14912 stylehacks@7.0.7(postcss@8.5.15): 9704 14913 dependencies: 9705 14914 browserslist: 4.28.2 9706 14915 postcss: 8.5.15 9707 14916 postcss-selector-parser: 7.1.1 9708 14917 14918 + stylehacks@8.0.0(postcss@8.5.15): 14919 + dependencies: 14920 + browserslist: 4.28.2 14921 + postcss: 8.5.15 14922 + postcss-selector-parser: 7.1.1 14923 + 14924 + supports-color@10.2.2: {} 14925 + 9709 14926 supports-color@7.2.0: 9710 14927 dependencies: 9711 14928 has-flag: 4.0.0 ··· 9721 14938 csso: 5.0.5 9722 14939 picocolors: 1.1.1 9723 14940 sax: 1.4.4 14941 + 14942 + svgo@4.0.1: 14943 + dependencies: 14944 + commander: 11.1.0 14945 + css-select: 5.2.2 14946 + css-tree: 3.1.0 14947 + css-what: 6.2.2 14948 + csso: 5.0.5 14949 + picocolors: 1.1.1 14950 + sax: 1.6.0 9724 14951 9725 14952 synckit@0.11.12: 9726 14953 dependencies: ··· 9731 14958 array-back: 6.2.3 9732 14959 wordwrapjs: 5.1.1 9733 14960 14961 + tagged-tag@1.0.0: {} 14962 + 9734 14963 tapable@2.3.3: {} 9735 14964 9736 14965 tar-fs@2.1.4: ··· 9748 14977 inherits: 2.0.4 9749 14978 readable-stream: 3.6.2 9750 14979 14980 + tar-stream@3.2.0: 14981 + dependencies: 14982 + b4a: 1.8.1 14983 + bare-fs: 4.7.1 14984 + fast-fifo: 1.3.2 14985 + streamx: 2.25.0 14986 + transitivePeerDependencies: 14987 + - bare-abort-controller 14988 + - bare-buffer 14989 + - react-native-b4a 14990 + 14991 + tar@7.5.15: 14992 + dependencies: 14993 + '@isaacs/fs-minipass': 4.0.1 14994 + chownr: 3.0.0 14995 + minipass: 7.1.3 14996 + minizlib: 3.1.0 14997 + yallist: 5.0.0 14998 + 14999 + teex@1.0.1: 15000 + dependencies: 15001 + streamx: 2.25.0 15002 + transitivePeerDependencies: 15003 + - bare-abort-controller 15004 + - react-native-b4a 15005 + 15006 + terser@5.48.0: 15007 + dependencies: 15008 + '@jridgewell/source-map': 0.3.11 15009 + acorn: 8.16.0 15010 + commander: 2.20.3 15011 + source-map-support: 0.5.21 15012 + 15013 + text-decoder@1.2.7: 15014 + dependencies: 15015 + b4a: 1.8.1 15016 + transitivePeerDependencies: 15017 + - react-native-b4a 15018 + 9751 15019 thread-stream@4.2.0: 9752 15020 dependencies: 9753 15021 real-require: 1.0.0 15022 + 15023 + tiny-invariant@1.3.3: {} 9754 15024 9755 15025 tinybench@2.9.0: {} 15026 + 15027 + tinyclip@0.1.12: {} 9756 15028 9757 15029 tinyexec@1.1.2: {} 9758 15030 ··· 9765 15037 9766 15038 tinyrainbow@3.1.0: {} 9767 15039 15040 + to-regex-range@5.0.1: 15041 + dependencies: 15042 + is-number: 7.0.0 15043 + 9768 15044 to-valid-identifier@1.0.0: 9769 15045 dependencies: 9770 15046 '@sindresorhus/base62': 1.0.0 ··· 9772 15048 9773 15049 toad-cache@3.7.1: {} 9774 15050 15051 + toidentifier@1.0.1: {} 15052 + 9775 15053 toml-eslint-parser@1.0.3: 9776 15054 dependencies: 9777 15055 eslint-visitor-keys: 5.0.1 15056 + 15057 + totalist@3.0.1: {} 9778 15058 9779 15059 tr46@0.0.3: {} 9780 15060 ··· 9801 15081 9802 15082 type-fest@4.41.0: {} 9803 15083 15084 + type-fest@5.6.0: 15085 + dependencies: 15086 + tagged-tag: 1.0.0 15087 + 15088 + type-level-regexp@0.1.17: {} 15089 + 9804 15090 typescript@6.0.3: {} 9805 15091 9806 15092 typical@7.3.0: {} 9807 15093 9808 15094 ufo@1.6.3: {} 15095 + 15096 + ufo@1.6.4: {} 15097 + 15098 + ultrahtml@1.6.0: {} 9809 15099 9810 15100 unbash@3.0.0: {} 9811 15101 ··· 9843 15133 - vue-sfc-transformer 9844 15134 - vue-tsc 9845 15135 15136 + uncrypto@0.1.3: {} 15137 + 15138 + unctx@2.5.0: 15139 + dependencies: 15140 + acorn: 8.16.0 15141 + estree-walker: 3.0.3 15142 + magic-string: 0.30.21 15143 + unplugin: 2.3.11 15144 + 9846 15145 undici-types@7.16.0: {} 9847 15146 15147 + unenv@2.0.0-rc.24: 15148 + dependencies: 15149 + pathe: 2.0.3 15150 + 15151 + unhead@2.1.15: 15152 + dependencies: 15153 + hookable: 6.1.1 15154 + 9848 15155 unicorn-magic@0.1.0: {} 9849 15156 15157 + unicorn-magic@0.3.0: {} 15158 + 15159 + unicorn-magic@0.4.0: {} 15160 + 15161 + unimport@6.3.0(oxc-parser@0.131.0)(rolldown@1.0.2): 15162 + dependencies: 15163 + acorn: 8.16.0 15164 + escape-string-regexp: 5.0.0 15165 + estree-walker: 3.0.3 15166 + local-pkg: 1.1.2 15167 + magic-string: 0.30.21 15168 + mlly: 1.8.2 15169 + pathe: 2.0.3 15170 + picomatch: 4.0.4 15171 + pkg-types: 2.3.1 15172 + scule: 1.3.0 15173 + strip-literal: 3.1.0 15174 + tinyglobby: 0.2.16 15175 + unplugin: 3.0.0 15176 + unplugin-utils: 0.3.1 15177 + optionalDependencies: 15178 + oxc-parser: 0.131.0 15179 + rolldown: 1.0.2 15180 + 9850 15181 unist-util-is@6.0.1: 9851 15182 dependencies: 9852 15183 '@types/unist': 3.0.3 ··· 9875 15206 dependencies: 9876 15207 cookie: 1.1.1 9877 15208 15209 + unplugin-utils@0.3.1: 15210 + dependencies: 15211 + pathe: 2.0.3 15212 + picomatch: 4.0.4 15213 + 15214 + unplugin@2.3.11: 15215 + dependencies: 15216 + '@jridgewell/remapping': 2.3.5 15217 + acorn: 8.16.0 15218 + picomatch: 4.0.4 15219 + webpack-virtual-modules: 0.6.2 15220 + 15221 + unplugin@3.0.0: 15222 + dependencies: 15223 + '@jridgewell/remapping': 2.3.5 15224 + picomatch: 4.0.4 15225 + webpack-virtual-modules: 0.6.2 15226 + 15227 + unrouting@0.1.7: 15228 + dependencies: 15229 + escape-string-regexp: 5.0.0 15230 + ufo: 1.6.4 15231 + 15232 + unstorage@1.17.5(db0@0.3.4)(ioredis@5.10.1): 15233 + dependencies: 15234 + anymatch: 3.1.3 15235 + chokidar: 5.0.0 15236 + destr: 2.0.5 15237 + h3: 1.15.11 15238 + lru-cache: 11.5.0 15239 + node-fetch-native: 1.6.7 15240 + ofetch: 1.5.1 15241 + ufo: 1.6.4 15242 + optionalDependencies: 15243 + db0: 0.3.4 15244 + ioredis: 5.10.1 15245 + 15246 + untun@0.1.3: 15247 + dependencies: 15248 + citty: 0.1.6 15249 + consola: 3.4.2 15250 + pathe: 1.1.2 15251 + 9878 15252 untyped@2.0.0: 9879 15253 dependencies: 9880 15254 citty: 0.1.6 ··· 9883 15257 knitwork: 1.3.0 9884 15258 scule: 1.3.0 9885 15259 15260 + unwasm@0.5.3: 15261 + dependencies: 15262 + exsolve: 1.0.8 15263 + knitwork: 1.3.0 15264 + magic-string: 0.30.21 15265 + mlly: 1.8.2 15266 + pathe: 2.0.3 15267 + pkg-types: 2.3.1 15268 + 9886 15269 update-browserslist-db@1.2.3(browserslist@4.28.2): 9887 15270 dependencies: 9888 15271 browserslist: 4.28.2 9889 15272 escalade: 3.2.0 9890 15273 picocolors: 1.1.1 15274 + 15275 + uqr@0.1.3: {} 9891 15276 9892 15277 uri-js@4.4.1: 9893 15278 dependencies: ··· 9918 15303 9919 15304 version-guard@1.1.3: {} 9920 15305 9921 - vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0): 15306 + vite-dev-rpc@1.1.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)): 15307 + dependencies: 15308 + birpc: 2.9.0 15309 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15310 + vite-hot-client: 2.2.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 15311 + 15312 + vite-hot-client@2.2.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)): 15313 + dependencies: 15314 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15315 + 15316 + vite-node@5.3.0(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0): 15317 + dependencies: 15318 + cac: 6.7.14 15319 + es-module-lexer: 2.1.0 15320 + obug: 2.1.1 15321 + pathe: 2.0.3 15322 + vite: 7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15323 + transitivePeerDependencies: 15324 + - '@types/node' 15325 + - jiti 15326 + - less 15327 + - lightningcss 15328 + - sass 15329 + - sass-embedded 15330 + - stylus 15331 + - sugarss 15332 + - terser 15333 + - tsx 15334 + - yaml 15335 + 15336 + vite-plugin-checker@0.13.0(eslint@10.4.0(jiti@2.7.0))(optionator@0.9.4)(typescript@6.0.3)(vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue-tsc@3.2.8(typescript@6.0.3)): 15337 + dependencies: 15338 + '@babel/code-frame': 7.29.0 15339 + chokidar: 4.0.3 15340 + npm-run-path: 6.0.0 15341 + picocolors: 1.1.1 15342 + picomatch: 4.0.4 15343 + proper-lockfile: 4.1.2 15344 + tiny-invariant: 1.3.3 15345 + tinyglobby: 0.2.16 15346 + vite: 7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15347 + vscode-uri: 3.1.0 15348 + optionalDependencies: 15349 + eslint: 10.4.0(jiti@2.7.0) 15350 + optionator: 0.9.4 15351 + typescript: 6.0.3 15352 + vue-tsc: 3.2.8(typescript@6.0.3) 15353 + 15354 + vite-plugin-inspect@11.3.3(@nuxt/kit@4.4.6(magicast@0.5.2))(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)): 15355 + dependencies: 15356 + ansis: 4.2.0 15357 + debug: 4.4.3 15358 + error-stack-parser-es: 1.0.5 15359 + ohash: 2.0.11 15360 + open: 10.2.0 15361 + perfect-debounce: 2.1.0 15362 + sirv: 3.0.2 15363 + unplugin-utils: 0.3.1 15364 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15365 + vite-dev-rpc: 1.1.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 15366 + optionalDependencies: 15367 + '@nuxt/kit': 4.4.6(magicast@0.5.2) 15368 + transitivePeerDependencies: 15369 + - supports-color 15370 + 15371 + vite-plugin-vue-tracer@1.4.0(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)): 15372 + dependencies: 15373 + estree-walker: 3.0.3 15374 + exsolve: 1.0.8 15375 + magic-string: 0.30.21 15376 + pathe: 2.0.3 15377 + source-map-js: 1.2.1 15378 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 15379 + vue: 3.5.34(typescript@6.0.3) 15380 + 15381 + vite@7.3.3(@types/node@24.11.0)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0): 15382 + dependencies: 15383 + esbuild: 0.27.7 15384 + fdir: 6.5.0(picomatch@4.0.4) 15385 + picomatch: 4.0.4 15386 + postcss: 8.5.15 15387 + rollup: 4.60.4 15388 + tinyglobby: 0.2.16 15389 + optionalDependencies: 15390 + '@types/node': 24.11.0 15391 + fsevents: 2.3.3 15392 + jiti: 2.7.0 15393 + lightningcss: 1.32.0 15394 + terser: 5.48.0 15395 + tsx: 4.22.3 15396 + yaml: 2.9.0 15397 + 15398 + vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0): 9922 15399 dependencies: 9923 15400 lightningcss: 1.32.0 9924 15401 picomatch: 4.0.4 ··· 9930 15407 esbuild: 0.28.0 9931 15408 fsevents: 2.3.3 9932 15409 jiti: 2.7.0 15410 + terser: 5.48.0 9933 15411 tsx: 4.22.3 9934 15412 yaml: 2.9.0 9935 15413 9936 - vitest@4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0)): 15414 + vitest-environment-nuxt@2.0.0(crossws@0.4.5(srvx@0.11.16))(happy-dom@20.9.0)(magicast@0.5.2)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vitest@4.1.7): 15415 + dependencies: 15416 + '@nuxt/test-utils': 4.0.3(crossws@0.4.5(srvx@0.11.16))(happy-dom@20.9.0)(magicast@0.5.2)(typescript@6.0.3)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0))(vitest@4.1.7) 15417 + transitivePeerDependencies: 15418 + - '@cucumber/cucumber' 15419 + - '@jest/globals' 15420 + - '@playwright/test' 15421 + - '@testing-library/vue' 15422 + - '@vitest/ui' 15423 + - '@vue/test-utils' 15424 + - crossws 15425 + - happy-dom 15426 + - jsdom 15427 + - magicast 15428 + - playwright-core 15429 + - typescript 15430 + - vite 15431 + - vitest 15432 + 15433 + vitest@4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.11.0)(@vitest/coverage-v8@4.1.7)(happy-dom@20.9.0)(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)): 9937 15434 dependencies: 9938 15435 '@vitest/expect': 4.1.7 9939 - '@vitest/mocker': 4.1.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0)) 15436 + '@vitest/mocker': 4.1.7(vite@8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0)) 9940 15437 '@vitest/pretty-format': 4.1.7 9941 15438 '@vitest/runner': 4.1.7 9942 15439 '@vitest/snapshot': 4.1.7 ··· 9953 15450 tinyexec: 1.1.2 9954 15451 tinyglobby: 0.2.16 9955 15452 tinyrainbow: 3.1.0 9956 - vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(tsx@4.22.3)(yaml@2.9.0) 15453 + vite: 8.0.14(@types/node@24.11.0)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) 9957 15454 why-is-node-running: 2.3.0 9958 15455 optionalDependencies: 9959 15456 '@opentelemetry/api': 1.9.1 9960 15457 '@types/node': 24.11.0 9961 15458 '@vitest/coverage-v8': 4.1.7(vitest@4.1.7) 15459 + happy-dom: 20.9.0 9962 15460 transitivePeerDependencies: 9963 15461 - msw 9964 15462 9965 15463 vscode-uri@3.1.0: {} 9966 15464 15465 + vue-bundle-renderer@2.2.0: 15466 + dependencies: 15467 + ufo: 1.6.4 15468 + 15469 + vue-devtools-stub@0.1.0: {} 15470 + 9967 15471 vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0)): 9968 15472 dependencies: 9969 15473 debug: 4.4.3 ··· 9976 15480 transitivePeerDependencies: 9977 15481 - supports-color 9978 15482 15483 + vue-router@5.0.7(@vue/compiler-sfc@3.5.34)(vue@3.5.34(typescript@6.0.3)): 15484 + dependencies: 15485 + '@babel/generator': 8.0.0-rc.5 15486 + '@vue-macros/common': 3.1.2(vue@3.5.34(typescript@6.0.3)) 15487 + '@vue/devtools-api': 8.1.2 15488 + ast-walker-scope: 0.8.3 15489 + chokidar: 5.0.0 15490 + json5: 2.2.3 15491 + local-pkg: 1.1.2 15492 + magic-string: 0.30.21 15493 + mlly: 1.8.2 15494 + muggle-string: 0.4.1 15495 + pathe: 2.0.3 15496 + picomatch: 4.0.4 15497 + scule: 1.3.0 15498 + tinyglobby: 0.2.16 15499 + unplugin: 3.0.0 15500 + unplugin-utils: 0.3.1 15501 + vue: 3.5.34(typescript@6.0.3) 15502 + yaml: 2.9.0 15503 + optionalDependencies: 15504 + '@vue/compiler-sfc': 3.5.34 15505 + 9979 15506 vue-tsc@3.2.8(typescript@6.0.3): 9980 15507 dependencies: 9981 15508 '@volar/typescript': 2.4.28 ··· 9996 15523 9997 15524 webidl-conversions@3.0.1: {} 9998 15525 15526 + webpack-virtual-modules@0.6.2: {} 15527 + 15528 + whatwg-mimetype@3.0.0: {} 15529 + 9999 15530 whatwg-url@5.0.0: 10000 15531 dependencies: 10001 15532 tr46: 0.0.3 ··· 10018 15549 which@4.0.0: 10019 15550 dependencies: 10020 15551 isexe: 3.1.5 15552 + 15553 + which@6.0.1: 15554 + dependencies: 15555 + isexe: 4.0.0 10021 15556 10022 15557 why-is-node-running@2.3.0: 10023 15558 dependencies: ··· 10040 15575 string-width: 5.1.2 10041 15576 strip-ansi: 7.2.0 10042 15577 15578 + wrap-ansi@9.0.2: 15579 + dependencies: 15580 + ansi-styles: 6.2.3 15581 + string-width: 7.2.0 15582 + strip-ansi: 7.2.0 15583 + 10043 15584 wrappy@1.0.2: {} 10044 15585 10045 15586 ws@8.21.0: {} 10046 15587 15588 + wsl-utils@0.1.0: 15589 + dependencies: 15590 + is-wsl: 3.1.1 15591 + 15592 + wsl-utils@0.3.1: 15593 + dependencies: 15594 + is-wsl: 3.1.1 15595 + powershell-utils: 0.1.0 15596 + 10047 15597 xml-name-validator@4.0.0: {} 10048 15598 10049 15599 xtend@4.0.2: {} 10050 15600 10051 15601 y18n@5.0.8: {} 10052 15602 15603 + yallist@3.1.1: {} 15604 + 15605 + yallist@5.0.0: {} 15606 + 10053 15607 yaml-eslint-parser@2.0.0: 10054 15608 dependencies: 10055 15609 eslint-visitor-keys: 5.0.1 ··· 10059 15613 10060 15614 yargs-parser@21.1.1: {} 10061 15615 15616 + yargs-parser@22.0.0: {} 15617 + 10062 15618 yargs@17.7.2: 10063 15619 dependencies: 10064 15620 cliui: 8.0.1 ··· 10069 15625 y18n: 5.0.8 10070 15626 yargs-parser: 21.1.1 10071 15627 15628 + yargs@18.0.0: 15629 + dependencies: 15630 + cliui: 9.0.1 15631 + escalade: 3.2.0 15632 + get-caller-file: 2.0.5 15633 + string-width: 7.2.0 15634 + y18n: 5.0.8 15635 + yargs-parser: 22.0.0 15636 + 10072 15637 yocto-queue@0.1.0: {} 10073 15638 10074 15639 yocto-spinner@1.2.0: ··· 10076 15641 yoctocolors: 2.1.2 10077 15642 10078 15643 yoctocolors@2.1.2: {} 15644 + 15645 + youch-core@0.3.3: 15646 + dependencies: 15647 + '@poppinss/exception': 1.2.3 15648 + error-stack-parser-es: 1.0.5 15649 + 15650 + youch@4.1.1: 15651 + dependencies: 15652 + '@poppinss/colors': 4.1.6 15653 + '@poppinss/dumper': 0.7.0 15654 + '@speed-highlight/core': 1.2.15 15655 + cookie-es: 3.1.1 15656 + youch-core: 0.3.3 15657 + 15658 + zip-stream@6.0.1: 15659 + dependencies: 15660 + archiver-utils: 5.0.2 15661 + compress-commons: 6.0.2 15662 + readable-stream: 4.7.0 10079 15663 10080 15664 zod@4.3.6: {} 10081 15665
+4 -1
pnpm-workspace.yaml
··· 4 4 5 5 trustPolicyExclude: 6 6 - chokidar@4.0.3 7 + - semver@6.3.1 7 8 8 9 packages: 9 - - playground 10 + - test/fixtures/vue 11 + - test/fixtures/nuxt 10 12 11 13 overrides: 12 14 zero-vue: 'link:.' 13 15 14 16 allowBuilds: 17 + '@parcel/watcher': false 15 18 '@rocicorp/zero-sqlite3': true 16 19 esbuild: false 17 20 oxc-resolver: true
+2
test/fixtures/nuxt/.env
··· 1 + # NUXT_ZERO_AUTH_SECRET="secretkey" 2 + # NUXT_PUBLIC_ZERO_CACHE_URL="http://localhost:4848"
+1
test/fixtures/nuxt/.nuxtrc
··· 1 + setups.@nuxt/test-utils="4.0.3"
+250
test/fixtures/nuxt/app/app.vue
··· 1 + <script setup lang="ts"> 2 + import { useInterval } from '#fx/composables/use-interval' 3 + import { randomMessage } from '#fx/db/data/test-data' 4 + import { formatDate } from '#fx/utils/date' 5 + import { randInt } from '#fx/utils/rand' 6 + import { mutators, queries } from '~/composables/zero' 7 + 8 + const zero = useZero() 9 + const { data: users } = useQuery(() => queries.users.all()) 10 + const { data: mediums } = useQuery(() => queries.mediums.all()) 11 + const { data: allMessages } = useQuery(() => queries.messages.all()) 12 + 13 + const filterUser = ref('') 14 + const filterText = ref('') 15 + const action = ref<'add' | 'remove' | undefined>(undefined) 16 + 17 + const { data: filteredMessages } = useQuery(() => queries.messages.filtered({ 18 + filterUser: filterUser.value, 19 + filterText: filterText.value, 20 + })) 21 + 22 + const hasFilters = computed(() => filterUser.value || filterText.value) 23 + 24 + function deleteRandomMessage() { 25 + if (allMessages.value.length === 0) { 26 + return false 27 + } 28 + const index = randInt(allMessages.value.length) 29 + zero.value.mutate(mutators.message.delete({ id: allMessages.value[index]!.id })) 30 + 31 + return true 32 + } 33 + 34 + function addRandomMessage() { 35 + zero.value.mutate(mutators.message.insert( 36 + randomMessage(users.value, mediums.value), 37 + )) 38 + return true 39 + } 40 + 41 + function handleAction() { 42 + if (action.value === 'add') { 43 + return addRandomMessage() 44 + } 45 + else if (action.value === 'remove') { 46 + return deleteRandomMessage() 47 + } 48 + 49 + return false 50 + } 51 + 52 + useInterval( 53 + () => { 54 + if (!handleAction()) { 55 + action.value = undefined 56 + } 57 + }, 58 + () => action.value !== undefined ? 1000 / 60 : null, 59 + ) 60 + 61 + const INITIAL_HOLD_DELAY_MS = 300 62 + let holdTimer: ReturnType<typeof setTimeout> | null = null 63 + function handleAddAction() { 64 + addRandomMessage() 65 + holdTimer = setTimeout(() => { 66 + action.value = 'add' 67 + }, INITIAL_HOLD_DELAY_MS) 68 + } 69 + 70 + function handleRemoveAction(e: MouseEvent | TouchEvent) { 71 + if (zero.value.userID === 'anon' && 'shiftKey' in e && !e.shiftKey) { 72 + // eslint-disable-next-line no-alert 73 + alert('You must be logged in to delete. Hold shift to try anyway.') 74 + return 75 + } 76 + deleteRandomMessage() 77 + 78 + holdTimer = setTimeout(() => { 79 + action.value = 'remove' 80 + }, INITIAL_HOLD_DELAY_MS) 81 + } 82 + 83 + function stopAction() { 84 + if (holdTimer) { 85 + clearTimeout(holdTimer) 86 + holdTimer = null 87 + } 88 + 89 + action.value = undefined 90 + } 91 + 92 + function editMessage(e: MouseEvent, id: string, senderID: string, prev: string) { 93 + if (senderID !== zero.value.userID && !e.shiftKey) { 94 + // eslint-disable-next-line no-alert 95 + alert('You aren\'t logged in as the sender of this message. Editing won\'t be permitted. Hold the shift key to try anyway.') 96 + return 97 + } 98 + 99 + // eslint-disable-next-line no-alert 100 + const body = prompt('Edit message', prev) 101 + zero.value.mutate(mutators.message.update({ 102 + id, 103 + body: body ?? prev, 104 + })) 105 + } 106 + 107 + const jwt = useCookie('jwt') 108 + async function toggleLogin() { 109 + if (zero.value.userID === 'anon') { 110 + await $fetch('/api/login') 111 + } 112 + else { 113 + jwt.value = null 114 + } 115 + location.reload() 116 + } 117 + 118 + const user = computed(() => users.value.find(user => user.id === zero.value.userID)?.name ?? 'anon') 119 + </script> 120 + 121 + <template> 122 + <div> 123 + <div class="controls"> 124 + <div> 125 + <button 126 + @mousedown="handleAddAction" 127 + @mouseup="stopAction" 128 + @mouseleave="stopAction" 129 + @touchstart="handleAddAction" 130 + @touchend="stopAction" 131 + > 132 + Add Messages 133 + </button> 134 + <button 135 + @mousedown="handleRemoveAction" 136 + @mouseup="stopAction" 137 + @mouseleave="stopAction" 138 + @touchstart="handleRemoveAction" 139 + @touchend="stopAction" 140 + > 141 + Remove Messages 142 + </button> 143 + <em>(hold down buttons to repeat)</em> 144 + </div> 145 + <div :style="{ justifyContent: 'end' }"> 146 + {{ user === 'anon' ? '' : `Logged in as ${user}` }} 147 + <button @mousedown="toggleLogin"> 148 + {{ user === 'anon' ? 'Login' : 'Logout' }} 149 + </button> 150 + </div> 151 + </div> 152 + <div class="controls"> 153 + <div> 154 + From: 155 + <select 156 + v-model="filterUser" 157 + :style="{ flex: 1 }" 158 + > 159 + <option 160 + key="" 161 + value="" 162 + > 163 + Sender 164 + </option> 165 + <option 166 + v-for="choice in users" 167 + :key="choice.id" 168 + :value="choice.id" 169 + > 170 + {{ choice.name }} 171 + </option> 172 + </select> 173 + </div> 174 + <div> 175 + Contains: 176 + <input 177 + v-model="filterText" 178 + type="text" 179 + placeholder="message" 180 + :style="{ flex: 1 }" 181 + > 182 + </div> 183 + </div> 184 + <div class="controls"> 185 + <em> 186 + <template v-if="!hasFilters"> 187 + Showing all {{ filteredMessages.length }} messages 188 + </template> 189 + <template v-else> 190 + Showing {{ filteredMessages.length }} of {{ allMessages.length }} messages. Try opening 191 + <a 192 + href="/" 193 + target="_blank" 194 + >another tab</a> to see them all! 195 + </template> 196 + </em> 197 + </div> 198 + <template v-if="filteredMessages.length === 0"> 199 + <h3><em>No posts found 😢</em></h3> 200 + </template> 201 + <template v-else> 202 + <table 203 + border="1" 204 + cellspacing="0" 205 + cellpadding="6" 206 + width="100%" 207 + > 208 + <thead> 209 + <tr> 210 + <th>Sender</th> 211 + <th>Medium</th> 212 + <th>Message</th> 213 + <th>Sent</th> 214 + <th>Edit</th> 215 + </tr> 216 + </thead> 217 + <tbody> 218 + <tr 219 + v-for="message in filteredMessages" 220 + :key="message.id" 221 + > 222 + <td align="left"> 223 + {{ message.sender?.name }} 224 + </td> 225 + <td align="left"> 226 + {{ message.medium?.name }} 227 + </td> 228 + <td align="left"> 229 + {{ message.body }} 230 + </td> 231 + <td align="right"> 232 + {{ formatDate(message.timestamp) }} 233 + </td> 234 + <td @mousedown="(e: MouseEvent) => editMessage(e, message.id, message.senderID, message.body)"> 235 + ✏️ 236 + </td> 237 + </tr> 238 + </tbody> 239 + </table> 240 + </template> 241 + </div> 242 + </template> 243 + 244 + <style scoped> 245 + .controls { 246 + display: flex; 247 + justify-content: space-between; 248 + margin-bottom: 1em; 249 + } 250 + </style>
+87
test/fixtures/nuxt/app/assets/index.css
··· 1 + :root { 2 + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 3 + line-height: 1.5; 4 + font-weight: 400; 5 + font-size: 0.9em; 6 + 7 + color-scheme: light dark; 8 + color: rgba(255, 255, 255, 0.87); 9 + background-color: black; 10 + 11 + font-synthesis: none; 12 + text-rendering: optimizeLegibility; 13 + -webkit-font-smoothing: antialiased; 14 + -moz-osx-font-smoothing: grayscale; 15 + } 16 + 17 + body { 18 + margin: 0; 19 + display: flex; 20 + place-items: center; 21 + flex-direction: column; 22 + min-width: 320px; 23 + min-height: 100vh; 24 + } 25 + 26 + #root { 27 + margin: 0 auto; 28 + padding: 2rem; 29 + text-align: center; 30 + width: 90%; 31 + min-width: 600px; 32 + max-width: 1280px; 33 + } 34 + 35 + a { 36 + font-weight: 500; 37 + } 38 + 39 + a:hover { 40 + color: #535bf2; 41 + } 42 + 43 + button { 44 + border-radius: 8px; 45 + border: 1px solid transparent; 46 + padding: 0.6em 1.2em; 47 + font-weight: 500; 48 + font-family: inherit; 49 + background-color: #3a3a3a; 50 + cursor: pointer; 51 + transition: border-color 0.25s; 52 + } 53 + button:hover { 54 + border-color: #646cff; 55 + } 56 + button:focus, 57 + button:focus-visible { 58 + outline: 4px auto -webkit-focus-ring-color; 59 + } 60 + 61 + td { 62 + white-space: nowrap; 63 + overflow: none; 64 + text-overflow: ellipsis; 65 + } 66 + 67 + td:last-child { 68 + cursor: pointer; 69 + } 70 + 71 + .controls { 72 + display: flex; 73 + gap: 1rem; 74 + align-items: center; 75 + margin-bottom: 1rem; 76 + white-space: nowrap; 77 + } 78 + 79 + .controls > div { 80 + flex: 1; 81 + display: flex; 82 + flex-direction: row; 83 + justify-content: start; 84 + gap: 1rem; 85 + align-items: center; 86 + margin-bottom: 1rem; 87 + }
+142
test/fixtures/nuxt/app/composables/zero.ts
··· 1 + import { 2 + defineMutator, 3 + defineMutators, 4 + defineQueries, 5 + defineQuery, 6 + escapeLike, 7 + } from '@rocicorp/zero' 8 + import { decodeJwt } from 'jose' 9 + import { createZeroComposables } from 'zero-vue' 10 + import z from 'zod' 11 + 12 + import { schema, zql } from '#fx/db/schema' 13 + 14 + export interface ZeroContext { 15 + userID: string 16 + } 17 + 18 + declare module '@rocicorp/zero' { 19 + interface DefaultTypes { 20 + context: ZeroContext 21 + } 22 + } 23 + 24 + export const mutators = defineMutators({ 25 + message: { 26 + insert: defineMutator( 27 + z.object({ 28 + mediumID: z.string(), 29 + body: z.string(), 30 + id: z.string(), 31 + timestamp: z.number(), 32 + }), 33 + async ({ tx, ctx: { userID }, args: { mediumID, body, id, timestamp } }) => { 34 + return tx.mutate.message.insert({ 35 + senderID: userID, 36 + mediumID, 37 + body, 38 + id, 39 + timestamp, 40 + }) 41 + }, 42 + ), 43 + update: defineMutator( 44 + z.object({ id: z.string(), body: z.string() }), 45 + async ({ tx, ctx: { userID }, args: { id, body } }) => { 46 + const messageToEdit = await tx.run( 47 + zql.message.where('id', id).one(), 48 + ) 49 + if (!messageToEdit) { 50 + throw new Error(`Message with id ${id} not found`) 51 + } 52 + 53 + if (messageToEdit.senderID !== userID) { 54 + throw new Error(`You aren't allowed to edit this message`) 55 + } 56 + 57 + return tx.mutate.message.update({ id, body }) 58 + }, 59 + ), 60 + delete: defineMutator( 61 + z.object({ id: z.string() }), 62 + async ({ tx, ctx: { userID }, args: { id } }) => { 63 + if (!userID) { 64 + throw new Error('You must be logged in to delete') 65 + } 66 + 67 + return tx.mutate.message.delete({ id }) 68 + }, 69 + ), 70 + }, 71 + }) 72 + 73 + export const queries = defineQueries({ 74 + messages: { 75 + all: defineQuery(() => zql.message), 76 + filtered: defineQuery( 77 + z.object({ 78 + filterUser: z.string().optional(), 79 + filterText: z.string().optional(), 80 + }), 81 + ({ args: { filterUser, filterText } }) => { 82 + let filtered = zql.message 83 + .related('medium', medium => medium.one()) 84 + .related('sender', sender => sender.one()) 85 + .orderBy('timestamp', 'desc') 86 + 87 + if (filterUser) { 88 + filtered = filtered.where('senderID', filterUser) 89 + } 90 + 91 + if (filterText) { 92 + filtered = filtered.where('body', 'LIKE', `%${escapeLike(filterText)}%`) 93 + } 94 + 95 + return filtered 96 + }, 97 + ), 98 + }, 99 + users: { 100 + all: defineQuery(() => zql.user), 101 + }, 102 + mediums: { 103 + all: defineQuery(() => zql.medium), 104 + }, 105 + }) 106 + 107 + function createComposables() { 108 + return createZeroComposables(() => { 109 + const jwt = useCookie('jwt') 110 + const decoded = jwt.value ? decodeJwt(jwt.value) : undefined 111 + const userID = typeof decoded?.sub === 'string' ? decoded.sub : 'anon' 112 + const config = useRuntimeConfig() 113 + 114 + return { 115 + userID, 116 + auth: jwt.value || undefined, 117 + context: { userID }, 118 + server: import.meta.client ? config.public.zero.cacheURL : undefined, 119 + schema, 120 + mutators, 121 + kvStore: 'mem' as const, 122 + } 123 + }) 124 + } 125 + 126 + type ZeroComposables = ReturnType<typeof createComposables> 127 + 128 + declare module '#app' { 129 + interface NuxtApp { 130 + _zeroComposables?: ZeroComposables 131 + } 132 + } 133 + 134 + function getZeroComposables(): ZeroComposables { 135 + const nuxt = useNuxtApp() 136 + nuxt._zeroComposables ??= createComposables() 137 + return nuxt._zeroComposables 138 + } 139 + 140 + export const useZero: ZeroComposables['useZero'] = () => getZeroComposables().useZero() 141 + export const useQuery = ((query: unknown, options?: unknown) => 142 + (getZeroComposables().useQuery as (...args: unknown[]) => unknown)(query, options)) as ZeroComposables['useQuery']
+34
test/fixtures/nuxt/nuxt.config.ts
··· 1 + import { fileURLToPath } from 'node:url' 2 + 3 + export default defineNuxtConfig({ 4 + devtools: { enabled: true }, 5 + alias: { 6 + '#fx': fileURLToPath(new URL('../_shared', import.meta.url)), 7 + }, 8 + app: { 9 + head: { 10 + title: 'zero-vue x Nuxt', 11 + htmlAttrs: { lang: 'en' }, 12 + }, 13 + }, 14 + css: ['~/assets/index.css'], 15 + runtimeConfig: { 16 + zero: { 17 + authSecret: '', 18 + }, 19 + public: { 20 + zero: { 21 + cacheURL: '', 22 + }, 23 + }, 24 + }, 25 + compatibilityDate: '2025-05-25', 26 + vite: { 27 + optimizeDeps: { 28 + esbuildOptions: { 29 + target: 'es2022', 30 + }, 31 + include: ['@rocicorp/zero'], 32 + }, 33 + }, 34 + })
+34
test/fixtures/nuxt/package.json
··· 1 + { 2 + "name": "zero-vue-fixture-nuxt", 3 + "type": "module", 4 + "version": "0.0.0", 5 + "private": true, 6 + "scripts": { 7 + "build": "nuxt build", 8 + "dev:ui": "nuxt dev", 9 + "dev:zero-cache": "cd ../_shared && zero-cache-dev -p db/schema.ts", 10 + "dev:db-up": "cd ../_shared && docker compose --env-file .env -f docker/docker-compose.yml up", 11 + "dev:db-down": "cd ../_shared && docker compose --env-file .env -f docker/docker-compose.yml down", 12 + "dev:clean": "cd ../_shared && source .env && docker volume rm -f docker_zstart_pgdata && rm -rf \"${ZERO_REPLICA_FILE}\"*", 13 + "generate": "nuxt generate", 14 + "preview": "nuxt preview", 15 + "postinstall": "nuxt prepare", 16 + "test:e2e": "vitest run", 17 + "test:types": "vue-tsc -b --noEmit" 18 + }, 19 + "dependencies": { 20 + "jose": "^6.2.3", 21 + "nuxt": "^4.2.1", 22 + "vue": "^3.5.34", 23 + "zero-vue": "link:", 24 + "zod": "4.4.3" 25 + }, 26 + "devDependencies": { 27 + "@nuxt/test-utils": "^4.0.3", 28 + "@types/node": "24.11.0", 29 + "happy-dom": "^20.0.0", 30 + "typescript": "6.0.3", 31 + "vitest": "^4.1.7", 32 + "vue-tsc": "3.2.8" 33 + } 34 + }
+39
test/fixtures/nuxt/server/api/login.get.ts
··· 1 + import { SignJWT } from 'jose' 2 + 3 + // See docker/seed.sql for the seeded user list. 4 + const userIDs = [ 5 + '6z7dkeVLNm', 6 + 'ycD76wW4R2', 7 + 'IoQSaxeVO5', 8 + 'WndZWmGkO4', 9 + 'ENzoNm7g4E', 10 + 'dLKecN3ntd', 11 + '7VoEoJWEwn', 12 + 'enVvyDlBul', 13 + '9ogaDuDNFx', 14 + ] 15 + 16 + function randomInt(max: number) { 17 + return Math.floor(Math.random() * max) 18 + } 19 + 20 + export default defineEventHandler(async (event) => { 21 + const config = useRuntimeConfig(event) 22 + if (!config.zero.authSecret) { 23 + throw createError({ statusCode: 500, statusMessage: 'ZERO_AUTH_SECRET is not configured' }) 24 + } 25 + 26 + const jwt = await new SignJWT({ 27 + sub: userIDs[randomInt(userIDs.length)], 28 + iat: Math.floor(Date.now() / 1000), 29 + }) 30 + .setProtectedHeader({ alg: 'HS256' }) 31 + .setExpirationTime('30days') 32 + .sign(new TextEncoder().encode(config.zero.authSecret)) 33 + 34 + setCookie(event, 'jwt', jwt, { 35 + expires: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000), 36 + }) 37 + 38 + return 'ok' 39 + })
+61
test/fixtures/nuxt/test/e2e.test.ts
··· 1 + import { fileURLToPath } from 'node:url' 2 + import { $fetch, fetch, setup } from '@nuxt/test-utils/e2e' 3 + import { jwtVerify } from 'jose' 4 + import { describe, expect, it } from 'vitest' 5 + 6 + const authSecret = 'test-secret-for-e2e' 7 + 8 + await setup({ 9 + rootDir: fileURLToPath(new URL('..', import.meta.url)), 10 + env: { 11 + NUXT_ZERO_AUTH_SECRET: authSecret, 12 + }, 13 + }) 14 + 15 + const seededUserIDs = new Set([ 16 + '6z7dkeVLNm', 17 + 'ycD76wW4R2', 18 + 'IoQSaxeVO5', 19 + 'WndZWmGkO4', 20 + 'ENzoNm7g4E', 21 + 'dLKecN3ntd', 22 + '7VoEoJWEwn', 23 + 'enVvyDlBul', 24 + '9ogaDuDNFx', 25 + ]) 26 + 27 + describe('nuxt fixture', () => { 28 + it('renders the SSR page without a jwt cookie', async () => { 29 + const html = await $fetch<string>('/') 30 + expect(html).toContain('<title>zero-vue x Nuxt</title>') 31 + expect(html).toContain('Add Messages') 32 + expect(html).toContain('Remove Messages') 33 + expect(html).toContain('Login') 34 + }) 35 + 36 + it('issues a signed jwt cookie from /api/login', async () => { 37 + const response = await fetch('/api/login') 38 + expect(response.status).toBe(200) 39 + 40 + const setCookie = response.headers.getSetCookie?.() ?? [response.headers.get('set-cookie') ?? ''] 41 + const jwtCookie = setCookie.find(c => c.startsWith('jwt=')) 42 + expect(jwtCookie).toBeDefined() 43 + 44 + const jwt = jwtCookie!.split(';')[0]!.slice('jwt='.length) 45 + const { payload } = await jwtVerify(jwt, new TextEncoder().encode(authSecret)) 46 + expect(typeof payload.sub).toBe('string') 47 + expect(seededUserIDs.has(payload.sub as string)).toBe(true) 48 + }) 49 + 50 + it('renders without crashing when a jwt cookie is present on SSR', async () => { 51 + const loginResponse = await fetch('/api/login') 52 + const setCookie = loginResponse.headers.getSetCookie?.() ?? [loginResponse.headers.get('set-cookie') ?? ''] 53 + const jwtCookie = setCookie.find(c => c.startsWith('jwt='))!.split(';')[0]! 54 + 55 + const response = await fetch('/', { headers: { cookie: jwtCookie } }) 56 + expect(response.status).toBe(200) 57 + const html = await response.text() 58 + expect(html).toContain('<title>zero-vue x Nuxt</title>') 59 + expect(html).toContain('Add Messages') 60 + }) 61 + })
+17
test/fixtures/nuxt/tsconfig.json
··· 1 + { 2 + "references": [ 3 + { 4 + "path": "./.nuxt/tsconfig.app.json" 5 + }, 6 + { 7 + "path": "./.nuxt/tsconfig.server.json" 8 + }, 9 + { 10 + "path": "./.nuxt/tsconfig.shared.json" 11 + }, 12 + { 13 + "path": "./.nuxt/tsconfig.node.json" 14 + } 15 + ], 16 + "files": [] 17 + }
+7
test/fixtures/nuxt/vitest.config.ts
··· 1 + import { defineConfig } from 'vitest/config' 2 + 3 + export default defineConfig({ 4 + test: { 5 + include: ['test/**/*.test.ts'], 6 + }, 7 + })
+2
test/fixtures/vue/.env
··· 1 + # VITE_PUBLIC_AUTH_SECRET='secretkey' 2 + # VITE_PUBLIC_ZERO_CACHE_URL='http://localhost:4848'
+38
test/fixtures/vue/README.md
··· 1 + This is a quick port of https://github.com/rocicorp/hello-zero to use Vue. For a Nuxt example, see [`../nuxt`](../nuxt). 2 + 3 + ## Run this repo 4 + 5 + First, install dependencies: 6 + 7 + ```sh 8 + corepack enable 9 + pnpm i 10 + ``` 11 + 12 + Next, run docker: 13 + 14 + ```sh 15 + pnpm dev:db-up 16 + ``` 17 + 18 + **In a second terminal**, run the zero cache server: 19 + 20 + ```sh 21 + pnpm dev:zero-cache 22 + ``` 23 + 24 + **In a third terminal**, run the Vite dev server: 25 + 26 + ```sh 27 + pnpm dev:ui 28 + ``` 29 + 30 + ## ❤️ Credits 31 + 32 + This was based on https://github.com/rocicorp/hello-zero. 33 + 34 + ## 🏛️ License 35 + 36 + Made with ❤️ 37 + 38 + Published under [MIT License](../../../LICENCE).
+34
test/fixtures/vue/package.json
··· 1 + { 2 + "name": "zero-vue-fixture-vue", 3 + "type": "module", 4 + "version": "0.0.0", 5 + "private": true, 6 + "scripts": { 7 + "build": "vite build", 8 + "preview": "vite preview", 9 + "dev:ui": "vite dev", 10 + "dev:zero-cache": "cd ../_shared && zero-cache-dev -p db/schema.ts", 11 + "dev:db-up": "cd ../_shared && docker compose --env-file .env -f docker/docker-compose.yml up", 12 + "dev:db-down": "cd ../_shared && docker compose --env-file .env -f docker/docker-compose.yml down", 13 + "dev:clean": "cd ../_shared && source .env && docker volume rm -f docker_zstart_pgdata && rm -rf \"${ZERO_REPLICA_FILE}\"*", 14 + "test:types": "vue-tsc --build" 15 + }, 16 + "dependencies": { 17 + "@vueuse/integrations": "^14.3.0", 18 + "jose": "^6.2.3", 19 + "universal-cookie": "^8.1.2", 20 + "vue": "^3.5.34", 21 + "zero-vue": "link:", 22 + "zod": "4.4.3" 23 + }, 24 + "devDependencies": { 25 + "@tsconfig/node24": "24.0.4", 26 + "@types/js-cookie": "3.0.6", 27 + "@types/node": "24.11.0", 28 + "@vitejs/plugin-vue": "6.0.7", 29 + "@vue/tsconfig": "0.9.1", 30 + "typescript": "6.0.3", 31 + "vite": "8.0.14", 32 + "vue-tsc": "3.2.8" 33 + } 34 + }
+3
tsconfig.json
··· 22 22 "include": [ 23 23 "src", 24 24 "test" 25 + ], 26 + "exclude": [ 27 + "test/fixtures" 25 28 ] 26 29 }