@kmlckj/licos-ai-cli 0.0.31 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/agent/README.md +58 -5
- package/lib/__templates__/agent/pyproject.toml +1 -1
- package/lib/__templates__/agent/requirements.txt +1 -1
- package/lib/__templates__/expo/.licosproj/scripts/prod_build.sh +39 -0
- package/lib/__templates__/expo/pnpm-lock.yaml +5 -5
- package/lib/__templates__/expo/server/package.json +1 -1
- package/lib/__templates__/expo/server/src/index.ts +12 -0
- package/lib/__templates__/native-static/.licos +2 -2
- package/lib/__templates__/nextjs/next.config.ts +10 -0
- package/lib/__templates__/nextjs/package.json +1 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +5 -5
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +32 -22
- package/lib/__templates__/nuxt-vue/package.json +21 -15
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +456 -465
- package/lib/__templates__/nuxt-vue/scripts/build.sh +10 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +10 -0
- package/lib/__templates__/taro/.licosproj/scripts/deploy_run.sh +1 -1
- package/lib/__templates__/taro/AGENTS.md +7 -0
- package/lib/__templates__/taro/README.md +4 -3
- package/lib/__templates__/taro/config/index.ts +1 -1
- package/lib/__templates__/taro/eslint.config.mjs +1 -1
- package/lib/__templates__/taro/package.json +2 -1
- package/lib/__templates__/taro/pnpm-lock.yaml +47 -1983
- package/lib/__templates__/taro/server/package.json +4 -13
- package/lib/__templates__/taro/server/src/main.ts +17 -0
- package/lib/__templates__/taro/src/presets/env.ts +1 -1
- package/lib/__templates__/taro/types/global.d.ts +1 -2
- package/lib/__templates__/vite/package.json +1 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +5 -5
- package/lib/__templates__/vite/scripts/build.sh +1 -0
- package/lib/__templates__/vite/server/vite.ts +5 -2
- package/lib/__templates__/vite/vite.config.ts +7 -0
- package/lib/__templates__/workflow/README.md +11 -1
- package/lib/__templates__/workflow/pyproject.toml +1 -1
- package/lib/__templates__/workflow/requirements.txt +1 -1
- package/lib/cli.js +20 -1
- package/package.json +1 -1
|
@@ -4,46 +4,50 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
ipx: 3.1.1
|
|
9
|
+
sharp: 0.34.5
|
|
10
|
+
|
|
7
11
|
importers:
|
|
8
12
|
|
|
9
13
|
.:
|
|
10
14
|
dependencies:
|
|
11
15
|
'@kmlckj/licos-platform-sdk':
|
|
12
|
-
specifier: 0.6.
|
|
13
|
-
version: 0.6.
|
|
16
|
+
specifier: 0.6.3
|
|
17
|
+
version: 0.6.3
|
|
14
18
|
'@nuxt/image':
|
|
15
|
-
specifier:
|
|
16
|
-
version:
|
|
19
|
+
specifier: 2.0.0
|
|
20
|
+
version: 2.0.0(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)
|
|
17
21
|
nuxt:
|
|
18
|
-
specifier:
|
|
19
|
-
version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
22
|
+
specifier: 4.3.1
|
|
23
|
+
version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
20
24
|
tailwind-merge:
|
|
21
|
-
specifier:
|
|
22
|
-
version: 2.6.
|
|
25
|
+
specifier: 2.6.0
|
|
26
|
+
version: 2.6.0
|
|
23
27
|
vue:
|
|
24
|
-
specifier:
|
|
28
|
+
specifier: 3.5.30
|
|
25
29
|
version: 3.5.30(typescript@5.9.3)
|
|
26
30
|
vue-router:
|
|
27
|
-
specifier:
|
|
31
|
+
specifier: 4.6.4
|
|
28
32
|
version: 4.6.4(vue@3.5.30(typescript@5.9.3))
|
|
29
33
|
devDependencies:
|
|
30
34
|
'@nuxtjs/tailwindcss':
|
|
31
|
-
specifier:
|
|
32
|
-
version: 6.14.0(magicast@0.5.2)
|
|
35
|
+
specifier: 6.14.0
|
|
36
|
+
version: 6.14.0(magicast@0.5.2)
|
|
33
37
|
'@types/node':
|
|
34
|
-
specifier:
|
|
35
|
-
version: 20.19.
|
|
38
|
+
specifier: 20.19.25
|
|
39
|
+
version: 20.19.25
|
|
36
40
|
autoprefixer:
|
|
37
|
-
specifier:
|
|
38
|
-
version: 10.4.
|
|
41
|
+
specifier: 10.4.20
|
|
42
|
+
version: 10.4.20(postcss@8.4.49)
|
|
39
43
|
postcss:
|
|
40
|
-
specifier:
|
|
41
|
-
version: 8.
|
|
44
|
+
specifier: 8.4.49
|
|
45
|
+
version: 8.4.49
|
|
42
46
|
tailwindcss:
|
|
43
|
-
specifier:
|
|
44
|
-
version: 3.4.
|
|
47
|
+
specifier: 3.4.17
|
|
48
|
+
version: 3.4.17
|
|
45
49
|
typescript:
|
|
46
|
-
specifier:
|
|
50
|
+
specifier: 5.9.3
|
|
47
51
|
version: 5.9.3
|
|
48
52
|
|
|
49
53
|
packages:
|
|
@@ -377,9 +381,161 @@ packages:
|
|
|
377
381
|
cpu: [x64]
|
|
378
382
|
os: [win32]
|
|
379
383
|
|
|
380
|
-
'@fastify/accept-negotiator@
|
|
381
|
-
resolution: {integrity: sha512
|
|
382
|
-
|
|
384
|
+
'@fastify/accept-negotiator@2.0.1':
|
|
385
|
+
resolution: {integrity: sha512-/c/TW2bO/v9JeEgoD/g1G5GxGeCF1Hafdf79WPmUlgYiBXummY0oX3VVq4yFkKKVBKDNlaDUYoab7g38RpPqCQ==}
|
|
386
|
+
|
|
387
|
+
'@img/colour@1.1.0':
|
|
388
|
+
resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
|
|
389
|
+
engines: {node: '>=18'}
|
|
390
|
+
|
|
391
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
392
|
+
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
|
|
393
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
394
|
+
cpu: [arm64]
|
|
395
|
+
os: [darwin]
|
|
396
|
+
|
|
397
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
398
|
+
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
|
|
399
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
400
|
+
cpu: [x64]
|
|
401
|
+
os: [darwin]
|
|
402
|
+
|
|
403
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
404
|
+
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
405
|
+
cpu: [arm64]
|
|
406
|
+
os: [darwin]
|
|
407
|
+
|
|
408
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
409
|
+
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
|
|
410
|
+
cpu: [x64]
|
|
411
|
+
os: [darwin]
|
|
412
|
+
|
|
413
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
414
|
+
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
415
|
+
cpu: [arm64]
|
|
416
|
+
os: [linux]
|
|
417
|
+
libc: [glibc]
|
|
418
|
+
|
|
419
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
420
|
+
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
421
|
+
cpu: [arm]
|
|
422
|
+
os: [linux]
|
|
423
|
+
libc: [glibc]
|
|
424
|
+
|
|
425
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
426
|
+
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
427
|
+
cpu: [ppc64]
|
|
428
|
+
os: [linux]
|
|
429
|
+
libc: [glibc]
|
|
430
|
+
|
|
431
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
432
|
+
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
433
|
+
cpu: [riscv64]
|
|
434
|
+
os: [linux]
|
|
435
|
+
libc: [glibc]
|
|
436
|
+
|
|
437
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
438
|
+
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
439
|
+
cpu: [s390x]
|
|
440
|
+
os: [linux]
|
|
441
|
+
libc: [glibc]
|
|
442
|
+
|
|
443
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
444
|
+
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
445
|
+
cpu: [x64]
|
|
446
|
+
os: [linux]
|
|
447
|
+
libc: [glibc]
|
|
448
|
+
|
|
449
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
450
|
+
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
451
|
+
cpu: [arm64]
|
|
452
|
+
os: [linux]
|
|
453
|
+
libc: [musl]
|
|
454
|
+
|
|
455
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
456
|
+
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
457
|
+
cpu: [x64]
|
|
458
|
+
os: [linux]
|
|
459
|
+
libc: [musl]
|
|
460
|
+
|
|
461
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
462
|
+
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
463
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
464
|
+
cpu: [arm64]
|
|
465
|
+
os: [linux]
|
|
466
|
+
libc: [glibc]
|
|
467
|
+
|
|
468
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
469
|
+
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
470
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
471
|
+
cpu: [arm]
|
|
472
|
+
os: [linux]
|
|
473
|
+
libc: [glibc]
|
|
474
|
+
|
|
475
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
476
|
+
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
477
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
478
|
+
cpu: [ppc64]
|
|
479
|
+
os: [linux]
|
|
480
|
+
libc: [glibc]
|
|
481
|
+
|
|
482
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
483
|
+
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
484
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
485
|
+
cpu: [riscv64]
|
|
486
|
+
os: [linux]
|
|
487
|
+
libc: [glibc]
|
|
488
|
+
|
|
489
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
490
|
+
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
491
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
492
|
+
cpu: [s390x]
|
|
493
|
+
os: [linux]
|
|
494
|
+
libc: [glibc]
|
|
495
|
+
|
|
496
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
497
|
+
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
498
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
499
|
+
cpu: [x64]
|
|
500
|
+
os: [linux]
|
|
501
|
+
libc: [glibc]
|
|
502
|
+
|
|
503
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
504
|
+
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
505
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
506
|
+
cpu: [arm64]
|
|
507
|
+
os: [linux]
|
|
508
|
+
libc: [musl]
|
|
509
|
+
|
|
510
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
511
|
+
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
512
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
513
|
+
cpu: [x64]
|
|
514
|
+
os: [linux]
|
|
515
|
+
libc: [musl]
|
|
516
|
+
|
|
517
|
+
'@img/sharp-wasm32@0.34.5':
|
|
518
|
+
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
519
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
520
|
+
cpu: [wasm32]
|
|
521
|
+
|
|
522
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
523
|
+
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
|
|
524
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
525
|
+
cpu: [arm64]
|
|
526
|
+
os: [win32]
|
|
527
|
+
|
|
528
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
529
|
+
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
|
|
530
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
531
|
+
cpu: [ia32]
|
|
532
|
+
os: [win32]
|
|
533
|
+
|
|
534
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
535
|
+
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
|
|
536
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
537
|
+
cpu: [x64]
|
|
538
|
+
os: [win32]
|
|
383
539
|
|
|
384
540
|
'@ioredis/commands@1.5.1':
|
|
385
541
|
resolution: {integrity: sha512-JH8ZL/ywcJyR9MmJ5BNqZllXNZQqQbnVZOqpPQqE1vHiFgAw4NHbvE0FOduNU8IX9babitBT46571OnPTT0Zcw==}
|
|
@@ -411,13 +567,12 @@ packages:
|
|
|
411
567
|
'@jridgewell/trace-mapping@0.3.31':
|
|
412
568
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
413
569
|
|
|
414
|
-
'@kmlckj/licos-platform-sdk@0.6.
|
|
415
|
-
resolution: {integrity: sha512-
|
|
570
|
+
'@kmlckj/licos-platform-sdk@0.6.3':
|
|
571
|
+
resolution: {integrity: sha512-BzgGAa+ppt2e/LP6053GHpLVXrigyeAV0ZPt73Q6inaJay6tvEMxhSvQitg5wJ8V4uXCAYVCK4gFrGqTAoYODA==}
|
|
416
572
|
|
|
417
573
|
'@koa/router@12.0.2':
|
|
418
574
|
resolution: {integrity: sha512-sYcHglGKTxGF+hQ6x67xDfkE9o+NhVlRHBqq6gLywaMc6CojK/5vFZByphdonKinYlMLkEkacm+HEse9HzwgTA==}
|
|
419
575
|
engines: {node: '>= 12'}
|
|
420
|
-
deprecated: Please upgrade to v15 or higher. All reported bugs in this version are fixed in newer releases, dependencies have been updated, and security has been improved.
|
|
421
576
|
|
|
422
577
|
'@kwsites/file-exists@1.1.1':
|
|
423
578
|
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
|
|
@@ -477,8 +632,8 @@ packages:
|
|
|
477
632
|
'@vitejs/devtools':
|
|
478
633
|
optional: true
|
|
479
634
|
|
|
480
|
-
'@nuxt/image@
|
|
481
|
-
resolution: {integrity: sha512-
|
|
635
|
+
'@nuxt/image@2.0.0':
|
|
636
|
+
resolution: {integrity: sha512-otHi6gAoYXKLrp8m27ZjX1PjxOPaltQ4OiUs/BhkW995mF/vXf8SWQTw68fww+Uric0v+XgoVrP9icDi+yT6zw==}
|
|
482
637
|
engines: {node: '>=18.20.6'}
|
|
483
638
|
|
|
484
639
|
'@nuxt/kit@3.21.1':
|
|
@@ -1247,8 +1402,8 @@ packages:
|
|
|
1247
1402
|
'@types/estree@1.0.8':
|
|
1248
1403
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
1249
1404
|
|
|
1250
|
-
'@types/node@20.19.
|
|
1251
|
-
resolution: {integrity: sha512-
|
|
1405
|
+
'@types/node@20.19.25':
|
|
1406
|
+
resolution: {integrity: sha512-ZsJzA5thDQMSQO788d7IocwwQbI8B5OPzmqNvpf3NY/+MHDAS759Wo0gd2WQeXYt5AAAQjzcrTVC6SKCuYgoCQ==}
|
|
1252
1407
|
|
|
1253
1408
|
'@types/resolve@1.20.2':
|
|
1254
1409
|
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
|
@@ -1439,6 +1594,13 @@ packages:
|
|
|
1439
1594
|
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
|
|
1440
1595
|
engines: {node: '>= 4.0.0'}
|
|
1441
1596
|
|
|
1597
|
+
autoprefixer@10.4.20:
|
|
1598
|
+
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
|
|
1599
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1600
|
+
hasBin: true
|
|
1601
|
+
peerDependencies:
|
|
1602
|
+
postcss: ^8.1.0
|
|
1603
|
+
|
|
1442
1604
|
autoprefixer@10.4.27:
|
|
1443
1605
|
resolution: {integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==}
|
|
1444
1606
|
engines: {node: ^10 || ^12 || >=14}
|
|
@@ -1520,9 +1682,6 @@ packages:
|
|
|
1520
1682
|
birpc@4.0.0:
|
|
1521
1683
|
resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==}
|
|
1522
1684
|
|
|
1523
|
-
bl@4.1.0:
|
|
1524
|
-
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
|
|
1525
|
-
|
|
1526
1685
|
boolbase@1.0.0:
|
|
1527
1686
|
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
1528
1687
|
|
|
@@ -1552,9 +1711,6 @@ packages:
|
|
|
1552
1711
|
buffer-from@1.1.2:
|
|
1553
1712
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
1554
1713
|
|
|
1555
|
-
buffer@5.7.1:
|
|
1556
|
-
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
1557
|
-
|
|
1558
1714
|
buffer@6.0.3:
|
|
1559
1715
|
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
|
1560
1716
|
|
|
@@ -1612,9 +1768,6 @@ packages:
|
|
|
1612
1768
|
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
|
|
1613
1769
|
engines: {node: '>= 20.19.0'}
|
|
1614
1770
|
|
|
1615
|
-
chownr@1.1.4:
|
|
1616
|
-
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
|
1617
|
-
|
|
1618
1771
|
chownr@3.0.0:
|
|
1619
1772
|
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
|
|
1620
1773
|
engines: {node: '>=18'}
|
|
@@ -1648,13 +1801,6 @@ packages:
|
|
|
1648
1801
|
color-name@1.1.4:
|
|
1649
1802
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
1650
1803
|
|
|
1651
|
-
color-string@1.9.1:
|
|
1652
|
-
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
|
|
1653
|
-
|
|
1654
|
-
color@4.2.3:
|
|
1655
|
-
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
|
|
1656
|
-
engines: {node: '>=12.5.0'}
|
|
1657
|
-
|
|
1658
1804
|
colord@2.9.3:
|
|
1659
1805
|
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
|
|
1660
1806
|
|
|
@@ -1673,10 +1819,6 @@ packages:
|
|
|
1673
1819
|
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
|
|
1674
1820
|
engines: {node: '>= 6'}
|
|
1675
1821
|
|
|
1676
|
-
commander@7.2.0:
|
|
1677
|
-
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
|
|
1678
|
-
engines: {node: '>= 10'}
|
|
1679
|
-
|
|
1680
1822
|
commondir@1.0.1:
|
|
1681
1823
|
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
|
|
1682
1824
|
|
|
@@ -1760,10 +1902,6 @@ packages:
|
|
|
1760
1902
|
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
|
|
1761
1903
|
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
|
1762
1904
|
|
|
1763
|
-
css-tree@2.3.1:
|
|
1764
|
-
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
|
|
1765
|
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
|
1766
|
-
|
|
1767
1905
|
css-tree@3.2.1:
|
|
1768
1906
|
resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
|
|
1769
1907
|
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
|
@@ -1845,17 +1983,9 @@ packages:
|
|
|
1845
1983
|
supports-color:
|
|
1846
1984
|
optional: true
|
|
1847
1985
|
|
|
1848
|
-
decompress-response@6.0.0:
|
|
1849
|
-
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
|
|
1850
|
-
engines: {node: '>=10'}
|
|
1851
|
-
|
|
1852
1986
|
deep-equal@1.0.1:
|
|
1853
1987
|
resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==}
|
|
1854
1988
|
|
|
1855
|
-
deep-extend@0.6.0:
|
|
1856
|
-
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
1857
|
-
engines: {node: '>=4.0.0'}
|
|
1858
|
-
|
|
1859
1989
|
deepmerge@4.3.1:
|
|
1860
1990
|
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
|
1861
1991
|
engines: {node: '>=0.10.0'}
|
|
@@ -1969,9 +2099,6 @@ packages:
|
|
|
1969
2099
|
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
|
1970
2100
|
engines: {node: '>= 0.8'}
|
|
1971
2101
|
|
|
1972
|
-
end-of-stream@1.4.5:
|
|
1973
|
-
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
1974
|
-
|
|
1975
2102
|
entities@4.5.0:
|
|
1976
2103
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
1977
2104
|
engines: {node: '>=0.12'}
|
|
@@ -2042,10 +2169,6 @@ packages:
|
|
|
2042
2169
|
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
|
|
2043
2170
|
engines: {node: '>=16.17'}
|
|
2044
2171
|
|
|
2045
|
-
expand-template@2.0.3:
|
|
2046
|
-
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
|
2047
|
-
engines: {node: '>=6'}
|
|
2048
|
-
|
|
2049
2172
|
exsolve@1.0.8:
|
|
2050
2173
|
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
|
|
2051
2174
|
|
|
@@ -2083,6 +2206,9 @@ packages:
|
|
|
2083
2206
|
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
|
2084
2207
|
engines: {node: '>=14'}
|
|
2085
2208
|
|
|
2209
|
+
fraction.js@4.3.7:
|
|
2210
|
+
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
|
|
2211
|
+
|
|
2086
2212
|
fraction.js@5.3.4:
|
|
2087
2213
|
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
2088
2214
|
|
|
@@ -2094,9 +2220,6 @@ packages:
|
|
|
2094
2220
|
resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
|
|
2095
2221
|
engines: {node: '>= 0.8'}
|
|
2096
2222
|
|
|
2097
|
-
fs-constants@1.0.0:
|
|
2098
|
-
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
|
2099
|
-
|
|
2100
2223
|
fs-extra@9.1.0:
|
|
2101
2224
|
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
|
|
2102
2225
|
engines: {node: '>=10'}
|
|
@@ -2154,9 +2277,6 @@ packages:
|
|
|
2154
2277
|
resolution: {integrity: sha512-T2qUpKBHeUTwHcIhydgnJzhL0Hj785ms+JkxaaWQH9SDM/llXeewnOkfJcFShAHjWI+26hOChwUfCoupaXLm8g==}
|
|
2155
2278
|
hasBin: true
|
|
2156
2279
|
|
|
2157
|
-
github-from-package@0.0.0:
|
|
2158
|
-
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
|
2159
|
-
|
|
2160
2280
|
glob-parent@5.1.2:
|
|
2161
2281
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
2162
2282
|
engines: {node: '>= 6'}
|
|
@@ -2167,7 +2287,6 @@ packages:
|
|
|
2167
2287
|
|
|
2168
2288
|
glob@10.4.5:
|
|
2169
2289
|
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
|
|
2170
|
-
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
|
|
2171
2290
|
hasBin: true
|
|
2172
2291
|
|
|
2173
2292
|
glob@13.0.6:
|
|
@@ -2176,7 +2295,7 @@ packages:
|
|
|
2176
2295
|
|
|
2177
2296
|
glob@7.2.3:
|
|
2178
2297
|
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
2179
|
-
deprecated:
|
|
2298
|
+
deprecated: Glob versions prior to v9 are no longer supported
|
|
2180
2299
|
|
|
2181
2300
|
global-directory@4.0.1:
|
|
2182
2301
|
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
|
|
@@ -2280,9 +2399,6 @@ packages:
|
|
|
2280
2399
|
inherits@2.0.4:
|
|
2281
2400
|
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
2282
2401
|
|
|
2283
|
-
ini@1.3.8:
|
|
2284
|
-
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
2285
|
-
|
|
2286
2402
|
ini@4.1.1:
|
|
2287
2403
|
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
|
|
2288
2404
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
@@ -2291,16 +2407,13 @@ packages:
|
|
|
2291
2407
|
resolution: {integrity: sha512-HVBe9OFuqs+Z6n64q09PQvP1/R4Bm+30PAyyD4wIEqssh3v9L21QjCVk4kRLucMBcDokJTcLjsGeVRlq/nH6DA==}
|
|
2292
2408
|
engines: {node: '>=12.22.0'}
|
|
2293
2409
|
|
|
2294
|
-
ipx@
|
|
2295
|
-
resolution: {integrity: sha512-
|
|
2410
|
+
ipx@3.1.1:
|
|
2411
|
+
resolution: {integrity: sha512-7Xnt54Dco7uYkfdAw0r2vCly3z0rSaVhEXMzPvl3FndsTVm5p26j+PO+gyinkYmcsEUvX2Rh7OGK7KzYWRu6BA==}
|
|
2296
2412
|
hasBin: true
|
|
2297
2413
|
|
|
2298
2414
|
iron-webcrypto@1.2.1:
|
|
2299
2415
|
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
|
|
2300
2416
|
|
|
2301
|
-
is-arrayish@0.3.4:
|
|
2302
|
-
resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
|
|
2303
|
-
|
|
2304
2417
|
is-binary-path@2.1.0:
|
|
2305
2418
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
2306
2419
|
engines: {node: '>=8'}
|
|
@@ -2425,7 +2538,6 @@ packages:
|
|
|
2425
2538
|
keygrip@1.1.0:
|
|
2426
2539
|
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
|
|
2427
2540
|
engines: {node: '>= 0.6'}
|
|
2428
|
-
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
2429
2541
|
|
|
2430
2542
|
kleur@4.1.5:
|
|
2431
2543
|
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
|
@@ -2499,24 +2611,28 @@ packages:
|
|
|
2499
2611
|
engines: {node: '>= 12.0.0'}
|
|
2500
2612
|
cpu: [arm64]
|
|
2501
2613
|
os: [linux]
|
|
2614
|
+
libc: [glibc]
|
|
2502
2615
|
|
|
2503
2616
|
lightningcss-linux-arm64-musl@1.31.1:
|
|
2504
2617
|
resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
|
|
2505
2618
|
engines: {node: '>= 12.0.0'}
|
|
2506
2619
|
cpu: [arm64]
|
|
2507
2620
|
os: [linux]
|
|
2621
|
+
libc: [musl]
|
|
2508
2622
|
|
|
2509
2623
|
lightningcss-linux-x64-gnu@1.31.1:
|
|
2510
2624
|
resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
|
|
2511
2625
|
engines: {node: '>= 12.0.0'}
|
|
2512
2626
|
cpu: [x64]
|
|
2513
2627
|
os: [linux]
|
|
2628
|
+
libc: [glibc]
|
|
2514
2629
|
|
|
2515
2630
|
lightningcss-linux-x64-musl@1.31.1:
|
|
2516
2631
|
resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
|
|
2517
2632
|
engines: {node: '>= 12.0.0'}
|
|
2518
2633
|
cpu: [x64]
|
|
2519
2634
|
os: [linux]
|
|
2635
|
+
libc: [musl]
|
|
2520
2636
|
|
|
2521
2637
|
lightningcss-win32-arm64-msvc@1.31.1:
|
|
2522
2638
|
resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
|
|
@@ -2594,9 +2710,6 @@ packages:
|
|
|
2594
2710
|
mdn-data@2.0.28:
|
|
2595
2711
|
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
|
|
2596
2712
|
|
|
2597
|
-
mdn-data@2.0.30:
|
|
2598
|
-
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
|
2599
|
-
|
|
2600
2713
|
mdn-data@2.27.1:
|
|
2601
2714
|
resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
|
|
2602
2715
|
|
|
@@ -2644,10 +2757,6 @@ packages:
|
|
|
2644
2757
|
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
|
|
2645
2758
|
engines: {node: '>=12'}
|
|
2646
2759
|
|
|
2647
|
-
mimic-response@3.1.0:
|
|
2648
|
-
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
|
2649
|
-
engines: {node: '>=10'}
|
|
2650
|
-
|
|
2651
2760
|
minimatch@10.2.4:
|
|
2652
2761
|
resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
|
|
2653
2762
|
engines: {node: 18 || 20 || >=22}
|
|
@@ -2663,9 +2772,6 @@ packages:
|
|
|
2663
2772
|
resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
|
|
2664
2773
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
2665
2774
|
|
|
2666
|
-
minimist@1.2.8:
|
|
2667
|
-
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
2668
|
-
|
|
2669
2775
|
minipass@7.1.3:
|
|
2670
2776
|
resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
|
|
2671
2777
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
@@ -2674,9 +2780,6 @@ packages:
|
|
|
2674
2780
|
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
|
|
2675
2781
|
engines: {node: '>= 18'}
|
|
2676
2782
|
|
|
2677
|
-
mkdirp-classic@0.5.3:
|
|
2678
|
-
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
|
2679
|
-
|
|
2680
2783
|
mlly@1.8.1:
|
|
2681
2784
|
resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
|
|
2682
2785
|
|
|
@@ -2704,9 +2807,6 @@ packages:
|
|
|
2704
2807
|
nanotar@0.2.1:
|
|
2705
2808
|
resolution: {integrity: sha512-MUrzzDUcIOPbv7ubhDV/L4CIfVTATd9XhDE2ixFeCrM5yp9AlzUpn91JrnN0HD6hksdxvz9IW9aKANz0Bta0GA==}
|
|
2706
2809
|
|
|
2707
|
-
napi-build-utils@2.0.0:
|
|
2708
|
-
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
2709
|
-
|
|
2710
2810
|
negotiator@0.6.3:
|
|
2711
2811
|
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
2712
2812
|
engines: {node: '>= 0.6'}
|
|
@@ -2721,13 +2821,6 @@ packages:
|
|
|
2721
2821
|
xml2js:
|
|
2722
2822
|
optional: true
|
|
2723
2823
|
|
|
2724
|
-
node-abi@3.87.0:
|
|
2725
|
-
resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==}
|
|
2726
|
-
engines: {node: '>=10'}
|
|
2727
|
-
|
|
2728
|
-
node-addon-api@6.1.0:
|
|
2729
|
-
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
|
|
2730
|
-
|
|
2731
2824
|
node-addon-api@7.1.1:
|
|
2732
2825
|
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
|
|
2733
2826
|
|
|
@@ -2766,6 +2859,10 @@ packages:
|
|
|
2766
2859
|
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
2767
2860
|
engines: {node: '>=0.10.0'}
|
|
2768
2861
|
|
|
2862
|
+
normalize-range@0.1.2:
|
|
2863
|
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
|
2864
|
+
engines: {node: '>=0.10.0'}
|
|
2865
|
+
|
|
2769
2866
|
npm-run-path@5.3.0:
|
|
2770
2867
|
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
|
|
2771
2868
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
@@ -2990,22 +3087,16 @@ packages:
|
|
|
2990
3087
|
peerDependencies:
|
|
2991
3088
|
postcss: ^8.4.21
|
|
2992
3089
|
|
|
2993
|
-
postcss-load-config@
|
|
2994
|
-
resolution: {integrity: sha512-
|
|
2995
|
-
engines: {node: '>=
|
|
3090
|
+
postcss-load-config@4.0.2:
|
|
3091
|
+
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
|
|
3092
|
+
engines: {node: '>= 14'}
|
|
2996
3093
|
peerDependencies:
|
|
2997
|
-
jiti: '>=1.21.0'
|
|
2998
3094
|
postcss: '>=8.0.9'
|
|
2999
|
-
|
|
3000
|
-
yaml: ^2.4.2
|
|
3095
|
+
ts-node: '>=9.0.0'
|
|
3001
3096
|
peerDependenciesMeta:
|
|
3002
|
-
jiti:
|
|
3003
|
-
optional: true
|
|
3004
3097
|
postcss:
|
|
3005
3098
|
optional: true
|
|
3006
|
-
|
|
3007
|
-
optional: true
|
|
3008
|
-
yaml:
|
|
3099
|
+
ts-node:
|
|
3009
3100
|
optional: true
|
|
3010
3101
|
|
|
3011
3102
|
postcss-merge-longhand@7.0.5:
|
|
@@ -3151,16 +3242,14 @@ packages:
|
|
|
3151
3242
|
postcss-value-parser@4.2.0:
|
|
3152
3243
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
3153
3244
|
|
|
3245
|
+
postcss@8.4.49:
|
|
3246
|
+
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
|
|
3247
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
3248
|
+
|
|
3154
3249
|
postcss@8.5.8:
|
|
3155
3250
|
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
3156
3251
|
engines: {node: ^10 || ^12 || >=14}
|
|
3157
3252
|
|
|
3158
|
-
prebuild-install@7.1.3:
|
|
3159
|
-
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
3160
|
-
engines: {node: '>=10'}
|
|
3161
|
-
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
3162
|
-
hasBin: true
|
|
3163
|
-
|
|
3164
3253
|
pretty-bytes@7.1.0:
|
|
3165
3254
|
resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==}
|
|
3166
3255
|
engines: {node: '>=20'}
|
|
@@ -3172,9 +3261,6 @@ packages:
|
|
|
3172
3261
|
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
|
|
3173
3262
|
engines: {node: '>= 0.6.0'}
|
|
3174
3263
|
|
|
3175
|
-
pump@3.0.4:
|
|
3176
|
-
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
3177
|
-
|
|
3178
3264
|
quansync@0.2.11:
|
|
3179
3265
|
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
|
|
3180
3266
|
|
|
@@ -3197,20 +3283,12 @@ packages:
|
|
|
3197
3283
|
rc9@3.0.0:
|
|
3198
3284
|
resolution: {integrity: sha512-MGOue0VqscKWQ104udASX/3GYDcKyPI4j4F8gu/jHHzglpmy9a/anZK3PNe8ug6aZFl+9GxLtdhe3kVZuMaQbA==}
|
|
3199
3285
|
|
|
3200
|
-
rc@1.2.8:
|
|
3201
|
-
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
|
3202
|
-
hasBin: true
|
|
3203
|
-
|
|
3204
3286
|
read-cache@1.0.0:
|
|
3205
3287
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
3206
3288
|
|
|
3207
3289
|
readable-stream@2.3.8:
|
|
3208
3290
|
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
|
|
3209
3291
|
|
|
3210
|
-
readable-stream@3.6.2:
|
|
3211
|
-
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
3212
|
-
engines: {node: '>= 6'}
|
|
3213
|
-
|
|
3214
3292
|
readable-stream@4.7.0:
|
|
3215
3293
|
resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
|
|
3216
3294
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
@@ -3349,9 +3427,9 @@ packages:
|
|
|
3349
3427
|
setprototypeof@1.2.0:
|
|
3350
3428
|
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
3351
3429
|
|
|
3352
|
-
sharp@0.
|
|
3353
|
-
resolution: {integrity: sha512-
|
|
3354
|
-
engines: {node:
|
|
3430
|
+
sharp@0.34.5:
|
|
3431
|
+
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
3432
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
3355
3433
|
|
|
3356
3434
|
shebang-command@2.0.0:
|
|
3357
3435
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
@@ -3369,18 +3447,9 @@ packages:
|
|
|
3369
3447
|
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
3370
3448
|
engines: {node: '>=14'}
|
|
3371
3449
|
|
|
3372
|
-
simple-concat@1.0.1:
|
|
3373
|
-
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
|
3374
|
-
|
|
3375
|
-
simple-get@4.0.1:
|
|
3376
|
-
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
|
3377
|
-
|
|
3378
3450
|
simple-git@3.32.3:
|
|
3379
3451
|
resolution: {integrity: sha512-56a5oxFdWlsGygOXHWrG+xjj5w9ZIt2uQbzqiIGdR/6i5iococ7WQ/bNPzWxCJdEUGUCmyMH0t9zMpRJTaKxmw==}
|
|
3380
3452
|
|
|
3381
|
-
simple-swizzle@0.2.4:
|
|
3382
|
-
resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
|
|
3383
|
-
|
|
3384
3453
|
sirv@3.0.2:
|
|
3385
3454
|
resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
|
|
3386
3455
|
engines: {node: '>=18'}
|
|
@@ -3459,10 +3528,6 @@ packages:
|
|
|
3459
3528
|
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
|
|
3460
3529
|
engines: {node: '>=12'}
|
|
3461
3530
|
|
|
3462
|
-
strip-json-comments@2.0.1:
|
|
3463
|
-
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
3464
|
-
engines: {node: '>=0.10.0'}
|
|
3465
|
-
|
|
3466
3531
|
strip-literal@3.1.0:
|
|
3467
3532
|
resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
|
|
3468
3533
|
|
|
@@ -3492,11 +3557,6 @@ packages:
|
|
|
3492
3557
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
3493
3558
|
engines: {node: '>= 0.4'}
|
|
3494
3559
|
|
|
3495
|
-
svgo@3.3.3:
|
|
3496
|
-
resolution: {integrity: sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==}
|
|
3497
|
-
engines: {node: '>=14.0.0'}
|
|
3498
|
-
hasBin: true
|
|
3499
|
-
|
|
3500
3560
|
svgo@4.0.1:
|
|
3501
3561
|
resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==}
|
|
3502
3562
|
engines: {node: '>=16'}
|
|
@@ -3517,24 +3577,14 @@ packages:
|
|
|
3517
3577
|
peerDependencies:
|
|
3518
3578
|
tailwindcss: 1 || 2 || 2.0.1-compat || 3
|
|
3519
3579
|
|
|
3520
|
-
tailwind-merge@2.6.
|
|
3521
|
-
resolution: {integrity: sha512-
|
|
3580
|
+
tailwind-merge@2.6.0:
|
|
3581
|
+
resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
|
|
3522
3582
|
|
|
3523
|
-
tailwindcss@3.4.
|
|
3524
|
-
resolution: {integrity: sha512-
|
|
3583
|
+
tailwindcss@3.4.17:
|
|
3584
|
+
resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
|
|
3525
3585
|
engines: {node: '>=14.0.0'}
|
|
3526
3586
|
hasBin: true
|
|
3527
3587
|
|
|
3528
|
-
tar-fs@2.1.4:
|
|
3529
|
-
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
|
3530
|
-
|
|
3531
|
-
tar-fs@3.1.2:
|
|
3532
|
-
resolution: {integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==}
|
|
3533
|
-
|
|
3534
|
-
tar-stream@2.2.0:
|
|
3535
|
-
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
|
3536
|
-
engines: {node: '>=6'}
|
|
3537
|
-
|
|
3538
3588
|
tar-stream@3.1.8:
|
|
3539
3589
|
resolution: {integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==}
|
|
3540
3590
|
|
|
@@ -3596,9 +3646,6 @@ packages:
|
|
|
3596
3646
|
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
|
|
3597
3647
|
engines: {node: '>=0.6.x'}
|
|
3598
3648
|
|
|
3599
|
-
tunnel-agent@0.6.0:
|
|
3600
|
-
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
3601
|
-
|
|
3602
3649
|
type-fest@5.4.4:
|
|
3603
3650
|
resolution: {integrity: sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw==}
|
|
3604
3651
|
engines: {node: '>=20'}
|
|
@@ -4153,11 +4200,10 @@ snapshots:
|
|
|
4153
4200
|
'@babel/helper-string-parser': 7.27.1
|
|
4154
4201
|
'@babel/helper-validator-identifier': 7.28.5
|
|
4155
4202
|
|
|
4156
|
-
'@bomb.sh/tab@0.0.12(cac@6.7.14)(citty@0.2.1)
|
|
4203
|
+
'@bomb.sh/tab@0.0.12(cac@6.7.14)(citty@0.2.1)':
|
|
4157
4204
|
optionalDependencies:
|
|
4158
4205
|
cac: 6.7.14
|
|
4159
4206
|
citty: 0.2.1
|
|
4160
|
-
commander: 11.1.0
|
|
4161
4207
|
|
|
4162
4208
|
'@clack/core@1.1.0':
|
|
4163
4209
|
dependencies:
|
|
@@ -4284,7 +4330,104 @@ snapshots:
|
|
|
4284
4330
|
'@esbuild/win32-x64@0.27.3':
|
|
4285
4331
|
optional: true
|
|
4286
4332
|
|
|
4287
|
-
'@fastify/accept-negotiator@
|
|
4333
|
+
'@fastify/accept-negotiator@2.0.1':
|
|
4334
|
+
optional: true
|
|
4335
|
+
|
|
4336
|
+
'@img/colour@1.1.0':
|
|
4337
|
+
optional: true
|
|
4338
|
+
|
|
4339
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
4340
|
+
optionalDependencies:
|
|
4341
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
4342
|
+
optional: true
|
|
4343
|
+
|
|
4344
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
4345
|
+
optionalDependencies:
|
|
4346
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
4347
|
+
optional: true
|
|
4348
|
+
|
|
4349
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
4350
|
+
optional: true
|
|
4351
|
+
|
|
4352
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
4353
|
+
optional: true
|
|
4354
|
+
|
|
4355
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
4356
|
+
optional: true
|
|
4357
|
+
|
|
4358
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
4359
|
+
optional: true
|
|
4360
|
+
|
|
4361
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
4362
|
+
optional: true
|
|
4363
|
+
|
|
4364
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
4365
|
+
optional: true
|
|
4366
|
+
|
|
4367
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
4368
|
+
optional: true
|
|
4369
|
+
|
|
4370
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
4371
|
+
optional: true
|
|
4372
|
+
|
|
4373
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
4374
|
+
optional: true
|
|
4375
|
+
|
|
4376
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
4377
|
+
optional: true
|
|
4378
|
+
|
|
4379
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
4380
|
+
optionalDependencies:
|
|
4381
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
4382
|
+
optional: true
|
|
4383
|
+
|
|
4384
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
4385
|
+
optionalDependencies:
|
|
4386
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
4387
|
+
optional: true
|
|
4388
|
+
|
|
4389
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
4390
|
+
optionalDependencies:
|
|
4391
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
4392
|
+
optional: true
|
|
4393
|
+
|
|
4394
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
4395
|
+
optionalDependencies:
|
|
4396
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
4397
|
+
optional: true
|
|
4398
|
+
|
|
4399
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
4400
|
+
optionalDependencies:
|
|
4401
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
4402
|
+
optional: true
|
|
4403
|
+
|
|
4404
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
4405
|
+
optionalDependencies:
|
|
4406
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
4407
|
+
optional: true
|
|
4408
|
+
|
|
4409
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
4410
|
+
optionalDependencies:
|
|
4411
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
4412
|
+
optional: true
|
|
4413
|
+
|
|
4414
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
4415
|
+
optionalDependencies:
|
|
4416
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
4417
|
+
optional: true
|
|
4418
|
+
|
|
4419
|
+
'@img/sharp-wasm32@0.34.5':
|
|
4420
|
+
dependencies:
|
|
4421
|
+
'@emnapi/runtime': 1.8.1
|
|
4422
|
+
optional: true
|
|
4423
|
+
|
|
4424
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
4425
|
+
optional: true
|
|
4426
|
+
|
|
4427
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
4428
|
+
optional: true
|
|
4429
|
+
|
|
4430
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
4288
4431
|
optional: true
|
|
4289
4432
|
|
|
4290
4433
|
'@ioredis/commands@1.5.1': {}
|
|
@@ -4326,7 +4469,7 @@ snapshots:
|
|
|
4326
4469
|
'@jridgewell/resolve-uri': 3.1.2
|
|
4327
4470
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
4328
4471
|
|
|
4329
|
-
'@kmlckj/licos-platform-sdk@0.6.
|
|
4472
|
+
'@kmlckj/licos-platform-sdk@0.6.3': {}
|
|
4330
4473
|
|
|
4331
4474
|
'@koa/router@12.0.2':
|
|
4332
4475
|
dependencies:
|
|
@@ -4378,9 +4521,9 @@ snapshots:
|
|
|
4378
4521
|
'@nodelib/fs.scandir': 2.1.5
|
|
4379
4522
|
fastq: 1.20.1
|
|
4380
4523
|
|
|
4381
|
-
'@nuxt/cli@3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(
|
|
4524
|
+
'@nuxt/cli@3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(magicast@0.5.2)':
|
|
4382
4525
|
dependencies:
|
|
4383
|
-
'@bomb.sh/tab': 0.0.12(cac@6.7.14)(citty@0.2.1)
|
|
4526
|
+
'@bomb.sh/tab': 0.0.12(cac@6.7.14)(citty@0.2.1)
|
|
4384
4527
|
'@clack/prompts': 1.1.0
|
|
4385
4528
|
c12: 3.3.3(magicast@0.5.2)
|
|
4386
4529
|
citty: 0.2.1
|
|
@@ -4418,11 +4561,11 @@ snapshots:
|
|
|
4418
4561
|
|
|
4419
4562
|
'@nuxt/devalue@2.0.2': {}
|
|
4420
4563
|
|
|
4421
|
-
'@nuxt/devtools-kit@3.2.3(magicast@0.5.2)(vite@7.3.1(@types/node@20.19.
|
|
4564
|
+
'@nuxt/devtools-kit@3.2.3(magicast@0.5.2)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))':
|
|
4422
4565
|
dependencies:
|
|
4423
4566
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
4424
4567
|
execa: 8.0.1
|
|
4425
|
-
vite: 7.3.1(@types/node@20.19.
|
|
4568
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4426
4569
|
transitivePeerDependencies:
|
|
4427
4570
|
- magicast
|
|
4428
4571
|
|
|
@@ -4437,9 +4580,9 @@ snapshots:
|
|
|
4437
4580
|
pkg-types: 2.3.0
|
|
4438
4581
|
semver: 7.7.4
|
|
4439
4582
|
|
|
4440
|
-
'@nuxt/devtools@3.2.3(vite@7.3.1(@types/node@20.19.
|
|
4583
|
+
'@nuxt/devtools@3.2.3(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
|
|
4441
4584
|
dependencies:
|
|
4442
|
-
'@nuxt/devtools-kit': 3.2.3(magicast@0.5.2)(vite@7.3.1(@types/node@20.19.
|
|
4585
|
+
'@nuxt/devtools-kit': 3.2.3(magicast@0.5.2)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
4443
4586
|
'@nuxt/devtools-wizard': 3.2.3
|
|
4444
4587
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
4445
4588
|
'@vue/devtools-core': 8.0.7(vue@3.5.30(typescript@5.9.3))
|
|
@@ -4467,9 +4610,9 @@ snapshots:
|
|
|
4467
4610
|
sirv: 3.0.2
|
|
4468
4611
|
structured-clone-es: 1.0.0
|
|
4469
4612
|
tinyglobby: 0.2.15
|
|
4470
|
-
vite: 7.3.1(@types/node@20.19.
|
|
4471
|
-
vite-plugin-inspect: 11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@20.19.
|
|
4472
|
-
vite-plugin-vue-tracer: 1.2.0(vite@7.3.1(@types/node@20.19.
|
|
4613
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4614
|
+
vite-plugin-inspect: 11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
4615
|
+
vite-plugin-vue-tracer: 1.2.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
|
|
4473
4616
|
which: 5.0.0
|
|
4474
4617
|
ws: 8.19.0
|
|
4475
4618
|
transitivePeerDependencies:
|
|
@@ -4478,9 +4621,9 @@ snapshots:
|
|
|
4478
4621
|
- utf-8-validate
|
|
4479
4622
|
- vue
|
|
4480
4623
|
|
|
4481
|
-
'@nuxt/image@
|
|
4624
|
+
'@nuxt/image@2.0.0(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)':
|
|
4482
4625
|
dependencies:
|
|
4483
|
-
'@nuxt/kit': 3.
|
|
4626
|
+
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
4484
4627
|
consola: 3.4.2
|
|
4485
4628
|
defu: 6.1.4
|
|
4486
4629
|
h3: 1.15.6
|
|
@@ -4491,7 +4634,7 @@ snapshots:
|
|
|
4491
4634
|
std-env: 3.10.0
|
|
4492
4635
|
ufo: 1.6.3
|
|
4493
4636
|
optionalDependencies:
|
|
4494
|
-
ipx:
|
|
4637
|
+
ipx: 3.1.1(db0@0.3.4)(ioredis@5.10.0)
|
|
4495
4638
|
transitivePeerDependencies:
|
|
4496
4639
|
- '@azure/app-configuration'
|
|
4497
4640
|
- '@azure/cosmos'
|
|
@@ -4508,13 +4651,10 @@ snapshots:
|
|
|
4508
4651
|
- '@vercel/functions'
|
|
4509
4652
|
- '@vercel/kv'
|
|
4510
4653
|
- aws4fetch
|
|
4511
|
-
- bare-abort-controller
|
|
4512
|
-
- bare-buffer
|
|
4513
4654
|
- db0
|
|
4514
4655
|
- idb-keyval
|
|
4515
4656
|
- ioredis
|
|
4516
4657
|
- magicast
|
|
4517
|
-
- react-native-b4a
|
|
4518
4658
|
- uploadthing
|
|
4519
4659
|
|
|
4520
4660
|
'@nuxt/kit@3.21.1(magicast@0.5.2)':
|
|
@@ -4568,7 +4708,7 @@ snapshots:
|
|
|
4568
4708
|
transitivePeerDependencies:
|
|
4569
4709
|
- magicast
|
|
4570
4710
|
|
|
4571
|
-
'@nuxt/nitro-server@4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
4711
|
+
'@nuxt/nitro-server@4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
|
4572
4712
|
dependencies:
|
|
4573
4713
|
'@nuxt/devalue': 2.0.2
|
|
4574
4714
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
@@ -4586,7 +4726,7 @@ snapshots:
|
|
|
4586
4726
|
klona: 2.0.6
|
|
4587
4727
|
mocked-exports: 0.1.1
|
|
4588
4728
|
nitropack: 2.13.1
|
|
4589
|
-
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
4729
|
+
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
4590
4730
|
ohash: 2.0.11
|
|
4591
4731
|
pathe: 2.0.3
|
|
4592
4732
|
pkg-types: 2.3.0
|
|
@@ -4651,12 +4791,12 @@ snapshots:
|
|
|
4651
4791
|
rc9: 3.0.0
|
|
4652
4792
|
std-env: 3.10.0
|
|
4653
4793
|
|
|
4654
|
-
'@nuxt/vite-builder@4.3.1(@types/node@20.19.
|
|
4794
|
+
'@nuxt/vite-builder@4.3.1(@types/node@20.19.25)(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)':
|
|
4655
4795
|
dependencies:
|
|
4656
4796
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
4657
4797
|
'@rollup/plugin-replace': 6.0.3(rollup@4.59.0)
|
|
4658
|
-
'@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@20.19.
|
|
4659
|
-
'@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@20.19.
|
|
4798
|
+
'@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
|
|
4799
|
+
'@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
|
|
4660
4800
|
autoprefixer: 10.4.27(postcss@8.5.8)
|
|
4661
4801
|
consola: 3.4.2
|
|
4662
4802
|
cssnano: 7.1.3(postcss@8.5.8)
|
|
@@ -4670,7 +4810,7 @@ snapshots:
|
|
|
4670
4810
|
magic-string: 0.30.21
|
|
4671
4811
|
mlly: 1.8.1
|
|
4672
4812
|
mocked-exports: 0.1.1
|
|
4673
|
-
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
4813
|
+
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
4674
4814
|
pathe: 2.0.3
|
|
4675
4815
|
pkg-types: 2.3.0
|
|
4676
4816
|
postcss: 8.5.8
|
|
@@ -4679,9 +4819,9 @@ snapshots:
|
|
|
4679
4819
|
std-env: 3.10.0
|
|
4680
4820
|
ufo: 1.6.3
|
|
4681
4821
|
unenv: 2.0.0-rc.24
|
|
4682
|
-
vite: 7.3.1(@types/node@20.19.
|
|
4683
|
-
vite-node: 5.3.0(@types/node@20.19.
|
|
4684
|
-
vite-plugin-checker: 0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.
|
|
4822
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4823
|
+
vite-node: 5.3.0(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4824
|
+
vite-plugin-checker: 0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
4685
4825
|
vue: 3.5.30(typescript@5.9.3)
|
|
4686
4826
|
vue-bundle-renderer: 2.2.0
|
|
4687
4827
|
transitivePeerDependencies:
|
|
@@ -4709,10 +4849,10 @@ snapshots:
|
|
|
4709
4849
|
- vue-tsc
|
|
4710
4850
|
- yaml
|
|
4711
4851
|
|
|
4712
|
-
'@nuxtjs/tailwindcss@6.14.0(magicast@0.5.2)
|
|
4852
|
+
'@nuxtjs/tailwindcss@6.14.0(magicast@0.5.2)':
|
|
4713
4853
|
dependencies:
|
|
4714
4854
|
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
|
4715
|
-
autoprefixer: 10.4.
|
|
4855
|
+
autoprefixer: 10.4.20(postcss@8.5.8)
|
|
4716
4856
|
c12: 3.3.3(magicast@0.5.2)
|
|
4717
4857
|
consola: 3.4.2
|
|
4718
4858
|
defu: 6.1.4
|
|
@@ -4723,15 +4863,14 @@ snapshots:
|
|
|
4723
4863
|
pkg-types: 2.3.0
|
|
4724
4864
|
postcss: 8.5.8
|
|
4725
4865
|
postcss-nesting: 13.0.2(postcss@8.5.8)
|
|
4726
|
-
tailwind-config-viewer: 2.0.4(tailwindcss@3.4.
|
|
4727
|
-
tailwindcss: 3.4.
|
|
4866
|
+
tailwind-config-viewer: 2.0.4(tailwindcss@3.4.17)
|
|
4867
|
+
tailwindcss: 3.4.17
|
|
4728
4868
|
ufo: 1.6.3
|
|
4729
4869
|
unctx: 2.5.0
|
|
4730
4870
|
transitivePeerDependencies:
|
|
4731
4871
|
- magicast
|
|
4732
4872
|
- supports-color
|
|
4733
|
-
-
|
|
4734
|
-
- yaml
|
|
4873
|
+
- ts-node
|
|
4735
4874
|
|
|
4736
4875
|
'@oxc-minify/binding-android-arm-eabi@0.112.0':
|
|
4737
4876
|
optional: true
|
|
@@ -5158,7 +5297,7 @@ snapshots:
|
|
|
5158
5297
|
|
|
5159
5298
|
'@types/estree@1.0.8': {}
|
|
5160
5299
|
|
|
5161
|
-
'@types/node@20.19.
|
|
5300
|
+
'@types/node@20.19.25':
|
|
5162
5301
|
dependencies:
|
|
5163
5302
|
undici-types: 6.21.0
|
|
5164
5303
|
|
|
@@ -5189,22 +5328,22 @@ snapshots:
|
|
|
5189
5328
|
- rollup
|
|
5190
5329
|
- supports-color
|
|
5191
5330
|
|
|
5192
|
-
'@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@20.19.
|
|
5331
|
+
'@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
|
|
5193
5332
|
dependencies:
|
|
5194
5333
|
'@babel/core': 7.29.0
|
|
5195
5334
|
'@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
|
|
5196
5335
|
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
|
|
5197
5336
|
'@rolldown/pluginutils': 1.0.0-rc.8
|
|
5198
5337
|
'@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
|
|
5199
|
-
vite: 7.3.1(@types/node@20.19.
|
|
5338
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
5200
5339
|
vue: 3.5.30(typescript@5.9.3)
|
|
5201
5340
|
transitivePeerDependencies:
|
|
5202
5341
|
- supports-color
|
|
5203
5342
|
|
|
5204
|
-
'@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@20.19.
|
|
5343
|
+
'@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
|
|
5205
5344
|
dependencies:
|
|
5206
5345
|
'@rolldown/pluginutils': 1.0.0-rc.2
|
|
5207
|
-
vite: 7.3.1(@types/node@20.19.
|
|
5346
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
5208
5347
|
vue: 3.5.30(typescript@5.9.3)
|
|
5209
5348
|
|
|
5210
5349
|
'@volar/language-core@2.4.28':
|
|
@@ -5415,6 +5554,26 @@ snapshots:
|
|
|
5415
5554
|
|
|
5416
5555
|
at-least-node@1.0.0: {}
|
|
5417
5556
|
|
|
5557
|
+
autoprefixer@10.4.20(postcss@8.4.49):
|
|
5558
|
+
dependencies:
|
|
5559
|
+
browserslist: 4.28.1
|
|
5560
|
+
caniuse-lite: 1.0.30001777
|
|
5561
|
+
fraction.js: 4.3.7
|
|
5562
|
+
normalize-range: 0.1.2
|
|
5563
|
+
picocolors: 1.1.1
|
|
5564
|
+
postcss: 8.4.49
|
|
5565
|
+
postcss-value-parser: 4.2.0
|
|
5566
|
+
|
|
5567
|
+
autoprefixer@10.4.20(postcss@8.5.8):
|
|
5568
|
+
dependencies:
|
|
5569
|
+
browserslist: 4.28.1
|
|
5570
|
+
caniuse-lite: 1.0.30001777
|
|
5571
|
+
fraction.js: 4.3.7
|
|
5572
|
+
normalize-range: 0.1.2
|
|
5573
|
+
picocolors: 1.1.1
|
|
5574
|
+
postcss: 8.5.8
|
|
5575
|
+
postcss-value-parser: 4.2.0
|
|
5576
|
+
|
|
5418
5577
|
autoprefixer@10.4.27(postcss@8.5.8):
|
|
5419
5578
|
dependencies:
|
|
5420
5579
|
browserslist: 4.28.1
|
|
@@ -5477,13 +5636,6 @@ snapshots:
|
|
|
5477
5636
|
|
|
5478
5637
|
birpc@4.0.0: {}
|
|
5479
5638
|
|
|
5480
|
-
bl@4.1.0:
|
|
5481
|
-
dependencies:
|
|
5482
|
-
buffer: 5.7.1
|
|
5483
|
-
inherits: 2.0.4
|
|
5484
|
-
readable-stream: 3.6.2
|
|
5485
|
-
optional: true
|
|
5486
|
-
|
|
5487
5639
|
boolbase@1.0.0: {}
|
|
5488
5640
|
|
|
5489
5641
|
brace-expansion@1.1.12:
|
|
@@ -5515,12 +5667,6 @@ snapshots:
|
|
|
5515
5667
|
|
|
5516
5668
|
buffer-from@1.1.2: {}
|
|
5517
5669
|
|
|
5518
|
-
buffer@5.7.1:
|
|
5519
|
-
dependencies:
|
|
5520
|
-
base64-js: 1.5.1
|
|
5521
|
-
ieee754: 1.2.1
|
|
5522
|
-
optional: true
|
|
5523
|
-
|
|
5524
5670
|
buffer@6.0.3:
|
|
5525
5671
|
dependencies:
|
|
5526
5672
|
base64-js: 1.5.1
|
|
@@ -5600,9 +5746,6 @@ snapshots:
|
|
|
5600
5746
|
dependencies:
|
|
5601
5747
|
readdirp: 5.0.0
|
|
5602
5748
|
|
|
5603
|
-
chownr@1.1.4:
|
|
5604
|
-
optional: true
|
|
5605
|
-
|
|
5606
5749
|
chownr@3.0.0: {}
|
|
5607
5750
|
|
|
5608
5751
|
citty@0.1.6:
|
|
@@ -5633,18 +5776,6 @@ snapshots:
|
|
|
5633
5776
|
|
|
5634
5777
|
color-name@1.1.4: {}
|
|
5635
5778
|
|
|
5636
|
-
color-string@1.9.1:
|
|
5637
|
-
dependencies:
|
|
5638
|
-
color-name: 1.1.4
|
|
5639
|
-
simple-swizzle: 0.2.4
|
|
5640
|
-
optional: true
|
|
5641
|
-
|
|
5642
|
-
color@4.2.3:
|
|
5643
|
-
dependencies:
|
|
5644
|
-
color-convert: 2.0.1
|
|
5645
|
-
color-string: 1.9.1
|
|
5646
|
-
optional: true
|
|
5647
|
-
|
|
5648
5779
|
colord@2.9.3: {}
|
|
5649
5780
|
|
|
5650
5781
|
commander@11.1.0: {}
|
|
@@ -5655,9 +5786,6 @@ snapshots:
|
|
|
5655
5786
|
|
|
5656
5787
|
commander@6.2.1: {}
|
|
5657
5788
|
|
|
5658
|
-
commander@7.2.0:
|
|
5659
|
-
optional: true
|
|
5660
|
-
|
|
5661
5789
|
commondir@1.0.1: {}
|
|
5662
5790
|
|
|
5663
5791
|
compatx@0.2.0: {}
|
|
@@ -5737,12 +5865,6 @@ snapshots:
|
|
|
5737
5865
|
mdn-data: 2.0.28
|
|
5738
5866
|
source-map-js: 1.2.1
|
|
5739
5867
|
|
|
5740
|
-
css-tree@2.3.1:
|
|
5741
|
-
dependencies:
|
|
5742
|
-
mdn-data: 2.0.30
|
|
5743
|
-
source-map-js: 1.2.1
|
|
5744
|
-
optional: true
|
|
5745
|
-
|
|
5746
5868
|
css-tree@3.2.1:
|
|
5747
5869
|
dependencies:
|
|
5748
5870
|
mdn-data: 2.27.1
|
|
@@ -5815,16 +5937,8 @@ snapshots:
|
|
|
5815
5937
|
dependencies:
|
|
5816
5938
|
ms: 2.1.3
|
|
5817
5939
|
|
|
5818
|
-
decompress-response@6.0.0:
|
|
5819
|
-
dependencies:
|
|
5820
|
-
mimic-response: 3.1.0
|
|
5821
|
-
optional: true
|
|
5822
|
-
|
|
5823
5940
|
deep-equal@1.0.1: {}
|
|
5824
5941
|
|
|
5825
|
-
deep-extend@0.6.0:
|
|
5826
|
-
optional: true
|
|
5827
|
-
|
|
5828
5942
|
deepmerge@4.3.1: {}
|
|
5829
5943
|
|
|
5830
5944
|
default-browser-id@5.0.1: {}
|
|
@@ -5908,11 +6022,6 @@ snapshots:
|
|
|
5908
6022
|
|
|
5909
6023
|
encodeurl@2.0.0: {}
|
|
5910
6024
|
|
|
5911
|
-
end-of-stream@1.4.5:
|
|
5912
|
-
dependencies:
|
|
5913
|
-
once: 1.4.0
|
|
5914
|
-
optional: true
|
|
5915
|
-
|
|
5916
6025
|
entities@4.5.0: {}
|
|
5917
6026
|
|
|
5918
6027
|
entities@7.0.1: {}
|
|
@@ -5996,9 +6105,6 @@ snapshots:
|
|
|
5996
6105
|
signal-exit: 4.1.0
|
|
5997
6106
|
strip-final-newline: 3.0.0
|
|
5998
6107
|
|
|
5999
|
-
expand-template@2.0.3:
|
|
6000
|
-
optional: true
|
|
6001
|
-
|
|
6002
6108
|
exsolve@1.0.8: {}
|
|
6003
6109
|
|
|
6004
6110
|
fast-fifo@1.3.2: {}
|
|
@@ -6032,15 +6138,14 @@ snapshots:
|
|
|
6032
6138
|
cross-spawn: 7.0.6
|
|
6033
6139
|
signal-exit: 4.1.0
|
|
6034
6140
|
|
|
6141
|
+
fraction.js@4.3.7: {}
|
|
6142
|
+
|
|
6035
6143
|
fraction.js@5.3.4: {}
|
|
6036
6144
|
|
|
6037
6145
|
fresh@0.5.2: {}
|
|
6038
6146
|
|
|
6039
6147
|
fresh@2.0.0: {}
|
|
6040
6148
|
|
|
6041
|
-
fs-constants@1.0.0:
|
|
6042
|
-
optional: true
|
|
6043
|
-
|
|
6044
6149
|
fs-extra@9.1.0:
|
|
6045
6150
|
dependencies:
|
|
6046
6151
|
at-least-node: 1.0.0
|
|
@@ -6098,9 +6203,6 @@ snapshots:
|
|
|
6098
6203
|
|
|
6099
6204
|
giget@3.1.2: {}
|
|
6100
6205
|
|
|
6101
|
-
github-from-package@0.0.0:
|
|
6102
|
-
optional: true
|
|
6103
|
-
|
|
6104
6206
|
glob-parent@5.1.2:
|
|
6105
6207
|
dependencies:
|
|
6106
6208
|
is-glob: 4.0.3
|
|
@@ -6250,9 +6352,6 @@ snapshots:
|
|
|
6250
6352
|
|
|
6251
6353
|
inherits@2.0.4: {}
|
|
6252
6354
|
|
|
6253
|
-
ini@1.3.8:
|
|
6254
|
-
optional: true
|
|
6255
|
-
|
|
6256
6355
|
ini@4.1.1: {}
|
|
6257
6356
|
|
|
6258
6357
|
ioredis@5.10.0:
|
|
@@ -6269,9 +6368,9 @@ snapshots:
|
|
|
6269
6368
|
transitivePeerDependencies:
|
|
6270
6369
|
- supports-color
|
|
6271
6370
|
|
|
6272
|
-
ipx@
|
|
6371
|
+
ipx@3.1.1(db0@0.3.4)(ioredis@5.10.0):
|
|
6273
6372
|
dependencies:
|
|
6274
|
-
'@fastify/accept-negotiator':
|
|
6373
|
+
'@fastify/accept-negotiator': 2.0.1
|
|
6275
6374
|
citty: 0.1.6
|
|
6276
6375
|
consola: 3.4.2
|
|
6277
6376
|
defu: 6.1.4
|
|
@@ -6281,9 +6380,9 @@ snapshots:
|
|
|
6281
6380
|
image-meta: 0.2.2
|
|
6282
6381
|
listhen: 1.9.0
|
|
6283
6382
|
ofetch: 1.5.1
|
|
6284
|
-
pathe:
|
|
6285
|
-
sharp: 0.
|
|
6286
|
-
svgo:
|
|
6383
|
+
pathe: 2.0.3
|
|
6384
|
+
sharp: 0.34.5
|
|
6385
|
+
svgo: 4.0.1
|
|
6287
6386
|
ufo: 1.6.3
|
|
6288
6387
|
unstorage: 1.17.4(db0@0.3.4)(ioredis@5.10.0)
|
|
6289
6388
|
xss: 1.0.15
|
|
@@ -6303,20 +6402,14 @@ snapshots:
|
|
|
6303
6402
|
- '@vercel/functions'
|
|
6304
6403
|
- '@vercel/kv'
|
|
6305
6404
|
- aws4fetch
|
|
6306
|
-
- bare-abort-controller
|
|
6307
|
-
- bare-buffer
|
|
6308
6405
|
- db0
|
|
6309
6406
|
- idb-keyval
|
|
6310
6407
|
- ioredis
|
|
6311
|
-
- react-native-b4a
|
|
6312
6408
|
- uploadthing
|
|
6313
6409
|
optional: true
|
|
6314
6410
|
|
|
6315
6411
|
iron-webcrypto@1.2.1: {}
|
|
6316
6412
|
|
|
6317
|
-
is-arrayish@0.3.4:
|
|
6318
|
-
optional: true
|
|
6319
|
-
|
|
6320
6413
|
is-binary-path@2.1.0:
|
|
6321
6414
|
dependencies:
|
|
6322
6415
|
binary-extensions: 2.3.0
|
|
@@ -6613,9 +6706,6 @@ snapshots:
|
|
|
6613
6706
|
|
|
6614
6707
|
mdn-data@2.0.28: {}
|
|
6615
6708
|
|
|
6616
|
-
mdn-data@2.0.30:
|
|
6617
|
-
optional: true
|
|
6618
|
-
|
|
6619
6709
|
mdn-data@2.27.1: {}
|
|
6620
6710
|
|
|
6621
6711
|
media-typer@0.3.0: {}
|
|
@@ -6647,9 +6737,6 @@ snapshots:
|
|
|
6647
6737
|
|
|
6648
6738
|
mimic-fn@4.0.0: {}
|
|
6649
6739
|
|
|
6650
|
-
mimic-response@3.1.0:
|
|
6651
|
-
optional: true
|
|
6652
|
-
|
|
6653
6740
|
minimatch@10.2.4:
|
|
6654
6741
|
dependencies:
|
|
6655
6742
|
brace-expansion: 5.0.4
|
|
@@ -6666,18 +6753,12 @@ snapshots:
|
|
|
6666
6753
|
dependencies:
|
|
6667
6754
|
brace-expansion: 2.0.2
|
|
6668
6755
|
|
|
6669
|
-
minimist@1.2.8:
|
|
6670
|
-
optional: true
|
|
6671
|
-
|
|
6672
6756
|
minipass@7.1.3: {}
|
|
6673
6757
|
|
|
6674
6758
|
minizlib@3.1.0:
|
|
6675
6759
|
dependencies:
|
|
6676
6760
|
minipass: 7.1.3
|
|
6677
6761
|
|
|
6678
|
-
mkdirp-classic@0.5.3:
|
|
6679
|
-
optional: true
|
|
6680
|
-
|
|
6681
6762
|
mlly@1.8.1:
|
|
6682
6763
|
dependencies:
|
|
6683
6764
|
acorn: 8.16.0
|
|
@@ -6703,9 +6784,6 @@ snapshots:
|
|
|
6703
6784
|
|
|
6704
6785
|
nanotar@0.2.1: {}
|
|
6705
6786
|
|
|
6706
|
-
napi-build-utils@2.0.0:
|
|
6707
|
-
optional: true
|
|
6708
|
-
|
|
6709
6787
|
negotiator@0.6.3: {}
|
|
6710
6788
|
|
|
6711
6789
|
nitropack@2.13.1:
|
|
@@ -6811,14 +6889,6 @@ snapshots:
|
|
|
6811
6889
|
- supports-color
|
|
6812
6890
|
- uploadthing
|
|
6813
6891
|
|
|
6814
|
-
node-abi@3.87.0:
|
|
6815
|
-
dependencies:
|
|
6816
|
-
semver: 7.7.4
|
|
6817
|
-
optional: true
|
|
6818
|
-
|
|
6819
|
-
node-addon-api@6.1.0:
|
|
6820
|
-
optional: true
|
|
6821
|
-
|
|
6822
6892
|
node-addon-api@7.1.1: {}
|
|
6823
6893
|
|
|
6824
6894
|
node-fetch-native@1.6.7: {}
|
|
@@ -6841,6 +6911,8 @@ snapshots:
|
|
|
6841
6911
|
|
|
6842
6912
|
normalize-path@3.0.0: {}
|
|
6843
6913
|
|
|
6914
|
+
normalize-range@0.1.2: {}
|
|
6915
|
+
|
|
6844
6916
|
npm-run-path@5.3.0:
|
|
6845
6917
|
dependencies:
|
|
6846
6918
|
path-key: 4.0.0
|
|
@@ -6854,16 +6926,16 @@ snapshots:
|
|
|
6854
6926
|
dependencies:
|
|
6855
6927
|
boolbase: 1.0.0
|
|
6856
6928
|
|
|
6857
|
-
nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
6929
|
+
nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2):
|
|
6858
6930
|
dependencies:
|
|
6859
6931
|
'@dxup/nuxt': 0.3.2(magicast@0.5.2)
|
|
6860
|
-
'@nuxt/cli': 3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(
|
|
6861
|
-
'@nuxt/devtools': 3.2.3(vite@7.3.1(@types/node@20.19.
|
|
6932
|
+
'@nuxt/cli': 3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(magicast@0.5.2)
|
|
6933
|
+
'@nuxt/devtools': 3.2.3(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
|
|
6862
6934
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
6863
|
-
'@nuxt/nitro-server': 4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.
|
|
6935
|
+
'@nuxt/nitro-server': 4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)
|
|
6864
6936
|
'@nuxt/schema': 4.3.1
|
|
6865
6937
|
'@nuxt/telemetry': 2.7.0(@nuxt/kit@4.3.1(magicast@0.5.2))
|
|
6866
|
-
'@nuxt/vite-builder': 4.3.1(@types/node@20.19.
|
|
6938
|
+
'@nuxt/vite-builder': 4.3.1(@types/node@20.19.25)(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.25)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)
|
|
6867
6939
|
'@unhead/vue': 2.1.12(vue@3.5.30(typescript@5.9.3))
|
|
6868
6940
|
'@vue/shared': 3.5.30
|
|
6869
6941
|
c12: 3.3.3(magicast@0.5.2)
|
|
@@ -6915,7 +6987,7 @@ snapshots:
|
|
|
6915
6987
|
vue-router: 4.6.4(vue@3.5.30(typescript@5.9.3))
|
|
6916
6988
|
optionalDependencies:
|
|
6917
6989
|
'@parcel/watcher': 2.5.6
|
|
6918
|
-
'@types/node': 20.19.
|
|
6990
|
+
'@types/node': 20.19.25
|
|
6919
6991
|
transitivePeerDependencies:
|
|
6920
6992
|
- '@azure/app-configuration'
|
|
6921
6993
|
- '@azure/cosmos'
|
|
@@ -7208,25 +7280,24 @@ snapshots:
|
|
|
7208
7280
|
dependencies:
|
|
7209
7281
|
postcss: 8.5.8
|
|
7210
7282
|
|
|
7211
|
-
postcss-import@15.1.0(postcss@8.
|
|
7283
|
+
postcss-import@15.1.0(postcss@8.4.49):
|
|
7212
7284
|
dependencies:
|
|
7213
|
-
postcss: 8.
|
|
7285
|
+
postcss: 8.4.49
|
|
7214
7286
|
postcss-value-parser: 4.2.0
|
|
7215
7287
|
read-cache: 1.0.0
|
|
7216
7288
|
resolve: 1.22.11
|
|
7217
7289
|
|
|
7218
|
-
postcss-js@4.1.0(postcss@8.
|
|
7290
|
+
postcss-js@4.1.0(postcss@8.4.49):
|
|
7219
7291
|
dependencies:
|
|
7220
7292
|
camelcase-css: 2.0.1
|
|
7221
|
-
postcss: 8.
|
|
7293
|
+
postcss: 8.4.49
|
|
7222
7294
|
|
|
7223
|
-
postcss-load-config@
|
|
7295
|
+
postcss-load-config@4.0.2(postcss@8.4.49):
|
|
7224
7296
|
dependencies:
|
|
7225
7297
|
lilconfig: 3.1.3
|
|
7226
|
-
optionalDependencies:
|
|
7227
|
-
jiti: 1.21.7
|
|
7228
|
-
postcss: 8.5.8
|
|
7229
7298
|
yaml: 2.8.2
|
|
7299
|
+
optionalDependencies:
|
|
7300
|
+
postcss: 8.4.49
|
|
7230
7301
|
|
|
7231
7302
|
postcss-merge-longhand@7.0.5(postcss@8.5.8):
|
|
7232
7303
|
dependencies:
|
|
@@ -7267,9 +7338,9 @@ snapshots:
|
|
|
7267
7338
|
postcss: 8.5.8
|
|
7268
7339
|
postcss-selector-parser: 7.1.1
|
|
7269
7340
|
|
|
7270
|
-
postcss-nested@6.2.0(postcss@8.
|
|
7341
|
+
postcss-nested@6.2.0(postcss@8.4.49):
|
|
7271
7342
|
dependencies:
|
|
7272
|
-
postcss: 8.
|
|
7343
|
+
postcss: 8.4.49
|
|
7273
7344
|
postcss-selector-parser: 6.1.2
|
|
7274
7345
|
|
|
7275
7346
|
postcss-nesting@13.0.2(postcss@8.5.8):
|
|
@@ -7364,27 +7435,17 @@ snapshots:
|
|
|
7364
7435
|
|
|
7365
7436
|
postcss-value-parser@4.2.0: {}
|
|
7366
7437
|
|
|
7367
|
-
postcss@8.
|
|
7438
|
+
postcss@8.4.49:
|
|
7368
7439
|
dependencies:
|
|
7369
7440
|
nanoid: 3.3.11
|
|
7370
7441
|
picocolors: 1.1.1
|
|
7371
7442
|
source-map-js: 1.2.1
|
|
7372
7443
|
|
|
7373
|
-
|
|
7444
|
+
postcss@8.5.8:
|
|
7374
7445
|
dependencies:
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
minimist: 1.2.8
|
|
7379
|
-
mkdirp-classic: 0.5.3
|
|
7380
|
-
napi-build-utils: 2.0.0
|
|
7381
|
-
node-abi: 3.87.0
|
|
7382
|
-
pump: 3.0.4
|
|
7383
|
-
rc: 1.2.8
|
|
7384
|
-
simple-get: 4.0.1
|
|
7385
|
-
tar-fs: 2.1.4
|
|
7386
|
-
tunnel-agent: 0.6.0
|
|
7387
|
-
optional: true
|
|
7446
|
+
nanoid: 3.3.11
|
|
7447
|
+
picocolors: 1.1.1
|
|
7448
|
+
source-map-js: 1.2.1
|
|
7388
7449
|
|
|
7389
7450
|
pretty-bytes@7.1.0: {}
|
|
7390
7451
|
|
|
@@ -7392,12 +7453,6 @@ snapshots:
|
|
|
7392
7453
|
|
|
7393
7454
|
process@0.11.10: {}
|
|
7394
7455
|
|
|
7395
|
-
pump@3.0.4:
|
|
7396
|
-
dependencies:
|
|
7397
|
-
end-of-stream: 1.4.5
|
|
7398
|
-
once: 1.4.0
|
|
7399
|
-
optional: true
|
|
7400
|
-
|
|
7401
7456
|
quansync@0.2.11: {}
|
|
7402
7457
|
|
|
7403
7458
|
queue-microtask@1.2.3: {}
|
|
@@ -7420,14 +7475,6 @@ snapshots:
|
|
|
7420
7475
|
defu: 6.1.4
|
|
7421
7476
|
destr: 2.0.5
|
|
7422
7477
|
|
|
7423
|
-
rc@1.2.8:
|
|
7424
|
-
dependencies:
|
|
7425
|
-
deep-extend: 0.6.0
|
|
7426
|
-
ini: 1.3.8
|
|
7427
|
-
minimist: 1.2.8
|
|
7428
|
-
strip-json-comments: 2.0.1
|
|
7429
|
-
optional: true
|
|
7430
|
-
|
|
7431
7478
|
read-cache@1.0.0:
|
|
7432
7479
|
dependencies:
|
|
7433
7480
|
pify: 2.3.0
|
|
@@ -7442,13 +7489,6 @@ snapshots:
|
|
|
7442
7489
|
string_decoder: 1.1.1
|
|
7443
7490
|
util-deprecate: 1.0.2
|
|
7444
7491
|
|
|
7445
|
-
readable-stream@3.6.2:
|
|
7446
|
-
dependencies:
|
|
7447
|
-
inherits: 2.0.4
|
|
7448
|
-
string_decoder: 1.3.0
|
|
7449
|
-
util-deprecate: 1.0.2
|
|
7450
|
-
optional: true
|
|
7451
|
-
|
|
7452
7492
|
readable-stream@4.7.0:
|
|
7453
7493
|
dependencies:
|
|
7454
7494
|
abort-controller: 3.0.0
|
|
@@ -7607,20 +7647,36 @@ snapshots:
|
|
|
7607
7647
|
|
|
7608
7648
|
setprototypeof@1.2.0: {}
|
|
7609
7649
|
|
|
7610
|
-
sharp@0.
|
|
7650
|
+
sharp@0.34.5:
|
|
7611
7651
|
dependencies:
|
|
7612
|
-
|
|
7652
|
+
'@img/colour': 1.1.0
|
|
7613
7653
|
detect-libc: 2.1.2
|
|
7614
|
-
node-addon-api: 6.1.0
|
|
7615
|
-
prebuild-install: 7.1.3
|
|
7616
7654
|
semver: 7.7.4
|
|
7617
|
-
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
|
|
7621
|
-
-
|
|
7622
|
-
-
|
|
7623
|
-
-
|
|
7655
|
+
optionalDependencies:
|
|
7656
|
+
'@img/sharp-darwin-arm64': 0.34.5
|
|
7657
|
+
'@img/sharp-darwin-x64': 0.34.5
|
|
7658
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
7659
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
7660
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
7661
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
7662
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
7663
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
7664
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
7665
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
7666
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
7667
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
7668
|
+
'@img/sharp-linux-arm': 0.34.5
|
|
7669
|
+
'@img/sharp-linux-arm64': 0.34.5
|
|
7670
|
+
'@img/sharp-linux-ppc64': 0.34.5
|
|
7671
|
+
'@img/sharp-linux-riscv64': 0.34.5
|
|
7672
|
+
'@img/sharp-linux-s390x': 0.34.5
|
|
7673
|
+
'@img/sharp-linux-x64': 0.34.5
|
|
7674
|
+
'@img/sharp-linuxmusl-arm64': 0.34.5
|
|
7675
|
+
'@img/sharp-linuxmusl-x64': 0.34.5
|
|
7676
|
+
'@img/sharp-wasm32': 0.34.5
|
|
7677
|
+
'@img/sharp-win32-arm64': 0.34.5
|
|
7678
|
+
'@img/sharp-win32-ia32': 0.34.5
|
|
7679
|
+
'@img/sharp-win32-x64': 0.34.5
|
|
7624
7680
|
optional: true
|
|
7625
7681
|
|
|
7626
7682
|
shebang-command@2.0.0:
|
|
@@ -7633,16 +7689,6 @@ snapshots:
|
|
|
7633
7689
|
|
|
7634
7690
|
signal-exit@4.1.0: {}
|
|
7635
7691
|
|
|
7636
|
-
simple-concat@1.0.1:
|
|
7637
|
-
optional: true
|
|
7638
|
-
|
|
7639
|
-
simple-get@4.0.1:
|
|
7640
|
-
dependencies:
|
|
7641
|
-
decompress-response: 6.0.0
|
|
7642
|
-
once: 1.4.0
|
|
7643
|
-
simple-concat: 1.0.1
|
|
7644
|
-
optional: true
|
|
7645
|
-
|
|
7646
7692
|
simple-git@3.32.3:
|
|
7647
7693
|
dependencies:
|
|
7648
7694
|
'@kwsites/file-exists': 1.1.1
|
|
@@ -7651,11 +7697,6 @@ snapshots:
|
|
|
7651
7697
|
transitivePeerDependencies:
|
|
7652
7698
|
- supports-color
|
|
7653
7699
|
|
|
7654
|
-
simple-swizzle@0.2.4:
|
|
7655
|
-
dependencies:
|
|
7656
|
-
is-arrayish: 0.3.4
|
|
7657
|
-
optional: true
|
|
7658
|
-
|
|
7659
7700
|
sirv@3.0.2:
|
|
7660
7701
|
dependencies:
|
|
7661
7702
|
'@polka/url': 1.0.0-next.29
|
|
@@ -7728,9 +7769,6 @@ snapshots:
|
|
|
7728
7769
|
|
|
7729
7770
|
strip-final-newline@3.0.0: {}
|
|
7730
7771
|
|
|
7731
|
-
strip-json-comments@2.0.1:
|
|
7732
|
-
optional: true
|
|
7733
|
-
|
|
7734
7772
|
strip-literal@3.1.0:
|
|
7735
7773
|
dependencies:
|
|
7736
7774
|
js-tokens: 9.0.1
|
|
@@ -7761,17 +7799,6 @@ snapshots:
|
|
|
7761
7799
|
|
|
7762
7800
|
supports-preserve-symlinks-flag@1.0.0: {}
|
|
7763
7801
|
|
|
7764
|
-
svgo@3.3.3:
|
|
7765
|
-
dependencies:
|
|
7766
|
-
commander: 7.2.0
|
|
7767
|
-
css-select: 5.2.2
|
|
7768
|
-
css-tree: 2.3.1
|
|
7769
|
-
css-what: 6.2.2
|
|
7770
|
-
csso: 5.0.5
|
|
7771
|
-
picocolors: 1.1.1
|
|
7772
|
-
sax: 1.5.0
|
|
7773
|
-
optional: true
|
|
7774
|
-
|
|
7775
7802
|
svgo@4.0.1:
|
|
7776
7803
|
dependencies:
|
|
7777
7804
|
commander: 11.1.0
|
|
@@ -7786,7 +7813,7 @@ snapshots:
|
|
|
7786
7813
|
|
|
7787
7814
|
tagged-tag@1.0.0: {}
|
|
7788
7815
|
|
|
7789
|
-
tailwind-config-viewer@2.0.4(tailwindcss@3.4.
|
|
7816
|
+
tailwind-config-viewer@2.0.4(tailwindcss@3.4.17):
|
|
7790
7817
|
dependencies:
|
|
7791
7818
|
'@koa/router': 12.0.2
|
|
7792
7819
|
commander: 6.2.1
|
|
@@ -7796,13 +7823,13 @@ snapshots:
|
|
|
7796
7823
|
open: 7.4.2
|
|
7797
7824
|
portfinder: 1.0.38
|
|
7798
7825
|
replace-in-file: 6.3.5
|
|
7799
|
-
tailwindcss: 3.4.
|
|
7826
|
+
tailwindcss: 3.4.17
|
|
7800
7827
|
transitivePeerDependencies:
|
|
7801
7828
|
- supports-color
|
|
7802
7829
|
|
|
7803
|
-
tailwind-merge@2.6.
|
|
7830
|
+
tailwind-merge@2.6.0: {}
|
|
7804
7831
|
|
|
7805
|
-
tailwindcss@3.4.
|
|
7832
|
+
tailwindcss@3.4.17:
|
|
7806
7833
|
dependencies:
|
|
7807
7834
|
'@alloc/quick-lru': 5.2.0
|
|
7808
7835
|
arg: 5.0.2
|
|
@@ -7818,47 +7845,16 @@ snapshots:
|
|
|
7818
7845
|
normalize-path: 3.0.0
|
|
7819
7846
|
object-hash: 3.0.0
|
|
7820
7847
|
picocolors: 1.1.1
|
|
7821
|
-
postcss: 8.
|
|
7822
|
-
postcss-import: 15.1.0(postcss@8.
|
|
7823
|
-
postcss-js: 4.1.0(postcss@8.
|
|
7824
|
-
postcss-load-config:
|
|
7825
|
-
postcss-nested: 6.2.0(postcss@8.
|
|
7848
|
+
postcss: 8.4.49
|
|
7849
|
+
postcss-import: 15.1.0(postcss@8.4.49)
|
|
7850
|
+
postcss-js: 4.1.0(postcss@8.4.49)
|
|
7851
|
+
postcss-load-config: 4.0.2(postcss@8.4.49)
|
|
7852
|
+
postcss-nested: 6.2.0(postcss@8.4.49)
|
|
7826
7853
|
postcss-selector-parser: 6.1.2
|
|
7827
7854
|
resolve: 1.22.11
|
|
7828
7855
|
sucrase: 3.35.1
|
|
7829
7856
|
transitivePeerDependencies:
|
|
7830
|
-
-
|
|
7831
|
-
- yaml
|
|
7832
|
-
|
|
7833
|
-
tar-fs@2.1.4:
|
|
7834
|
-
dependencies:
|
|
7835
|
-
chownr: 1.1.4
|
|
7836
|
-
mkdirp-classic: 0.5.3
|
|
7837
|
-
pump: 3.0.4
|
|
7838
|
-
tar-stream: 2.2.0
|
|
7839
|
-
optional: true
|
|
7840
|
-
|
|
7841
|
-
tar-fs@3.1.2:
|
|
7842
|
-
dependencies:
|
|
7843
|
-
pump: 3.0.4
|
|
7844
|
-
tar-stream: 3.1.8
|
|
7845
|
-
optionalDependencies:
|
|
7846
|
-
bare-fs: 4.5.5
|
|
7847
|
-
bare-path: 3.0.0
|
|
7848
|
-
transitivePeerDependencies:
|
|
7849
|
-
- bare-abort-controller
|
|
7850
|
-
- bare-buffer
|
|
7851
|
-
- react-native-b4a
|
|
7852
|
-
optional: true
|
|
7853
|
-
|
|
7854
|
-
tar-stream@2.2.0:
|
|
7855
|
-
dependencies:
|
|
7856
|
-
bl: 4.1.0
|
|
7857
|
-
end-of-stream: 1.4.5
|
|
7858
|
-
fs-constants: 1.0.0
|
|
7859
|
-
inherits: 2.0.4
|
|
7860
|
-
readable-stream: 3.6.2
|
|
7861
|
-
optional: true
|
|
7857
|
+
- ts-node
|
|
7862
7858
|
|
|
7863
7859
|
tar-stream@3.1.8:
|
|
7864
7860
|
dependencies:
|
|
@@ -7933,11 +7929,6 @@ snapshots:
|
|
|
7933
7929
|
|
|
7934
7930
|
tsscmp@1.0.6: {}
|
|
7935
7931
|
|
|
7936
|
-
tunnel-agent@0.6.0:
|
|
7937
|
-
dependencies:
|
|
7938
|
-
safe-buffer: 5.2.1
|
|
7939
|
-
optional: true
|
|
7940
|
-
|
|
7941
7932
|
type-fest@5.4.4:
|
|
7942
7933
|
dependencies:
|
|
7943
7934
|
tagged-tag: 1.0.0
|
|
@@ -8089,23 +8080,23 @@ snapshots:
|
|
|
8089
8080
|
|
|
8090
8081
|
vary@1.1.2: {}
|
|
8091
8082
|
|
|
8092
|
-
vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@20.19.
|
|
8083
|
+
vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
8093
8084
|
dependencies:
|
|
8094
8085
|
birpc: 2.9.0
|
|
8095
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8096
|
-
vite-hot-client: 2.1.0(vite@7.3.1(@types/node@20.19.
|
|
8086
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8087
|
+
vite-hot-client: 2.1.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
8097
8088
|
|
|
8098
|
-
vite-hot-client@2.1.0(vite@7.3.1(@types/node@20.19.
|
|
8089
|
+
vite-hot-client@2.1.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
8099
8090
|
dependencies:
|
|
8100
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8091
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8101
8092
|
|
|
8102
|
-
vite-node@5.3.0(@types/node@20.19.
|
|
8093
|
+
vite-node@5.3.0(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2):
|
|
8103
8094
|
dependencies:
|
|
8104
8095
|
cac: 6.7.14
|
|
8105
8096
|
es-module-lexer: 2.0.0
|
|
8106
8097
|
obug: 2.1.1
|
|
8107
8098
|
pathe: 2.0.3
|
|
8108
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8099
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8109
8100
|
transitivePeerDependencies:
|
|
8110
8101
|
- '@types/node'
|
|
8111
8102
|
- jiti
|
|
@@ -8119,7 +8110,7 @@ snapshots:
|
|
|
8119
8110
|
- tsx
|
|
8120
8111
|
- yaml
|
|
8121
8112
|
|
|
8122
|
-
vite-plugin-checker@0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.
|
|
8113
|
+
vite-plugin-checker@0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
8123
8114
|
dependencies:
|
|
8124
8115
|
'@babel/code-frame': 7.29.0
|
|
8125
8116
|
chokidar: 4.0.3
|
|
@@ -8128,12 +8119,12 @@ snapshots:
|
|
|
8128
8119
|
picomatch: 4.0.3
|
|
8129
8120
|
tiny-invariant: 1.3.3
|
|
8130
8121
|
tinyglobby: 0.2.15
|
|
8131
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8122
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8132
8123
|
vscode-uri: 3.1.0
|
|
8133
8124
|
optionalDependencies:
|
|
8134
8125
|
typescript: 5.9.3
|
|
8135
8126
|
|
|
8136
|
-
vite-plugin-inspect@11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@20.19.
|
|
8127
|
+
vite-plugin-inspect@11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
8137
8128
|
dependencies:
|
|
8138
8129
|
ansis: 4.2.0
|
|
8139
8130
|
debug: 4.4.3
|
|
@@ -8143,24 +8134,24 @@ snapshots:
|
|
|
8143
8134
|
perfect-debounce: 2.1.0
|
|
8144
8135
|
sirv: 3.0.2
|
|
8145
8136
|
unplugin-utils: 0.3.1
|
|
8146
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8147
|
-
vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@20.19.
|
|
8137
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8138
|
+
vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
8148
8139
|
optionalDependencies:
|
|
8149
8140
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
8150
8141
|
transitivePeerDependencies:
|
|
8151
8142
|
- supports-color
|
|
8152
8143
|
|
|
8153
|
-
vite-plugin-vue-tracer@1.2.0(vite@7.3.1(@types/node@20.19.
|
|
8144
|
+
vite-plugin-vue-tracer@1.2.0(vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)):
|
|
8154
8145
|
dependencies:
|
|
8155
8146
|
estree-walker: 3.0.3
|
|
8156
8147
|
exsolve: 1.0.8
|
|
8157
8148
|
magic-string: 0.30.21
|
|
8158
8149
|
pathe: 2.0.3
|
|
8159
8150
|
source-map-js: 1.2.1
|
|
8160
|
-
vite: 7.3.1(@types/node@20.19.
|
|
8151
|
+
vite: 7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8161
8152
|
vue: 3.5.30(typescript@5.9.3)
|
|
8162
8153
|
|
|
8163
|
-
vite@7.3.1(@types/node@20.19.
|
|
8154
|
+
vite@7.3.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2):
|
|
8164
8155
|
dependencies:
|
|
8165
8156
|
esbuild: 0.27.3
|
|
8166
8157
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
@@ -8169,7 +8160,7 @@ snapshots:
|
|
|
8169
8160
|
rollup: 4.59.0
|
|
8170
8161
|
tinyglobby: 0.2.15
|
|
8171
8162
|
optionalDependencies:
|
|
8172
|
-
'@types/node': 20.19.
|
|
8163
|
+
'@types/node': 20.19.25
|
|
8173
8164
|
fsevents: 2.3.3
|
|
8174
8165
|
jiti: 2.6.1
|
|
8175
8166
|
lightningcss: 1.31.1
|