@jarwizz/create-jarshop 0.1.1 → 0.1.2
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/README.md +8 -0
- package/dist/generator.js +6 -3
- package/dist/generator.js.map +1 -1
- package/dist/template/CONTEXT.md +10 -0
- package/dist/template/README.md +20 -3
- package/dist/template/docker-compose.yml +5 -0
- package/dist/template/docs/smtp-smoke.md +37 -0
- package/dist/template/env.example.template +18 -0
- package/dist/template/gitignore.template +2 -0
- package/dist/template/package.json +13 -5
- package/dist/template/pnpm-lock.yaml +38 -7
- package/dist/template/src/dev-storefront.ts +58 -0
- package/dist/template/src/dev.ts +67 -4
- package/dist/template/src/email-smoke.ts +27 -0
- package/dist/template/src/environment.d.ts +6 -0
- package/dist/template/src/migrate.ts +16 -0
- package/dist/template/src/migrations/1786024108434-jarshop-checkout-attempt.ts +28 -0
- package/dist/template/src/migrations/1786024108435-jarshop-legal-and-confirmation.ts +60 -0
- package/dist/template/src/migrations/1786024108436-jarshop-order-email-outbox.ts +37 -0
- package/dist/template/src/migrations/1786030000000-jarshop-order-email-delivery-lease.ts +27 -0
- package/dist/template/src/plugins/jarshop-checkout/checkout-attempt.entity.ts +42 -0
- package/dist/template/src/plugins/jarshop-checkout/confirmation-token.entity.ts +31 -0
- package/dist/template/src/plugins/jarshop-checkout/confirmation.ts +26 -0
- package/dist/template/src/plugins/jarshop-checkout/dashboard/index.tsx +107 -0
- package/dist/template/src/plugins/jarshop-checkout/dashboard/order-email-delivery-status.ts +43 -0
- package/dist/template/src/plugins/jarshop-checkout/email-smoke-core.ts +56 -0
- package/dist/template/src/plugins/jarshop-checkout/index.ts +47 -0
- package/dist/template/src/plugins/jarshop-checkout/jarshop-checkout.plugin.ts +813 -0
- package/dist/template/src/plugins/jarshop-checkout/legal.entity.ts +39 -0
- package/dist/template/src/plugins/jarshop-checkout/order-consent.entity.ts +32 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-delivery-core.ts +337 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-delivery-status.ts +39 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-delivery.entity.ts +66 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-outbox.ts +108 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-transport.ts +35 -0
- package/dist/template/src/plugins/jarshop-checkout/order-email-worker.ts +281 -0
- package/dist/template/src/plugins/jarshop-checkout/shipping.test.ts +41 -0
- package/dist/template/src/plugins/jarshop-checkout/shipping.ts +162 -0
- package/dist/template/src/seed.ts +149 -0
- package/dist/template/src/vendure-config.ts +68 -5
- package/dist/template/static/email/templates/email-verification/body.hbs +4 -4
- package/dist/template/storefront/app/[locale]/[slug]/add-to-cart-form.tsx +44 -0
- package/dist/template/storefront/app/[locale]/[slug]/page.tsx +35 -26
- package/dist/template/storefront/app/[locale]/account/account-mutation-form.tsx +44 -0
- package/dist/template/storefront/app/[locale]/account/change-password-form.tsx +65 -0
- package/dist/template/storefront/app/[locale]/account/login/login-form.tsx +60 -0
- package/dist/template/storefront/app/[locale]/account/login/page.tsx +23 -0
- package/dist/template/storefront/app/[locale]/account/page.tsx +215 -0
- package/dist/template/storefront/app/[locale]/account/password-reset/callback/route.ts +33 -0
- package/dist/template/storefront/app/[locale]/account/password-reset/complete/page.tsx +27 -0
- package/dist/template/storefront/app/[locale]/account/password-reset/page.tsx +37 -0
- package/dist/template/storefront/app/[locale]/account/password-reset/password-reset-forms.tsx +99 -0
- package/dist/template/storefront/app/[locale]/account/register/page.tsx +23 -0
- package/dist/template/storefront/app/[locale]/account/register/register-form.tsx +67 -0
- package/dist/template/storefront/app/[locale]/account/verify/complete/route.ts +33 -0
- package/dist/template/storefront/app/[locale]/account/verify/page.tsx +41 -0
- package/dist/template/storefront/app/[locale]/account/verify/refresh-form.tsx +35 -0
- package/dist/template/storefront/app/[locale]/cart/page.tsx +78 -0
- package/dist/template/storefront/app/[locale]/checkout/checkout-form.tsx +112 -0
- package/dist/template/storefront/app/[locale]/checkout/page.tsx +44 -0
- package/dist/template/storefront/app/[locale]/checkout/success/page.tsx +23 -0
- package/dist/template/storefront/app/[locale]/layout.tsx +48 -0
- package/dist/template/storefront/app/[locale]/page.tsx +10 -11
- package/dist/template/storefront/app/globals.css +372 -4
- package/dist/template/storefront/app/layout.tsx +13 -0
- package/dist/template/storefront/eslint.config.mjs +1 -1
- package/dist/template/storefront/gitignore.template +1 -0
- package/dist/template/storefront/lib/account-security.test.ts +74 -0
- package/dist/template/storefront/lib/account-security.ts +81 -0
- package/dist/template/storefront/lib/account.ts +366 -0
- package/dist/template/storefront/lib/cart-contract.ts +52 -0
- package/dist/template/storefront/lib/cart.test.ts +30 -0
- package/dist/template/storefront/lib/cart.ts +130 -0
- package/dist/template/storefront/lib/checkout-contract.test.ts +20 -0
- package/dist/template/storefront/lib/checkout-contract.ts +16 -0
- package/dist/template/storefront/lib/checkout.ts +143 -0
- package/dist/template/storefront/lib/commerce-session.test.ts +77 -0
- package/dist/template/storefront/lib/commerce-session.ts +85 -0
- package/dist/template/storefront/lib/commerce.ts +122 -1
- package/dist/template/storefront/lib/confirmation-cookie.ts +9 -0
- package/dist/template/storefront/lib/confirmation.ts +47 -0
- package/dist/template/storefront/lib/form-values.test.ts +14 -0
- package/dist/template/storefront/lib/form-values.ts +7 -0
- package/dist/template/storefront/lib/i18n.test.ts +50 -0
- package/dist/template/storefront/lib/i18n.ts +44 -0
- package/dist/template/storefront/lib/password-reset-token.test.ts +31 -0
- package/dist/template/storefront/lib/password-reset-token.ts +17 -0
- package/dist/template/storefront/lib/valkey-rate-limit.ts +72 -0
- package/dist/template/storefront/messages/en.json +89 -0
- package/dist/template/storefront/messages/sk.json +89 -0
- package/dist/template/storefront/next.config.ts +3 -1
- package/dist/template/storefront/package.json +4 -1
- package/dist/template/storefront/pnpm-lock.yaml +756 -2
- package/dist/template/tsconfig.json +2 -1
- package/dist/template/turbo.json +1 -0
- package/dist/template/vite.config.mts +4 -1
- package/dist/template-manifest.json +1 -1
- package/dist/template.js +3 -0
- package/dist/template.js.map +1 -1
- package/package.json +1 -1
|
@@ -14,6 +14,12 @@ importers:
|
|
|
14
14
|
'@jarwizz/commerce-sdk':
|
|
15
15
|
specifier: 0.1.0
|
|
16
16
|
version: 0.1.0
|
|
17
|
+
'@swc/helpers':
|
|
18
|
+
specifier: 0.5.15
|
|
19
|
+
version: 0.5.15
|
|
20
|
+
'@valkey/valkey-glide':
|
|
21
|
+
specifier: 2.5.1
|
|
22
|
+
version: 2.5.1
|
|
17
23
|
next:
|
|
18
24
|
specifier: 16.2.12
|
|
19
25
|
version: 16.2.12(@babel/core@7.29.7(supports-color@7.2.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
@@ -45,6 +51,9 @@ importers:
|
|
|
45
51
|
typescript-eslint:
|
|
46
52
|
specifier: 8.65.0
|
|
47
53
|
version: 8.65.0(eslint@9.39.5(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
54
|
+
vitest:
|
|
55
|
+
specifier: 4.1.10
|
|
56
|
+
version: 4.1.10(@types/node@24.13.3)(vite@8.2.1(@types/node@24.13.3))
|
|
48
57
|
|
|
49
58
|
packages:
|
|
50
59
|
|
|
@@ -423,12 +432,144 @@ packages:
|
|
|
423
432
|
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
|
|
424
433
|
engines: {node: '>=12.4.0'}
|
|
425
434
|
|
|
435
|
+
'@oxc-project/types@0.143.0':
|
|
436
|
+
resolution: {integrity: sha512-u6JZdLBTLotrNC9Vd6vPssINdzcCzleKAH6EJKImQb7GtYvX5keN2dxkoK44stCc4tffE6QQRtZTXVSzsLUlWA==}
|
|
437
|
+
|
|
438
|
+
'@protobufjs/aspromise@1.1.2':
|
|
439
|
+
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
|
|
440
|
+
|
|
441
|
+
'@protobufjs/base64@1.1.2':
|
|
442
|
+
resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
|
|
443
|
+
|
|
444
|
+
'@protobufjs/codegen@2.0.5':
|
|
445
|
+
resolution: {integrity: sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==}
|
|
446
|
+
|
|
447
|
+
'@protobufjs/eventemitter@1.1.1':
|
|
448
|
+
resolution: {integrity: sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==}
|
|
449
|
+
|
|
450
|
+
'@protobufjs/fetch@1.1.1':
|
|
451
|
+
resolution: {integrity: sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==}
|
|
452
|
+
|
|
453
|
+
'@protobufjs/float@1.0.2':
|
|
454
|
+
resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
|
|
455
|
+
|
|
456
|
+
'@protobufjs/path@1.1.2':
|
|
457
|
+
resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
|
|
458
|
+
|
|
459
|
+
'@protobufjs/pool@1.1.0':
|
|
460
|
+
resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
|
|
461
|
+
|
|
462
|
+
'@protobufjs/utf8@1.1.2':
|
|
463
|
+
resolution: {integrity: sha512-b1UQwcEZ4yCnMCD8DAL1VlbvBJE9/IX4FTIp7BG1xYpf29SLazLSrqUkj4w7Y5y7cCVP6E5tcqqcI0xemPkHug==}
|
|
464
|
+
|
|
465
|
+
'@rolldown/binding-android-arm64@1.2.3':
|
|
466
|
+
resolution: {integrity: sha512-zrJtHDcaZJ1Fp7xf4hNl+7seH9Cn/N5TwLYkhgXREtBwAd/jaqW3uqeHxpDugJLVICWg4eW44kOQEGJ1r6jCGw==}
|
|
467
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
468
|
+
cpu: [arm64]
|
|
469
|
+
os: [android]
|
|
470
|
+
|
|
471
|
+
'@rolldown/binding-darwin-arm64@1.2.3':
|
|
472
|
+
resolution: {integrity: sha512-ieIiibVCp0tX7TLu2cafoNPv8wJyYi01ekXpbf8q2j7F4rGAhhXb/eQh7ge9DRBY78GwmRQtvjZDux7EDbA8kA==}
|
|
473
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
474
|
+
cpu: [arm64]
|
|
475
|
+
os: [darwin]
|
|
476
|
+
|
|
477
|
+
'@rolldown/binding-darwin-x64@1.2.3':
|
|
478
|
+
resolution: {integrity: sha512-Zh9tCon19eDXJoihx0rqKhMUlMYqzwj3aPsSuHmI4RWZh62dWUL+DJN4C5YQya5TcQBJU/Fe8+rY0jhXTQITqA==}
|
|
479
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
480
|
+
cpu: [x64]
|
|
481
|
+
os: [darwin]
|
|
482
|
+
|
|
483
|
+
'@rolldown/binding-freebsd-x64@1.2.3':
|
|
484
|
+
resolution: {integrity: sha512-nGbJWewA1wrXXZiQhjAT5rhibGfns5ZNkDVqxsO6zJ3f3YvpoDNNmGMSbbhLuXKjNScaBJVOAboztAWVespQMg==}
|
|
485
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
486
|
+
cpu: [x64]
|
|
487
|
+
os: [freebsd]
|
|
488
|
+
|
|
489
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.2.3':
|
|
490
|
+
resolution: {integrity: sha512-QNniJr5Kml0kDEB98jiDOJjXNroxIIi0IXIbdYzY26Xt1pVbeP62+KnoIZLwirOymX/0jDk/2gI/bNUv7A7OIw==}
|
|
491
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
492
|
+
cpu: [arm]
|
|
493
|
+
os: [linux]
|
|
494
|
+
|
|
495
|
+
'@rolldown/binding-linux-arm64-gnu@1.2.3':
|
|
496
|
+
resolution: {integrity: sha512-TkqEAcmmvH3I/q4114NB4RVt6241Dao48pF45uLcFGrwAaIn0iITgTAKP/dLjbN0R4buJjGb91+UHSoFmpgIWw==}
|
|
497
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
498
|
+
cpu: [arm64]
|
|
499
|
+
os: [linux]
|
|
500
|
+
libc: [glibc]
|
|
501
|
+
|
|
502
|
+
'@rolldown/binding-linux-arm64-musl@1.2.3':
|
|
503
|
+
resolution: {integrity: sha512-NHqjnxpsndf4MPymxteFAWHHfkTL8HjWh1KB7z23ofZ6QO2euONuxDXjat69dKZRALnGypg8k8SsK8vZJoXv1Q==}
|
|
504
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
505
|
+
cpu: [arm64]
|
|
506
|
+
os: [linux]
|
|
507
|
+
libc: [musl]
|
|
508
|
+
|
|
509
|
+
'@rolldown/binding-linux-ppc64-gnu@1.2.3':
|
|
510
|
+
resolution: {integrity: sha512-6tbrbwfz5GB9DQ4Jwo6hy9v+vR31xZlvzZ6n5Xut6Hhx5PvrA9q/HsK8KMaYQp063iqZGXwNvZtYNLD7EM/x0w==}
|
|
511
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
512
|
+
cpu: [ppc64]
|
|
513
|
+
os: [linux]
|
|
514
|
+
libc: [glibc]
|
|
515
|
+
|
|
516
|
+
'@rolldown/binding-linux-s390x-gnu@1.2.3':
|
|
517
|
+
resolution: {integrity: sha512-oyuXxXmoZHjXC917IAPFAAv4wWAa0cM9afk8nx1+9/jNNOX1uPf8yDA6p7G0RypOfw/X0PQt5IfoquY1um+zSg==}
|
|
518
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
519
|
+
cpu: [s390x]
|
|
520
|
+
os: [linux]
|
|
521
|
+
libc: [glibc]
|
|
522
|
+
|
|
523
|
+
'@rolldown/binding-linux-x64-gnu@1.2.3':
|
|
524
|
+
resolution: {integrity: sha512-TytMwF2KVGqP2tgd0I1OY0PAv78dZRAYcF5ssDzjM34SUXCED3uXvSd5+lHoC0bTD6eEdFz7LdQNCO1y0oVk9w==}
|
|
525
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
526
|
+
cpu: [x64]
|
|
527
|
+
os: [linux]
|
|
528
|
+
libc: [glibc]
|
|
529
|
+
|
|
530
|
+
'@rolldown/binding-linux-x64-musl@1.2.3':
|
|
531
|
+
resolution: {integrity: sha512-/E9m3qstrJFVPoULV25mVQblSNExY2+kBsYe4sy0Tn0yOOgJ8wZbZt3KnRbF/XeU2Gl1STKUQnDNTqhIE5MD4A==}
|
|
532
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
533
|
+
cpu: [x64]
|
|
534
|
+
os: [linux]
|
|
535
|
+
libc: [musl]
|
|
536
|
+
|
|
537
|
+
'@rolldown/binding-openharmony-arm64@1.2.3':
|
|
538
|
+
resolution: {integrity: sha512-Kr0OcsoQI816i6HOl3vFHpd1K0eZyh76zgfj4c1nTyaTsd5r2Mj1lwM4R90y/qaCfmTn9eHy0SKwi98eitRxug==}
|
|
539
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
540
|
+
cpu: [arm64]
|
|
541
|
+
os: [openharmony]
|
|
542
|
+
|
|
543
|
+
'@rolldown/binding-win32-arm64-msvc@1.2.3':
|
|
544
|
+
resolution: {integrity: sha512-hOtMwTqnME+/gJcH/PCZ0wn0zPUjiWOgkHpxbSJpfGKMezHltx1S7/k1SitzVa7Ww2cqrDDaFbZEhcJZO8o+Jw==}
|
|
545
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
546
|
+
cpu: [arm64]
|
|
547
|
+
os: [win32]
|
|
548
|
+
|
|
549
|
+
'@rolldown/binding-win32-x64-msvc@1.2.3':
|
|
550
|
+
resolution: {integrity: sha512-ekcqMMkI2PlhYnfzQnB/cEdYUVVJViWvoUyLrbzgDoi3Snfc1mVBwdnc306ufA5ejy8JSPjT2RlW1nQSjW7efg==}
|
|
551
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
552
|
+
cpu: [x64]
|
|
553
|
+
os: [win32]
|
|
554
|
+
|
|
555
|
+
'@rolldown/pluginutils@1.0.1':
|
|
556
|
+
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
|
|
557
|
+
|
|
426
558
|
'@rtsao/scc@1.1.0':
|
|
427
559
|
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
|
|
428
560
|
|
|
561
|
+
'@standard-schema/spec@1.1.0':
|
|
562
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
563
|
+
|
|
429
564
|
'@swc/helpers@0.5.15':
|
|
430
565
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
431
566
|
|
|
567
|
+
'@types/chai@5.2.3':
|
|
568
|
+
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
|
|
569
|
+
|
|
570
|
+
'@types/deep-eql@4.0.2':
|
|
571
|
+
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
572
|
+
|
|
432
573
|
'@types/estree@1.0.9':
|
|
433
574
|
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
434
575
|
|
|
@@ -508,6 +649,73 @@ packages:
|
|
|
508
649
|
resolution: {integrity: sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==}
|
|
509
650
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
510
651
|
|
|
652
|
+
'@valkey/valkey-glide-darwin-arm64@2.5.1':
|
|
653
|
+
resolution: {integrity: sha512-DC6T0oYkyFnVIMABnmdtB2ZViJXMNMT8VtPQi4dniLBMbQJVS0BFO735bzDLkONZqnOf4lSRQMk+UYhUSE2n8Q==}
|
|
654
|
+
cpu: [arm64]
|
|
655
|
+
os: [darwin]
|
|
656
|
+
|
|
657
|
+
'@valkey/valkey-glide-darwin-x64@2.5.1':
|
|
658
|
+
resolution: {integrity: sha512-3XNRg2gwHpDGfpLm7og4cBCR9vvldd3z1OgqK4EBB75XSkx9gFXgcmIR8JYHiz9pnjv4FkeTCU6/WIPDCW7iTw==}
|
|
659
|
+
cpu: [x64]
|
|
660
|
+
os: [darwin]
|
|
661
|
+
|
|
662
|
+
'@valkey/valkey-glide-linux-arm64-gnu@2.5.1':
|
|
663
|
+
resolution: {integrity: sha512-D3AnYqMefXaaZJLPa4Q5A506On0/zg2ikI+YKWQsVXSgegf+YRXMrjfYqXa+LQD8s8jMMlZB/FAmSr4g+iv3CQ==}
|
|
664
|
+
cpu: [arm64]
|
|
665
|
+
os: [linux]
|
|
666
|
+
libc: [glibc]
|
|
667
|
+
|
|
668
|
+
'@valkey/valkey-glide-linux-arm64-musl@2.5.1':
|
|
669
|
+
resolution: {integrity: sha512-LIzxQhWhoPPIbYAy86moO1RA+SyFkNTxDPfR67MnGIZ7eaiFG9dfPfSdLC/LUN53D+/tbtaQYeyFxK3mNr3lcQ==}
|
|
670
|
+
cpu: [arm64]
|
|
671
|
+
os: [linux]
|
|
672
|
+
libc: [musl]
|
|
673
|
+
|
|
674
|
+
'@valkey/valkey-glide-linux-x64-gnu@2.5.1':
|
|
675
|
+
resolution: {integrity: sha512-VUXP852lmBp09WSG1/Yd9SFoATUW+MRRVaXhFabQkRlHm/7sm/0X9K2xyU5j41OeoHYK6Zne7YyGIyE1zgkV4Q==}
|
|
676
|
+
cpu: [x64]
|
|
677
|
+
os: [linux]
|
|
678
|
+
libc: [glibc]
|
|
679
|
+
|
|
680
|
+
'@valkey/valkey-glide-linux-x64-musl@2.5.1':
|
|
681
|
+
resolution: {integrity: sha512-KVRvCMBEFiyOkxgOy6KDC3M4QmpSOnRZa39mkOx/nZwP/9fFzuJ3g0RTGVcLQ75RqRSexqitE4MuG8IpUKjn5w==}
|
|
682
|
+
cpu: [x64]
|
|
683
|
+
os: [linux]
|
|
684
|
+
libc: [musl]
|
|
685
|
+
|
|
686
|
+
'@valkey/valkey-glide@2.5.1':
|
|
687
|
+
resolution: {integrity: sha512-vtYyMJ2L42RH5CgBNtG2ffupNxu8c6KTzWvhXsUI2zChIFJQwUcuHuEdqXeOjTJZ9XfWs1E4w1TMiwnZSqGlkw==}
|
|
688
|
+
engines: {node: '>=16'}
|
|
689
|
+
|
|
690
|
+
'@vitest/expect@4.1.10':
|
|
691
|
+
resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==}
|
|
692
|
+
|
|
693
|
+
'@vitest/mocker@4.1.10':
|
|
694
|
+
resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==}
|
|
695
|
+
peerDependencies:
|
|
696
|
+
msw: ^2.4.9
|
|
697
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
698
|
+
peerDependenciesMeta:
|
|
699
|
+
msw:
|
|
700
|
+
optional: true
|
|
701
|
+
vite:
|
|
702
|
+
optional: true
|
|
703
|
+
|
|
704
|
+
'@vitest/pretty-format@4.1.10':
|
|
705
|
+
resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==}
|
|
706
|
+
|
|
707
|
+
'@vitest/runner@4.1.10':
|
|
708
|
+
resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==}
|
|
709
|
+
|
|
710
|
+
'@vitest/snapshot@4.1.10':
|
|
711
|
+
resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==}
|
|
712
|
+
|
|
713
|
+
'@vitest/spy@4.1.10':
|
|
714
|
+
resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==}
|
|
715
|
+
|
|
716
|
+
'@vitest/utils@4.1.10':
|
|
717
|
+
resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==}
|
|
718
|
+
|
|
511
719
|
acorn-jsx@5.3.2:
|
|
512
720
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
513
721
|
peerDependencies:
|
|
@@ -564,6 +772,10 @@ packages:
|
|
|
564
772
|
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
|
|
565
773
|
engines: {node: '>= 0.4'}
|
|
566
774
|
|
|
775
|
+
assertion-error@2.0.1:
|
|
776
|
+
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
|
|
777
|
+
engines: {node: '>=12'}
|
|
778
|
+
|
|
567
779
|
ast-types-flow@0.0.8:
|
|
568
780
|
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
|
|
569
781
|
|
|
@@ -630,6 +842,10 @@ packages:
|
|
|
630
842
|
caniuse-lite@1.0.30001806:
|
|
631
843
|
resolution: {integrity: sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==}
|
|
632
844
|
|
|
845
|
+
chai@6.2.2:
|
|
846
|
+
resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
|
|
847
|
+
engines: {node: '>=18'}
|
|
848
|
+
|
|
633
849
|
chalk@4.1.2:
|
|
634
850
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
635
851
|
engines: {node: '>=10'}
|
|
@@ -742,6 +958,9 @@ packages:
|
|
|
742
958
|
resolution: {integrity: sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==}
|
|
743
959
|
engines: {node: '>= 0.4'}
|
|
744
960
|
|
|
961
|
+
es-module-lexer@2.3.1:
|
|
962
|
+
resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==}
|
|
963
|
+
|
|
745
964
|
es-object-atoms@1.1.2:
|
|
746
965
|
resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
|
|
747
966
|
engines: {node: '>= 0.4'}
|
|
@@ -882,10 +1101,17 @@ packages:
|
|
|
882
1101
|
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
883
1102
|
engines: {node: '>=4.0'}
|
|
884
1103
|
|
|
1104
|
+
estree-walker@3.0.3:
|
|
1105
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
1106
|
+
|
|
885
1107
|
esutils@2.0.3:
|
|
886
1108
|
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
887
1109
|
engines: {node: '>=0.10.0'}
|
|
888
1110
|
|
|
1111
|
+
expect-type@1.4.0:
|
|
1112
|
+
resolution: {integrity: sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==}
|
|
1113
|
+
engines: {node: '>=12.0.0'}
|
|
1114
|
+
|
|
889
1115
|
fast-deep-equal@3.1.3:
|
|
890
1116
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
891
1117
|
|
|
@@ -934,6 +1160,11 @@ packages:
|
|
|
934
1160
|
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
|
|
935
1161
|
engines: {node: '>= 0.4'}
|
|
936
1162
|
|
|
1163
|
+
fsevents@2.3.3:
|
|
1164
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1165
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1166
|
+
os: [darwin]
|
|
1167
|
+
|
|
937
1168
|
function-bind@1.1.2:
|
|
938
1169
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
939
1170
|
|
|
@@ -1212,6 +1443,80 @@ packages:
|
|
|
1212
1443
|
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1213
1444
|
engines: {node: '>= 0.8.0'}
|
|
1214
1445
|
|
|
1446
|
+
lightningcss-android-arm64@1.33.0:
|
|
1447
|
+
resolution: {integrity: sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==}
|
|
1448
|
+
engines: {node: '>= 12.0.0'}
|
|
1449
|
+
cpu: [arm64]
|
|
1450
|
+
os: [android]
|
|
1451
|
+
|
|
1452
|
+
lightningcss-darwin-arm64@1.33.0:
|
|
1453
|
+
resolution: {integrity: sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==}
|
|
1454
|
+
engines: {node: '>= 12.0.0'}
|
|
1455
|
+
cpu: [arm64]
|
|
1456
|
+
os: [darwin]
|
|
1457
|
+
|
|
1458
|
+
lightningcss-darwin-x64@1.33.0:
|
|
1459
|
+
resolution: {integrity: sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==}
|
|
1460
|
+
engines: {node: '>= 12.0.0'}
|
|
1461
|
+
cpu: [x64]
|
|
1462
|
+
os: [darwin]
|
|
1463
|
+
|
|
1464
|
+
lightningcss-freebsd-x64@1.33.0:
|
|
1465
|
+
resolution: {integrity: sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==}
|
|
1466
|
+
engines: {node: '>= 12.0.0'}
|
|
1467
|
+
cpu: [x64]
|
|
1468
|
+
os: [freebsd]
|
|
1469
|
+
|
|
1470
|
+
lightningcss-linux-arm-gnueabihf@1.33.0:
|
|
1471
|
+
resolution: {integrity: sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==}
|
|
1472
|
+
engines: {node: '>= 12.0.0'}
|
|
1473
|
+
cpu: [arm]
|
|
1474
|
+
os: [linux]
|
|
1475
|
+
|
|
1476
|
+
lightningcss-linux-arm64-gnu@1.33.0:
|
|
1477
|
+
resolution: {integrity: sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==}
|
|
1478
|
+
engines: {node: '>= 12.0.0'}
|
|
1479
|
+
cpu: [arm64]
|
|
1480
|
+
os: [linux]
|
|
1481
|
+
libc: [glibc]
|
|
1482
|
+
|
|
1483
|
+
lightningcss-linux-arm64-musl@1.33.0:
|
|
1484
|
+
resolution: {integrity: sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==}
|
|
1485
|
+
engines: {node: '>= 12.0.0'}
|
|
1486
|
+
cpu: [arm64]
|
|
1487
|
+
os: [linux]
|
|
1488
|
+
libc: [musl]
|
|
1489
|
+
|
|
1490
|
+
lightningcss-linux-x64-gnu@1.33.0:
|
|
1491
|
+
resolution: {integrity: sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==}
|
|
1492
|
+
engines: {node: '>= 12.0.0'}
|
|
1493
|
+
cpu: [x64]
|
|
1494
|
+
os: [linux]
|
|
1495
|
+
libc: [glibc]
|
|
1496
|
+
|
|
1497
|
+
lightningcss-linux-x64-musl@1.33.0:
|
|
1498
|
+
resolution: {integrity: sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==}
|
|
1499
|
+
engines: {node: '>= 12.0.0'}
|
|
1500
|
+
cpu: [x64]
|
|
1501
|
+
os: [linux]
|
|
1502
|
+
libc: [musl]
|
|
1503
|
+
|
|
1504
|
+
lightningcss-win32-arm64-msvc@1.33.0:
|
|
1505
|
+
resolution: {integrity: sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==}
|
|
1506
|
+
engines: {node: '>= 12.0.0'}
|
|
1507
|
+
cpu: [arm64]
|
|
1508
|
+
os: [win32]
|
|
1509
|
+
|
|
1510
|
+
lightningcss-win32-x64-msvc@1.33.0:
|
|
1511
|
+
resolution: {integrity: sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==}
|
|
1512
|
+
engines: {node: '>= 12.0.0'}
|
|
1513
|
+
cpu: [x64]
|
|
1514
|
+
os: [win32]
|
|
1515
|
+
|
|
1516
|
+
lightningcss@1.33.0:
|
|
1517
|
+
resolution: {integrity: sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==}
|
|
1518
|
+
engines: {node: '>= 12.0.0'}
|
|
1519
|
+
|
|
1215
1520
|
locate-path@6.0.0:
|
|
1216
1521
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1217
1522
|
engines: {node: '>=10'}
|
|
@@ -1219,6 +1524,9 @@ packages:
|
|
|
1219
1524
|
lodash.merge@4.6.2:
|
|
1220
1525
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1221
1526
|
|
|
1527
|
+
long@5.3.2:
|
|
1528
|
+
resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
|
|
1529
|
+
|
|
1222
1530
|
loose-envify@1.4.0:
|
|
1223
1531
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1224
1532
|
hasBin: true
|
|
@@ -1226,6 +1534,9 @@ packages:
|
|
|
1226
1534
|
lru-cache@5.1.1:
|
|
1227
1535
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1228
1536
|
|
|
1537
|
+
magic-string@0.30.21:
|
|
1538
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1539
|
+
|
|
1229
1540
|
math-intrinsics@1.1.0:
|
|
1230
1541
|
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1231
1542
|
engines: {node: '>= 0.4'}
|
|
@@ -1320,6 +1631,10 @@ packages:
|
|
|
1320
1631
|
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
|
|
1321
1632
|
engines: {node: '>= 0.4'}
|
|
1322
1633
|
|
|
1634
|
+
obug@2.1.4:
|
|
1635
|
+
resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
|
|
1636
|
+
engines: {node: '>=12.20.0'}
|
|
1637
|
+
|
|
1323
1638
|
optionator@0.9.4:
|
|
1324
1639
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1325
1640
|
engines: {node: '>= 0.8.0'}
|
|
@@ -1351,6 +1666,9 @@ packages:
|
|
|
1351
1666
|
path-parse@1.0.7:
|
|
1352
1667
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1353
1668
|
|
|
1669
|
+
pathe@2.0.3:
|
|
1670
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1671
|
+
|
|
1354
1672
|
picocolors@1.1.1:
|
|
1355
1673
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1356
1674
|
|
|
@@ -1370,6 +1688,10 @@ packages:
|
|
|
1370
1688
|
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
1371
1689
|
engines: {node: ^10 || ^12 || >=14}
|
|
1372
1690
|
|
|
1691
|
+
postcss@8.5.26:
|
|
1692
|
+
resolution: {integrity: sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==}
|
|
1693
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1694
|
+
|
|
1373
1695
|
prelude-ls@1.2.1:
|
|
1374
1696
|
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1375
1697
|
engines: {node: '>= 0.8.0'}
|
|
@@ -1377,6 +1699,10 @@ packages:
|
|
|
1377
1699
|
prop-types@15.8.1:
|
|
1378
1700
|
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
1379
1701
|
|
|
1702
|
+
protobufjs@7.6.5:
|
|
1703
|
+
resolution: {integrity: sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw==}
|
|
1704
|
+
engines: {node: '>=12.0.0'}
|
|
1705
|
+
|
|
1380
1706
|
punycode@2.3.1:
|
|
1381
1707
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1382
1708
|
engines: {node: '>=6'}
|
|
@@ -1420,6 +1746,11 @@ packages:
|
|
|
1420
1746
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
1421
1747
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
1422
1748
|
|
|
1749
|
+
rolldown@1.2.3:
|
|
1750
|
+
resolution: {integrity: sha512-rn9wpmxplLf7NLNyCk9FyWh3FM43DbY8jOzCdEPzH7uflhTftRbCEpqi6Ly2osgoU8OwObtmavMbWLaWy4LX7A==}
|
|
1751
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1752
|
+
hasBin: true
|
|
1753
|
+
|
|
1423
1754
|
run-parallel@1.2.0:
|
|
1424
1755
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
1425
1756
|
|
|
@@ -1487,6 +1818,9 @@ packages:
|
|
|
1487
1818
|
resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==}
|
|
1488
1819
|
engines: {node: '>= 0.4'}
|
|
1489
1820
|
|
|
1821
|
+
siginfo@2.0.0:
|
|
1822
|
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
|
|
1823
|
+
|
|
1490
1824
|
source-map-js@1.2.1:
|
|
1491
1825
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1492
1826
|
engines: {node: '>=0.10.0'}
|
|
@@ -1494,6 +1828,12 @@ packages:
|
|
|
1494
1828
|
stable-hash@0.0.4:
|
|
1495
1829
|
resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
|
|
1496
1830
|
|
|
1831
|
+
stackback@0.0.2:
|
|
1832
|
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
1833
|
+
|
|
1834
|
+
std-env@4.2.0:
|
|
1835
|
+
resolution: {integrity: sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==}
|
|
1836
|
+
|
|
1497
1837
|
stop-iteration-iterator@1.1.0:
|
|
1498
1838
|
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
|
|
1499
1839
|
engines: {node: '>= 0.4'}
|
|
@@ -1554,10 +1894,21 @@ packages:
|
|
|
1554
1894
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
1555
1895
|
engines: {node: '>=6'}
|
|
1556
1896
|
|
|
1897
|
+
tinybench@2.9.0:
|
|
1898
|
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
|
|
1899
|
+
|
|
1900
|
+
tinyexec@1.3.0:
|
|
1901
|
+
resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==}
|
|
1902
|
+
engines: {node: '>=18'}
|
|
1903
|
+
|
|
1557
1904
|
tinyglobby@0.2.17:
|
|
1558
1905
|
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
|
1559
1906
|
engines: {node: '>=12.0.0'}
|
|
1560
1907
|
|
|
1908
|
+
tinyrainbow@3.1.1:
|
|
1909
|
+
resolution: {integrity: sha512-yau8yJdTt989Mm0Bd/236QnzEiPf2xLLTqUZRUJOo/3CB078LSwzei343DgtJVmfJKJE3TMINY1u42SQsP6mXw==}
|
|
1910
|
+
engines: {node: '>=14.0.0'}
|
|
1911
|
+
|
|
1561
1912
|
to-regex-range@5.0.1:
|
|
1562
1913
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1563
1914
|
engines: {node: '>=8.0'}
|
|
@@ -1622,6 +1973,90 @@ packages:
|
|
|
1622
1973
|
uri-js@4.4.1:
|
|
1623
1974
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1624
1975
|
|
|
1976
|
+
vite@8.2.1:
|
|
1977
|
+
resolution: {integrity: sha512-EU/eS7BH3XROHh2YnBefjM6DBKA6ZeMZEYQbj7NLWg5wHYlhB8B/Mayd5XsgWq+NFYccDOTemRpdETWR6Ka/lw==}
|
|
1978
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1979
|
+
hasBin: true
|
|
1980
|
+
peerDependencies:
|
|
1981
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
1982
|
+
'@vitejs/devtools': ^0.4.0
|
|
1983
|
+
esbuild: ^0.27.0 || ^0.28.0
|
|
1984
|
+
jiti: '>=1.21.0'
|
|
1985
|
+
less: ^4.0.0
|
|
1986
|
+
sass: ^1.70.0
|
|
1987
|
+
sass-embedded: ^1.70.0
|
|
1988
|
+
stylus: '>=0.54.8'
|
|
1989
|
+
sugarss: ^5.0.0
|
|
1990
|
+
terser: ^5.16.0
|
|
1991
|
+
tsx: ^4.8.1
|
|
1992
|
+
yaml: ^2.4.2
|
|
1993
|
+
peerDependenciesMeta:
|
|
1994
|
+
'@types/node':
|
|
1995
|
+
optional: true
|
|
1996
|
+
'@vitejs/devtools':
|
|
1997
|
+
optional: true
|
|
1998
|
+
esbuild:
|
|
1999
|
+
optional: true
|
|
2000
|
+
jiti:
|
|
2001
|
+
optional: true
|
|
2002
|
+
less:
|
|
2003
|
+
optional: true
|
|
2004
|
+
sass:
|
|
2005
|
+
optional: true
|
|
2006
|
+
sass-embedded:
|
|
2007
|
+
optional: true
|
|
2008
|
+
stylus:
|
|
2009
|
+
optional: true
|
|
2010
|
+
sugarss:
|
|
2011
|
+
optional: true
|
|
2012
|
+
terser:
|
|
2013
|
+
optional: true
|
|
2014
|
+
tsx:
|
|
2015
|
+
optional: true
|
|
2016
|
+
yaml:
|
|
2017
|
+
optional: true
|
|
2018
|
+
|
|
2019
|
+
vitest@4.1.10:
|
|
2020
|
+
resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==}
|
|
2021
|
+
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
|
|
2022
|
+
hasBin: true
|
|
2023
|
+
peerDependencies:
|
|
2024
|
+
'@edge-runtime/vm': '*'
|
|
2025
|
+
'@opentelemetry/api': ^1.9.0
|
|
2026
|
+
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
|
|
2027
|
+
'@vitest/browser-playwright': 4.1.10
|
|
2028
|
+
'@vitest/browser-preview': 4.1.10
|
|
2029
|
+
'@vitest/browser-webdriverio': 4.1.10
|
|
2030
|
+
'@vitest/coverage-istanbul': 4.1.10
|
|
2031
|
+
'@vitest/coverage-v8': 4.1.10
|
|
2032
|
+
'@vitest/ui': 4.1.10
|
|
2033
|
+
happy-dom: '*'
|
|
2034
|
+
jsdom: '*'
|
|
2035
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
2036
|
+
peerDependenciesMeta:
|
|
2037
|
+
'@edge-runtime/vm':
|
|
2038
|
+
optional: true
|
|
2039
|
+
'@opentelemetry/api':
|
|
2040
|
+
optional: true
|
|
2041
|
+
'@types/node':
|
|
2042
|
+
optional: true
|
|
2043
|
+
'@vitest/browser-playwright':
|
|
2044
|
+
optional: true
|
|
2045
|
+
'@vitest/browser-preview':
|
|
2046
|
+
optional: true
|
|
2047
|
+
'@vitest/browser-webdriverio':
|
|
2048
|
+
optional: true
|
|
2049
|
+
'@vitest/coverage-istanbul':
|
|
2050
|
+
optional: true
|
|
2051
|
+
'@vitest/coverage-v8':
|
|
2052
|
+
optional: true
|
|
2053
|
+
'@vitest/ui':
|
|
2054
|
+
optional: true
|
|
2055
|
+
happy-dom:
|
|
2056
|
+
optional: true
|
|
2057
|
+
jsdom:
|
|
2058
|
+
optional: true
|
|
2059
|
+
|
|
1625
2060
|
which-boxed-primitive@1.1.1:
|
|
1626
2061
|
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
|
|
1627
2062
|
engines: {node: '>= 0.4'}
|
|
@@ -1643,6 +2078,11 @@ packages:
|
|
|
1643
2078
|
engines: {node: '>= 8'}
|
|
1644
2079
|
hasBin: true
|
|
1645
2080
|
|
|
2081
|
+
why-is-node-running@2.3.0:
|
|
2082
|
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
|
|
2083
|
+
engines: {node: '>=8'}
|
|
2084
|
+
hasBin: true
|
|
2085
|
+
|
|
1646
2086
|
word-wrap@1.2.5:
|
|
1647
2087
|
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1648
2088
|
engines: {node: '>=0.10.0'}
|
|
@@ -1994,12 +2434,87 @@ snapshots:
|
|
|
1994
2434
|
|
|
1995
2435
|
'@nolyfill/is-core-module@1.0.39': {}
|
|
1996
2436
|
|
|
2437
|
+
'@oxc-project/types@0.143.0': {}
|
|
2438
|
+
|
|
2439
|
+
'@protobufjs/aspromise@1.1.2': {}
|
|
2440
|
+
|
|
2441
|
+
'@protobufjs/base64@1.1.2': {}
|
|
2442
|
+
|
|
2443
|
+
'@protobufjs/codegen@2.0.5': {}
|
|
2444
|
+
|
|
2445
|
+
'@protobufjs/eventemitter@1.1.1': {}
|
|
2446
|
+
|
|
2447
|
+
'@protobufjs/fetch@1.1.1':
|
|
2448
|
+
dependencies:
|
|
2449
|
+
'@protobufjs/aspromise': 1.1.2
|
|
2450
|
+
|
|
2451
|
+
'@protobufjs/float@1.0.2': {}
|
|
2452
|
+
|
|
2453
|
+
'@protobufjs/path@1.1.2': {}
|
|
2454
|
+
|
|
2455
|
+
'@protobufjs/pool@1.1.0': {}
|
|
2456
|
+
|
|
2457
|
+
'@protobufjs/utf8@1.1.2': {}
|
|
2458
|
+
|
|
2459
|
+
'@rolldown/binding-android-arm64@1.2.3':
|
|
2460
|
+
optional: true
|
|
2461
|
+
|
|
2462
|
+
'@rolldown/binding-darwin-arm64@1.2.3':
|
|
2463
|
+
optional: true
|
|
2464
|
+
|
|
2465
|
+
'@rolldown/binding-darwin-x64@1.2.3':
|
|
2466
|
+
optional: true
|
|
2467
|
+
|
|
2468
|
+
'@rolldown/binding-freebsd-x64@1.2.3':
|
|
2469
|
+
optional: true
|
|
2470
|
+
|
|
2471
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.2.3':
|
|
2472
|
+
optional: true
|
|
2473
|
+
|
|
2474
|
+
'@rolldown/binding-linux-arm64-gnu@1.2.3':
|
|
2475
|
+
optional: true
|
|
2476
|
+
|
|
2477
|
+
'@rolldown/binding-linux-arm64-musl@1.2.3':
|
|
2478
|
+
optional: true
|
|
2479
|
+
|
|
2480
|
+
'@rolldown/binding-linux-ppc64-gnu@1.2.3':
|
|
2481
|
+
optional: true
|
|
2482
|
+
|
|
2483
|
+
'@rolldown/binding-linux-s390x-gnu@1.2.3':
|
|
2484
|
+
optional: true
|
|
2485
|
+
|
|
2486
|
+
'@rolldown/binding-linux-x64-gnu@1.2.3':
|
|
2487
|
+
optional: true
|
|
2488
|
+
|
|
2489
|
+
'@rolldown/binding-linux-x64-musl@1.2.3':
|
|
2490
|
+
optional: true
|
|
2491
|
+
|
|
2492
|
+
'@rolldown/binding-openharmony-arm64@1.2.3':
|
|
2493
|
+
optional: true
|
|
2494
|
+
|
|
2495
|
+
'@rolldown/binding-win32-arm64-msvc@1.2.3':
|
|
2496
|
+
optional: true
|
|
2497
|
+
|
|
2498
|
+
'@rolldown/binding-win32-x64-msvc@1.2.3':
|
|
2499
|
+
optional: true
|
|
2500
|
+
|
|
2501
|
+
'@rolldown/pluginutils@1.0.1': {}
|
|
2502
|
+
|
|
1997
2503
|
'@rtsao/scc@1.1.0': {}
|
|
1998
2504
|
|
|
2505
|
+
'@standard-schema/spec@1.1.0': {}
|
|
2506
|
+
|
|
1999
2507
|
'@swc/helpers@0.5.15':
|
|
2000
2508
|
dependencies:
|
|
2001
2509
|
tslib: 2.8.1
|
|
2002
2510
|
|
|
2511
|
+
'@types/chai@5.2.3':
|
|
2512
|
+
dependencies:
|
|
2513
|
+
'@types/deep-eql': 4.0.2
|
|
2514
|
+
assertion-error: 2.0.1
|
|
2515
|
+
|
|
2516
|
+
'@types/deep-eql@4.0.2': {}
|
|
2517
|
+
|
|
2003
2518
|
'@types/estree@1.0.9': {}
|
|
2004
2519
|
|
|
2005
2520
|
'@types/json-schema@7.0.15': {}
|
|
@@ -2109,6 +2624,77 @@ snapshots:
|
|
|
2109
2624
|
'@typescript-eslint/types': 8.65.0
|
|
2110
2625
|
eslint-visitor-keys: 5.0.1
|
|
2111
2626
|
|
|
2627
|
+
'@valkey/valkey-glide-darwin-arm64@2.5.1':
|
|
2628
|
+
optional: true
|
|
2629
|
+
|
|
2630
|
+
'@valkey/valkey-glide-darwin-x64@2.5.1':
|
|
2631
|
+
optional: true
|
|
2632
|
+
|
|
2633
|
+
'@valkey/valkey-glide-linux-arm64-gnu@2.5.1':
|
|
2634
|
+
optional: true
|
|
2635
|
+
|
|
2636
|
+
'@valkey/valkey-glide-linux-arm64-musl@2.5.1':
|
|
2637
|
+
optional: true
|
|
2638
|
+
|
|
2639
|
+
'@valkey/valkey-glide-linux-x64-gnu@2.5.1':
|
|
2640
|
+
optional: true
|
|
2641
|
+
|
|
2642
|
+
'@valkey/valkey-glide-linux-x64-musl@2.5.1':
|
|
2643
|
+
optional: true
|
|
2644
|
+
|
|
2645
|
+
'@valkey/valkey-glide@2.5.1':
|
|
2646
|
+
dependencies:
|
|
2647
|
+
long: 5.3.2
|
|
2648
|
+
protobufjs: 7.6.5
|
|
2649
|
+
optionalDependencies:
|
|
2650
|
+
'@valkey/valkey-glide-darwin-arm64': 2.5.1
|
|
2651
|
+
'@valkey/valkey-glide-darwin-x64': 2.5.1
|
|
2652
|
+
'@valkey/valkey-glide-linux-arm64-gnu': 2.5.1
|
|
2653
|
+
'@valkey/valkey-glide-linux-arm64-musl': 2.5.1
|
|
2654
|
+
'@valkey/valkey-glide-linux-x64-gnu': 2.5.1
|
|
2655
|
+
'@valkey/valkey-glide-linux-x64-musl': 2.5.1
|
|
2656
|
+
|
|
2657
|
+
'@vitest/expect@4.1.10':
|
|
2658
|
+
dependencies:
|
|
2659
|
+
'@standard-schema/spec': 1.1.0
|
|
2660
|
+
'@types/chai': 5.2.3
|
|
2661
|
+
'@vitest/spy': 4.1.10
|
|
2662
|
+
'@vitest/utils': 4.1.10
|
|
2663
|
+
chai: 6.2.2
|
|
2664
|
+
tinyrainbow: 3.1.1
|
|
2665
|
+
|
|
2666
|
+
'@vitest/mocker@4.1.10(vite@8.2.1(@types/node@24.13.3))':
|
|
2667
|
+
dependencies:
|
|
2668
|
+
'@vitest/spy': 4.1.10
|
|
2669
|
+
estree-walker: 3.0.3
|
|
2670
|
+
magic-string: 0.30.21
|
|
2671
|
+
optionalDependencies:
|
|
2672
|
+
vite: 8.2.1(@types/node@24.13.3)
|
|
2673
|
+
|
|
2674
|
+
'@vitest/pretty-format@4.1.10':
|
|
2675
|
+
dependencies:
|
|
2676
|
+
tinyrainbow: 3.1.1
|
|
2677
|
+
|
|
2678
|
+
'@vitest/runner@4.1.10':
|
|
2679
|
+
dependencies:
|
|
2680
|
+
'@vitest/utils': 4.1.10
|
|
2681
|
+
pathe: 2.0.3
|
|
2682
|
+
|
|
2683
|
+
'@vitest/snapshot@4.1.10':
|
|
2684
|
+
dependencies:
|
|
2685
|
+
'@vitest/pretty-format': 4.1.10
|
|
2686
|
+
'@vitest/utils': 4.1.10
|
|
2687
|
+
magic-string: 0.30.21
|
|
2688
|
+
pathe: 2.0.3
|
|
2689
|
+
|
|
2690
|
+
'@vitest/spy@4.1.10': {}
|
|
2691
|
+
|
|
2692
|
+
'@vitest/utils@4.1.10':
|
|
2693
|
+
dependencies:
|
|
2694
|
+
'@vitest/pretty-format': 4.1.10
|
|
2695
|
+
convert-source-map: 2.0.0
|
|
2696
|
+
tinyrainbow: 3.1.1
|
|
2697
|
+
|
|
2112
2698
|
acorn-jsx@5.3.2(acorn@8.18.0):
|
|
2113
2699
|
dependencies:
|
|
2114
2700
|
acorn: 8.18.0
|
|
@@ -2197,6 +2783,8 @@ snapshots:
|
|
|
2197
2783
|
get-intrinsic: 1.3.0
|
|
2198
2784
|
is-array-buffer: 3.0.5
|
|
2199
2785
|
|
|
2786
|
+
assertion-error@2.0.1: {}
|
|
2787
|
+
|
|
2200
2788
|
ast-types-flow@0.0.8: {}
|
|
2201
2789
|
|
|
2202
2790
|
async-function@1.0.0: {}
|
|
@@ -2257,6 +2845,8 @@ snapshots:
|
|
|
2257
2845
|
|
|
2258
2846
|
caniuse-lite@1.0.30001806: {}
|
|
2259
2847
|
|
|
2848
|
+
chai@6.2.2: {}
|
|
2849
|
+
|
|
2260
2850
|
chalk@4.1.2:
|
|
2261
2851
|
dependencies:
|
|
2262
2852
|
ansi-styles: 4.3.0
|
|
@@ -2328,8 +2918,7 @@ snapshots:
|
|
|
2328
2918
|
has-property-descriptors: 1.0.2
|
|
2329
2919
|
object-keys: 1.1.1
|
|
2330
2920
|
|
|
2331
|
-
detect-libc@2.1.2:
|
|
2332
|
-
optional: true
|
|
2921
|
+
detect-libc@2.1.2: {}
|
|
2333
2922
|
|
|
2334
2923
|
doctrine@2.1.0:
|
|
2335
2924
|
dependencies:
|
|
@@ -2437,6 +3026,8 @@ snapshots:
|
|
|
2437
3026
|
iterator.prototype: 1.1.5
|
|
2438
3027
|
math-intrinsics: 1.1.0
|
|
2439
3028
|
|
|
3029
|
+
es-module-lexer@2.3.1: {}
|
|
3030
|
+
|
|
2440
3031
|
es-object-atoms@1.1.2:
|
|
2441
3032
|
dependencies:
|
|
2442
3033
|
es-errors: 1.3.0
|
|
@@ -2666,8 +3257,14 @@ snapshots:
|
|
|
2666
3257
|
|
|
2667
3258
|
estraverse@5.3.0: {}
|
|
2668
3259
|
|
|
3260
|
+
estree-walker@3.0.3:
|
|
3261
|
+
dependencies:
|
|
3262
|
+
'@types/estree': 1.0.9
|
|
3263
|
+
|
|
2669
3264
|
esutils@2.0.3: {}
|
|
2670
3265
|
|
|
3266
|
+
expect-type@1.4.0: {}
|
|
3267
|
+
|
|
2671
3268
|
fast-deep-equal@3.1.3: {}
|
|
2672
3269
|
|
|
2673
3270
|
fast-glob@3.3.1:
|
|
@@ -2714,6 +3311,9 @@ snapshots:
|
|
|
2714
3311
|
dependencies:
|
|
2715
3312
|
is-callable: 1.2.7
|
|
2716
3313
|
|
|
3314
|
+
fsevents@2.3.3:
|
|
3315
|
+
optional: true
|
|
3316
|
+
|
|
2717
3317
|
function-bind@1.1.2: {}
|
|
2718
3318
|
|
|
2719
3319
|
function.prototype.name@1.2.0:
|
|
@@ -2999,12 +3599,63 @@ snapshots:
|
|
|
2999
3599
|
prelude-ls: 1.2.1
|
|
3000
3600
|
type-check: 0.4.0
|
|
3001
3601
|
|
|
3602
|
+
lightningcss-android-arm64@1.33.0:
|
|
3603
|
+
optional: true
|
|
3604
|
+
|
|
3605
|
+
lightningcss-darwin-arm64@1.33.0:
|
|
3606
|
+
optional: true
|
|
3607
|
+
|
|
3608
|
+
lightningcss-darwin-x64@1.33.0:
|
|
3609
|
+
optional: true
|
|
3610
|
+
|
|
3611
|
+
lightningcss-freebsd-x64@1.33.0:
|
|
3612
|
+
optional: true
|
|
3613
|
+
|
|
3614
|
+
lightningcss-linux-arm-gnueabihf@1.33.0:
|
|
3615
|
+
optional: true
|
|
3616
|
+
|
|
3617
|
+
lightningcss-linux-arm64-gnu@1.33.0:
|
|
3618
|
+
optional: true
|
|
3619
|
+
|
|
3620
|
+
lightningcss-linux-arm64-musl@1.33.0:
|
|
3621
|
+
optional: true
|
|
3622
|
+
|
|
3623
|
+
lightningcss-linux-x64-gnu@1.33.0:
|
|
3624
|
+
optional: true
|
|
3625
|
+
|
|
3626
|
+
lightningcss-linux-x64-musl@1.33.0:
|
|
3627
|
+
optional: true
|
|
3628
|
+
|
|
3629
|
+
lightningcss-win32-arm64-msvc@1.33.0:
|
|
3630
|
+
optional: true
|
|
3631
|
+
|
|
3632
|
+
lightningcss-win32-x64-msvc@1.33.0:
|
|
3633
|
+
optional: true
|
|
3634
|
+
|
|
3635
|
+
lightningcss@1.33.0:
|
|
3636
|
+
dependencies:
|
|
3637
|
+
detect-libc: 2.1.2
|
|
3638
|
+
optionalDependencies:
|
|
3639
|
+
lightningcss-android-arm64: 1.33.0
|
|
3640
|
+
lightningcss-darwin-arm64: 1.33.0
|
|
3641
|
+
lightningcss-darwin-x64: 1.33.0
|
|
3642
|
+
lightningcss-freebsd-x64: 1.33.0
|
|
3643
|
+
lightningcss-linux-arm-gnueabihf: 1.33.0
|
|
3644
|
+
lightningcss-linux-arm64-gnu: 1.33.0
|
|
3645
|
+
lightningcss-linux-arm64-musl: 1.33.0
|
|
3646
|
+
lightningcss-linux-x64-gnu: 1.33.0
|
|
3647
|
+
lightningcss-linux-x64-musl: 1.33.0
|
|
3648
|
+
lightningcss-win32-arm64-msvc: 1.33.0
|
|
3649
|
+
lightningcss-win32-x64-msvc: 1.33.0
|
|
3650
|
+
|
|
3002
3651
|
locate-path@6.0.0:
|
|
3003
3652
|
dependencies:
|
|
3004
3653
|
p-locate: 5.0.0
|
|
3005
3654
|
|
|
3006
3655
|
lodash.merge@4.6.2: {}
|
|
3007
3656
|
|
|
3657
|
+
long@5.3.2: {}
|
|
3658
|
+
|
|
3008
3659
|
loose-envify@1.4.0:
|
|
3009
3660
|
dependencies:
|
|
3010
3661
|
js-tokens: 4.0.0
|
|
@@ -3013,6 +3664,10 @@ snapshots:
|
|
|
3013
3664
|
dependencies:
|
|
3014
3665
|
yallist: 3.1.1
|
|
3015
3666
|
|
|
3667
|
+
magic-string@0.30.21:
|
|
3668
|
+
dependencies:
|
|
3669
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3670
|
+
|
|
3016
3671
|
math-intrinsics@1.1.0: {}
|
|
3017
3672
|
|
|
3018
3673
|
merge2@1.4.1: {}
|
|
@@ -3113,6 +3768,8 @@ snapshots:
|
|
|
3113
3768
|
define-properties: 1.2.1
|
|
3114
3769
|
es-object-atoms: 1.1.2
|
|
3115
3770
|
|
|
3771
|
+
obug@2.1.4: {}
|
|
3772
|
+
|
|
3116
3773
|
optionator@0.9.4:
|
|
3117
3774
|
dependencies:
|
|
3118
3775
|
deep-is: 0.1.4
|
|
@@ -3147,6 +3804,8 @@ snapshots:
|
|
|
3147
3804
|
|
|
3148
3805
|
path-parse@1.0.7: {}
|
|
3149
3806
|
|
|
3807
|
+
pathe@2.0.3: {}
|
|
3808
|
+
|
|
3150
3809
|
picocolors@1.1.1: {}
|
|
3151
3810
|
|
|
3152
3811
|
picomatch@2.3.2: {}
|
|
@@ -3161,6 +3820,12 @@ snapshots:
|
|
|
3161
3820
|
picocolors: 1.1.1
|
|
3162
3821
|
source-map-js: 1.2.1
|
|
3163
3822
|
|
|
3823
|
+
postcss@8.5.26:
|
|
3824
|
+
dependencies:
|
|
3825
|
+
nanoid: 3.3.17
|
|
3826
|
+
picocolors: 1.1.1
|
|
3827
|
+
source-map-js: 1.2.1
|
|
3828
|
+
|
|
3164
3829
|
prelude-ls@1.2.1: {}
|
|
3165
3830
|
|
|
3166
3831
|
prop-types@15.8.1:
|
|
@@ -3169,6 +3834,20 @@ snapshots:
|
|
|
3169
3834
|
object-assign: 4.1.1
|
|
3170
3835
|
react-is: 16.13.1
|
|
3171
3836
|
|
|
3837
|
+
protobufjs@7.6.5:
|
|
3838
|
+
dependencies:
|
|
3839
|
+
'@protobufjs/aspromise': 1.1.2
|
|
3840
|
+
'@protobufjs/base64': 1.1.2
|
|
3841
|
+
'@protobufjs/codegen': 2.0.5
|
|
3842
|
+
'@protobufjs/eventemitter': 1.1.1
|
|
3843
|
+
'@protobufjs/fetch': 1.1.1
|
|
3844
|
+
'@protobufjs/float': 1.0.2
|
|
3845
|
+
'@protobufjs/path': 1.1.2
|
|
3846
|
+
'@protobufjs/pool': 1.1.0
|
|
3847
|
+
'@protobufjs/utf8': 1.1.2
|
|
3848
|
+
'@types/node': 24.13.3
|
|
3849
|
+
long: 5.3.2
|
|
3850
|
+
|
|
3172
3851
|
punycode@2.3.1: {}
|
|
3173
3852
|
|
|
3174
3853
|
queue-microtask@1.2.3: {}
|
|
@@ -3217,6 +3896,26 @@ snapshots:
|
|
|
3217
3896
|
|
|
3218
3897
|
reusify@1.1.0: {}
|
|
3219
3898
|
|
|
3899
|
+
rolldown@1.2.3:
|
|
3900
|
+
dependencies:
|
|
3901
|
+
'@oxc-project/types': 0.143.0
|
|
3902
|
+
'@rolldown/pluginutils': 1.0.1
|
|
3903
|
+
optionalDependencies:
|
|
3904
|
+
'@rolldown/binding-android-arm64': 1.2.3
|
|
3905
|
+
'@rolldown/binding-darwin-arm64': 1.2.3
|
|
3906
|
+
'@rolldown/binding-darwin-x64': 1.2.3
|
|
3907
|
+
'@rolldown/binding-freebsd-x64': 1.2.3
|
|
3908
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.2.3
|
|
3909
|
+
'@rolldown/binding-linux-arm64-gnu': 1.2.3
|
|
3910
|
+
'@rolldown/binding-linux-arm64-musl': 1.2.3
|
|
3911
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.2.3
|
|
3912
|
+
'@rolldown/binding-linux-s390x-gnu': 1.2.3
|
|
3913
|
+
'@rolldown/binding-linux-x64-gnu': 1.2.3
|
|
3914
|
+
'@rolldown/binding-linux-x64-musl': 1.2.3
|
|
3915
|
+
'@rolldown/binding-openharmony-arm64': 1.2.3
|
|
3916
|
+
'@rolldown/binding-win32-arm64-msvc': 1.2.3
|
|
3917
|
+
'@rolldown/binding-win32-x64-msvc': 1.2.3
|
|
3918
|
+
|
|
3220
3919
|
run-parallel@1.2.0:
|
|
3221
3920
|
dependencies:
|
|
3222
3921
|
queue-microtask: 1.2.3
|
|
@@ -3334,10 +4033,16 @@ snapshots:
|
|
|
3334
4033
|
side-channel-map: 1.0.1
|
|
3335
4034
|
side-channel-weakmap: 1.0.2
|
|
3336
4035
|
|
|
4036
|
+
siginfo@2.0.0: {}
|
|
4037
|
+
|
|
3337
4038
|
source-map-js@1.2.1: {}
|
|
3338
4039
|
|
|
3339
4040
|
stable-hash@0.0.4: {}
|
|
3340
4041
|
|
|
4042
|
+
stackback@0.0.2: {}
|
|
4043
|
+
|
|
4044
|
+
std-env@4.2.0: {}
|
|
4045
|
+
|
|
3341
4046
|
stop-iteration-iterator@1.1.0:
|
|
3342
4047
|
dependencies:
|
|
3343
4048
|
es-errors: 1.3.0
|
|
@@ -3413,11 +4118,17 @@ snapshots:
|
|
|
3413
4118
|
|
|
3414
4119
|
tapable@2.3.3: {}
|
|
3415
4120
|
|
|
4121
|
+
tinybench@2.9.0: {}
|
|
4122
|
+
|
|
4123
|
+
tinyexec@1.3.0: {}
|
|
4124
|
+
|
|
3416
4125
|
tinyglobby@0.2.17:
|
|
3417
4126
|
dependencies:
|
|
3418
4127
|
fdir: 6.5.0(picomatch@4.0.5)
|
|
3419
4128
|
picomatch: 4.0.5
|
|
3420
4129
|
|
|
4130
|
+
tinyrainbow@3.1.1: {}
|
|
4131
|
+
|
|
3421
4132
|
to-regex-range@5.0.1:
|
|
3422
4133
|
dependencies:
|
|
3423
4134
|
is-number: 7.0.0
|
|
@@ -3504,6 +4215,44 @@ snapshots:
|
|
|
3504
4215
|
dependencies:
|
|
3505
4216
|
punycode: 2.3.1
|
|
3506
4217
|
|
|
4218
|
+
vite@8.2.1(@types/node@24.13.3):
|
|
4219
|
+
dependencies:
|
|
4220
|
+
lightningcss: 1.33.0
|
|
4221
|
+
picomatch: 4.0.5
|
|
4222
|
+
postcss: 8.5.26
|
|
4223
|
+
rolldown: 1.2.3
|
|
4224
|
+
tinyglobby: 0.2.17
|
|
4225
|
+
optionalDependencies:
|
|
4226
|
+
'@types/node': 24.13.3
|
|
4227
|
+
fsevents: 2.3.3
|
|
4228
|
+
|
|
4229
|
+
vitest@4.1.10(@types/node@24.13.3)(vite@8.2.1(@types/node@24.13.3)):
|
|
4230
|
+
dependencies:
|
|
4231
|
+
'@vitest/expect': 4.1.10
|
|
4232
|
+
'@vitest/mocker': 4.1.10(vite@8.2.1(@types/node@24.13.3))
|
|
4233
|
+
'@vitest/pretty-format': 4.1.10
|
|
4234
|
+
'@vitest/runner': 4.1.10
|
|
4235
|
+
'@vitest/snapshot': 4.1.10
|
|
4236
|
+
'@vitest/spy': 4.1.10
|
|
4237
|
+
'@vitest/utils': 4.1.10
|
|
4238
|
+
es-module-lexer: 2.3.1
|
|
4239
|
+
expect-type: 1.4.0
|
|
4240
|
+
magic-string: 0.30.21
|
|
4241
|
+
obug: 2.1.4
|
|
4242
|
+
pathe: 2.0.3
|
|
4243
|
+
picomatch: 4.0.5
|
|
4244
|
+
std-env: 4.2.0
|
|
4245
|
+
tinybench: 2.9.0
|
|
4246
|
+
tinyexec: 1.3.0
|
|
4247
|
+
tinyglobby: 0.2.17
|
|
4248
|
+
tinyrainbow: 3.1.1
|
|
4249
|
+
vite: 8.2.1(@types/node@24.13.3)
|
|
4250
|
+
why-is-node-running: 2.3.0
|
|
4251
|
+
optionalDependencies:
|
|
4252
|
+
'@types/node': 24.13.3
|
|
4253
|
+
transitivePeerDependencies:
|
|
4254
|
+
- msw
|
|
4255
|
+
|
|
3507
4256
|
which-boxed-primitive@1.1.1:
|
|
3508
4257
|
dependencies:
|
|
3509
4258
|
is-bigint: 1.1.0
|
|
@@ -3549,6 +4298,11 @@ snapshots:
|
|
|
3549
4298
|
dependencies:
|
|
3550
4299
|
isexe: 2.0.0
|
|
3551
4300
|
|
|
4301
|
+
why-is-node-running@2.3.0:
|
|
4302
|
+
dependencies:
|
|
4303
|
+
siginfo: 2.0.0
|
|
4304
|
+
stackback: 0.0.2
|
|
4305
|
+
|
|
3552
4306
|
word-wrap@1.2.5: {}
|
|
3553
4307
|
|
|
3554
4308
|
yallist@3.1.1: {}
|