@jarwizz/create-jarshop 0.1.1 → 0.1.3
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 +10 -2
- package/dist/generator.js +10 -4
- package/dist/generator.js.map +1 -1
- package/dist/template/AGENTS.md +3 -3
- package/dist/template/CONTEXT.md +14 -0
- package/dist/template/README.md +25 -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 +19 -6
- package/dist/template/pnpm-lock.yaml +2389 -98
- package/dist/template/pnpm-workspace.yaml +12 -1
- 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/cod-payment.test.ts +44 -0
- package/dist/template/src/plugins/jarshop-checkout/cod-payment.ts +28 -0
- package/dist/template/src/plugins/jarshop-checkout/confirmation-token.entity.ts +31 -0
- package/dist/template/src/plugins/jarshop-checkout/confirmation.ts +59 -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 +51 -0
- package/dist/template/src/plugins/jarshop-checkout/jarshop-checkout.plugin.ts +870 -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 +171 -0
- package/dist/template/src/vendure-config.ts +72 -7
- 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/confirmation/route.ts +21 -0
- package/dist/template/storefront/app/[locale]/checkout/page.tsx +44 -0
- package/dist/template/storefront/app/[locale]/checkout/success/page.tsx +28 -0
- package/dist/template/storefront/app/[locale]/layout.tsx +48 -0
- package/dist/template/storefront/app/[locale]/page.tsx +12 -13
- 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 +8 -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 +149 -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 +129 -4
- package/dist/template/storefront/lib/confirmation-cookie.ts +9 -0
- package/dist/template/storefront/lib/confirmation.ts +95 -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 +11 -4
- package/dist/template/storefront/vitest.config.ts +8 -0
- package/dist/template/tsconfig.json +2 -1
- package/dist/template/turbo.json +8 -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
- package/dist/template/storefront/pnpm-lock.yaml +0 -3562
- package/dist/template/storefront/pnpm-workspace.yaml +0 -26
|
@@ -4,10 +4,19 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
eslint-import-resolver-typescript: 3.8.7
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
10
13
|
dependencies:
|
|
14
|
+
'@nestjs/common':
|
|
15
|
+
specifier: 11.1.28
|
|
16
|
+
version: 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
17
|
+
'@nestjs/graphql':
|
|
18
|
+
specifier: 13.1.0
|
|
19
|
+
version: 13.1.0(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(graphql@16.14.2)(reflect-metadata@0.2.2)(ts-morph@21.0.1)
|
|
11
20
|
'@vendure/asset-server-plugin':
|
|
12
21
|
specifier: 3.7.1
|
|
13
22
|
version: 3.7.1(supports-color@7.2.0)
|
|
@@ -16,10 +25,10 @@ importers:
|
|
|
16
25
|
version: 3.7.1
|
|
17
26
|
'@vendure/core':
|
|
18
27
|
specifier: 3.7.1
|
|
19
|
-
version: 3.7.1(pg@8.22.0)(supports-color@7.2.0)(ts-morph@21.0.1)(ts-node@10.9.2(@types/node@
|
|
28
|
+
version: 3.7.1(pg@8.22.0)(supports-color@7.2.0)(ts-morph@21.0.1)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2))(typescript@5.8.2)
|
|
20
29
|
'@vendure/dashboard':
|
|
21
30
|
specifier: 3.7.1
|
|
22
|
-
version: 3.7.1(@date-fns/tz@1.5.0)(@floating-ui/dom@1.8.0)(@sinclair/typebox@0.27.12)(@tanstack/router-core@1.171.17)(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/extensions@3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2))(@types/node@
|
|
31
|
+
version: 3.7.1(@date-fns/tz@1.5.0)(@floating-ui/dom@1.8.0)(@sinclair/typebox@0.27.12)(@standard-schema/spec@1.1.0)(@tanstack/router-core@1.171.17)(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/extensions@3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2))(@types/node@24.13.3)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(csstype@3.2.3)(esbuild@0.28.1)(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(express@5.2.1(supports-color@7.2.0))(jiti@2.7.0)(lightningcss@1.32.0)(next@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.4))(rollup@4.62.4)(supports-color@7.2.0)(tsx@4.20.3)(typescript@5.8.2)
|
|
23
32
|
'@vendure/email-plugin':
|
|
24
33
|
specifier: 3.7.1
|
|
25
34
|
version: 3.7.1(supports-color@7.2.0)(svgo@4.0.2)(typescript@5.8.2)
|
|
@@ -29,16 +38,31 @@ importers:
|
|
|
29
38
|
dotenv:
|
|
30
39
|
specifier: 17.4.2
|
|
31
40
|
version: 17.4.2
|
|
41
|
+
nodemailer:
|
|
42
|
+
specifier: 9.0.4
|
|
43
|
+
version: 9.0.4
|
|
32
44
|
pg:
|
|
33
45
|
specifier: 8.22.0
|
|
34
46
|
version: 8.22.0
|
|
47
|
+
react:
|
|
48
|
+
specifier: 19.2.4
|
|
49
|
+
version: 19.2.4
|
|
35
50
|
typeorm:
|
|
36
51
|
specifier: 0.3.31
|
|
37
|
-
version: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
52
|
+
version: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2))
|
|
38
53
|
devDependencies:
|
|
54
|
+
'@types/node':
|
|
55
|
+
specifier: 24.13.3
|
|
56
|
+
version: 24.13.3
|
|
57
|
+
'@types/nodemailer':
|
|
58
|
+
specifier: 8.0.1
|
|
59
|
+
version: 8.0.1
|
|
60
|
+
'@types/react':
|
|
61
|
+
specifier: 19.2.14
|
|
62
|
+
version: 19.2.14
|
|
39
63
|
'@vendure/cli':
|
|
40
64
|
specifier: 3.7.1
|
|
41
|
-
version: 3.7.1(@types/node@
|
|
65
|
+
version: 3.7.1(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
42
66
|
gql.tada:
|
|
43
67
|
specifier: 1.11.3
|
|
44
68
|
version: 1.11.3(graphql@16.14.2)(typescript@5.8.2)
|
|
@@ -56,7 +80,53 @@ importers:
|
|
|
56
80
|
version: 5.8.2
|
|
57
81
|
vite:
|
|
58
82
|
specifier: 7.3.6
|
|
59
|
-
version: 7.3.6(@types/node@
|
|
83
|
+
version: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
84
|
+
|
|
85
|
+
storefront:
|
|
86
|
+
dependencies:
|
|
87
|
+
'@jarwizz/commerce-sdk':
|
|
88
|
+
specifier: 0.3.0
|
|
89
|
+
version: 0.3.0
|
|
90
|
+
'@swc/helpers':
|
|
91
|
+
specifier: 0.5.15
|
|
92
|
+
version: 0.5.15
|
|
93
|
+
'@valkey/valkey-glide':
|
|
94
|
+
specifier: 2.5.1
|
|
95
|
+
version: 2.5.1
|
|
96
|
+
next:
|
|
97
|
+
specifier: 16.2.12
|
|
98
|
+
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)
|
|
99
|
+
react:
|
|
100
|
+
specifier: 19.2.8
|
|
101
|
+
version: 19.2.8
|
|
102
|
+
react-dom:
|
|
103
|
+
specifier: 19.2.8
|
|
104
|
+
version: 19.2.8(react@19.2.8)
|
|
105
|
+
devDependencies:
|
|
106
|
+
'@types/node':
|
|
107
|
+
specifier: 24.13.3
|
|
108
|
+
version: 24.13.3
|
|
109
|
+
'@types/react':
|
|
110
|
+
specifier: 19.2.14
|
|
111
|
+
version: 19.2.14
|
|
112
|
+
'@types/react-dom':
|
|
113
|
+
specifier: 19.2.3
|
|
114
|
+
version: 19.2.3(@types/react@19.2.14)
|
|
115
|
+
eslint:
|
|
116
|
+
specifier: 9.39.5
|
|
117
|
+
version: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
118
|
+
eslint-config-next:
|
|
119
|
+
specifier: 16.2.12
|
|
120
|
+
version: 16.2.12(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
121
|
+
typescript:
|
|
122
|
+
specifier: 6.0.3
|
|
123
|
+
version: 6.0.3
|
|
124
|
+
typescript-eslint:
|
|
125
|
+
specifier: 8.65.0
|
|
126
|
+
version: 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
127
|
+
vitest:
|
|
128
|
+
specifier: 4.1.10
|
|
129
|
+
version: 4.1.10(@types/node@24.13.3)(msw@2.15.0(@types/node@24.13.3)(typescript@6.0.3))(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
60
130
|
|
|
61
131
|
packages:
|
|
62
132
|
|
|
@@ -756,22 +826,50 @@ packages:
|
|
|
756
826
|
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
757
827
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
758
828
|
|
|
829
|
+
'@eslint/config-array@0.21.2':
|
|
830
|
+
resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
|
|
831
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
832
|
+
|
|
759
833
|
'@eslint/config-array@0.23.5':
|
|
760
834
|
resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
|
|
761
835
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
762
836
|
|
|
837
|
+
'@eslint/config-helpers@0.4.2':
|
|
838
|
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
|
|
839
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
840
|
+
|
|
763
841
|
'@eslint/config-helpers@0.7.0':
|
|
764
842
|
resolution: {integrity: sha512-DObd/KKUsU+FaFv4PLxSRenpXfQWmPXXP3pPZ6/K1PCrMu2vQpMDMuQe/BqYeoLcz8ro0bVDF1RxOJgfVEdhUw==}
|
|
765
843
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
766
844
|
|
|
845
|
+
'@eslint/core@0.17.0':
|
|
846
|
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
|
847
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
848
|
+
|
|
767
849
|
'@eslint/core@1.2.1':
|
|
768
850
|
resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
|
|
769
851
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
770
852
|
|
|
853
|
+
'@eslint/eslintrc@3.3.6':
|
|
854
|
+
resolution: {integrity: sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==}
|
|
855
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
856
|
+
|
|
857
|
+
'@eslint/js@9.39.5':
|
|
858
|
+
resolution: {integrity: sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==}
|
|
859
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
860
|
+
|
|
861
|
+
'@eslint/object-schema@2.1.7':
|
|
862
|
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
|
|
863
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
864
|
+
|
|
771
865
|
'@eslint/object-schema@3.0.5':
|
|
772
866
|
resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
|
|
773
867
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
774
868
|
|
|
869
|
+
'@eslint/plugin-kit@0.4.1':
|
|
870
|
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
871
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
872
|
+
|
|
775
873
|
'@eslint/plugin-kit@0.7.2':
|
|
776
874
|
resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==}
|
|
777
875
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -1227,6 +1325,10 @@ packages:
|
|
|
1227
1325
|
resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==}
|
|
1228
1326
|
engines: {node: '>=18'}
|
|
1229
1327
|
|
|
1328
|
+
'@jarwizz/commerce-sdk@0.3.0':
|
|
1329
|
+
resolution: {integrity: sha512-YEeT1OIq8f10Efh3SDNt0mzOK/npSP/gPCy0GvpMepVZn021sv+SjxULPjZsvLqHh1bLooAvJ2DAM+n3uv36FQ==}
|
|
1330
|
+
engines: {node: '>=24.18.0 <25'}
|
|
1331
|
+
|
|
1230
1332
|
'@jest/schemas@29.6.3':
|
|
1231
1333
|
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
|
|
1232
1334
|
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
@@ -1442,6 +1544,64 @@ packages:
|
|
|
1442
1544
|
rxjs: ^7.2.0
|
|
1443
1545
|
typeorm: ^0.3.0 || ^1.0.0-dev
|
|
1444
1546
|
|
|
1547
|
+
'@next/env@16.2.12':
|
|
1548
|
+
resolution: {integrity: sha512-d0Z5Bc13Fa4nR8pFAKx2jay2yhJM16vlfHbTzYnUQAxlNb6B6lmn4hjt69lYNt4kRtyYP6gEM49lPRHNbIyneg==}
|
|
1549
|
+
|
|
1550
|
+
'@next/eslint-plugin-next@16.2.12':
|
|
1551
|
+
resolution: {integrity: sha512-uF2z/qAK2q7B5/6CpnFcBRX6jOq5iCO+Uqh1UkJhXljX1JwLarLYhhoJadO6dPb6moTprOKewMXheBcbIoSbug==}
|
|
1552
|
+
|
|
1553
|
+
'@next/swc-darwin-arm64@16.2.12':
|
|
1554
|
+
resolution: {integrity: sha512-0W1R0teHWJrqKX0FH20IzzIWAOuGtBxPGuObrxy1lE8hQvCFj49KE8a3WUg0D7sq6rn6zkM4c7YGUnhudBS6oA==}
|
|
1555
|
+
engines: {node: '>= 10'}
|
|
1556
|
+
cpu: [arm64]
|
|
1557
|
+
os: [darwin]
|
|
1558
|
+
|
|
1559
|
+
'@next/swc-darwin-x64@16.2.12':
|
|
1560
|
+
resolution: {integrity: sha512-Hy5Ls099+aFUmOLmIgPfLqNi6iCwhL3uQCssz5rWk+5Nkc6TUKCE83DY5BbNylfm3+mfwcSFnLRfrZDJhVxdtw==}
|
|
1561
|
+
engines: {node: '>= 10'}
|
|
1562
|
+
cpu: [x64]
|
|
1563
|
+
os: [darwin]
|
|
1564
|
+
|
|
1565
|
+
'@next/swc-linux-arm64-gnu@16.2.12':
|
|
1566
|
+
resolution: {integrity: sha512-+YqU2h1cQkHsGfvjAsrSmst8UIFBibBGm5x3Xgel8NLMiDQtNOM4sM2GOEMvG5YiOBNeN/Ykk8cQC2S0Xrqljg==}
|
|
1567
|
+
engines: {node: '>= 10'}
|
|
1568
|
+
cpu: [arm64]
|
|
1569
|
+
os: [linux]
|
|
1570
|
+
libc: [glibc]
|
|
1571
|
+
|
|
1572
|
+
'@next/swc-linux-arm64-musl@16.2.12':
|
|
1573
|
+
resolution: {integrity: sha512-0qjhiYBaKAqF63LA1ZWAAnKTzFUguAaZiRa5etMLGGPj/B6uEVjtIZldIzFEp3wHlB0koK6aTzqPtSdplTCjoA==}
|
|
1574
|
+
engines: {node: '>= 10'}
|
|
1575
|
+
cpu: [arm64]
|
|
1576
|
+
os: [linux]
|
|
1577
|
+
libc: [musl]
|
|
1578
|
+
|
|
1579
|
+
'@next/swc-linux-x64-gnu@16.2.12':
|
|
1580
|
+
resolution: {integrity: sha512-7A3q26W+h7gnA15uqBToNuDqBEFZZcqh0mW2mn4AJh/G5pdg2RVE3n4slzLEliASZFG3NmsbEzng/x2Sh09mBg==}
|
|
1581
|
+
engines: {node: '>= 10'}
|
|
1582
|
+
cpu: [x64]
|
|
1583
|
+
os: [linux]
|
|
1584
|
+
libc: [glibc]
|
|
1585
|
+
|
|
1586
|
+
'@next/swc-linux-x64-musl@16.2.12':
|
|
1587
|
+
resolution: {integrity: sha512-qSjL/uppm+cbh21s72Ss8gkiOhQ4dExWHNGOWy6eZV7STj5WsKehgxT61beSsOj+YYQuTplL376lOCdMQU5T8w==}
|
|
1588
|
+
engines: {node: '>= 10'}
|
|
1589
|
+
cpu: [x64]
|
|
1590
|
+
os: [linux]
|
|
1591
|
+
libc: [musl]
|
|
1592
|
+
|
|
1593
|
+
'@next/swc-win32-arm64-msvc@16.2.12':
|
|
1594
|
+
resolution: {integrity: sha512-X6hzsOUJac/e7AWSbn9gQ9nzHld1xWP5iyjHpYWvud8pufB679O1xg4JDyKr8Xd69Jvd+kM2Der6uftiZCmjYA==}
|
|
1595
|
+
engines: {node: '>= 10'}
|
|
1596
|
+
cpu: [arm64]
|
|
1597
|
+
os: [win32]
|
|
1598
|
+
|
|
1599
|
+
'@next/swc-win32-x64-msvc@16.2.12':
|
|
1600
|
+
resolution: {integrity: sha512-F6fakeHuFTLOPt0bslQJdf+xtT+WIP9DVn/m4y1w1mRnVPyh3D/cNvzlRkxM444xfm+IvvYNSOrKiA2CDJ0Uxw==}
|
|
1601
|
+
engines: {node: '>= 10'}
|
|
1602
|
+
cpu: [x64]
|
|
1603
|
+
os: [win32]
|
|
1604
|
+
|
|
1445
1605
|
'@nodelib/fs.scandir@2.1.5':
|
|
1446
1606
|
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
1447
1607
|
engines: {node: '>= 8'}
|
|
@@ -1454,6 +1614,10 @@ packages:
|
|
|
1454
1614
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
1455
1615
|
engines: {node: '>= 8'}
|
|
1456
1616
|
|
|
1617
|
+
'@nolyfill/is-core-module@1.0.39':
|
|
1618
|
+
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
|
|
1619
|
+
engines: {node: '>=12.4.0'}
|
|
1620
|
+
|
|
1457
1621
|
'@one-ini/wasm@0.1.1':
|
|
1458
1622
|
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
|
|
1459
1623
|
|
|
@@ -1809,6 +1973,9 @@ packages:
|
|
|
1809
1973
|
cpu: [x64]
|
|
1810
1974
|
os: [win32]
|
|
1811
1975
|
|
|
1976
|
+
'@rtsao/scc@1.1.0':
|
|
1977
|
+
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
|
|
1978
|
+
|
|
1812
1979
|
'@sec-ant/readable-stream@0.4.1':
|
|
1813
1980
|
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
|
|
1814
1981
|
|
|
@@ -1822,9 +1989,15 @@ packages:
|
|
|
1822
1989
|
'@sqltools/formatter@1.2.5':
|
|
1823
1990
|
resolution: {integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw==}
|
|
1824
1991
|
|
|
1992
|
+
'@standard-schema/spec@1.1.0':
|
|
1993
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
1994
|
+
|
|
1825
1995
|
'@standard-schema/utils@0.3.0':
|
|
1826
1996
|
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
1827
1997
|
|
|
1998
|
+
'@swc/helpers@0.5.15':
|
|
1999
|
+
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
2000
|
+
|
|
1828
2001
|
'@tabby_ai/hijri-converter@1.0.5':
|
|
1829
2002
|
resolution: {integrity: sha512-r5bClKrcIusDoo049dSL8CawnHR6mRdDwhlQuIgZRNty68q0x8k3Lf1BtPAMxRf/GgnHBnIO4ujd3+GQdLWzxQ==}
|
|
1830
2003
|
engines: {node: '>=16.0.0'}
|
|
@@ -2300,6 +2473,9 @@ packages:
|
|
|
2300
2473
|
'@types/busboy@1.5.4':
|
|
2301
2474
|
resolution: {integrity: sha512-kG7WrUuAKK0NoyxfQHsVE6j1m01s6kMma64E+OZenQABMQyTJop1DumUWcLwAQ2JzpefU7PDYoRDKl8uZosFjw==}
|
|
2302
2475
|
|
|
2476
|
+
'@types/chai@5.2.3':
|
|
2477
|
+
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
|
|
2478
|
+
|
|
2303
2479
|
'@types/connect@3.4.38':
|
|
2304
2480
|
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
|
2305
2481
|
|
|
@@ -2330,6 +2506,9 @@ packages:
|
|
|
2330
2506
|
'@types/d3-timer@3.0.2':
|
|
2331
2507
|
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
|
|
2332
2508
|
|
|
2509
|
+
'@types/deep-eql@4.0.2':
|
|
2510
|
+
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
2511
|
+
|
|
2333
2512
|
'@types/esrecurse@4.3.1':
|
|
2334
2513
|
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
|
|
2335
2514
|
|
|
@@ -2366,6 +2545,9 @@ packages:
|
|
|
2366
2545
|
'@types/json-schema@7.0.15':
|
|
2367
2546
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
2368
2547
|
|
|
2548
|
+
'@types/json5@0.0.29':
|
|
2549
|
+
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
|
|
2550
|
+
|
|
2369
2551
|
'@types/long@4.0.2':
|
|
2370
2552
|
resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
|
|
2371
2553
|
|
|
@@ -2375,8 +2557,8 @@ packages:
|
|
|
2375
2557
|
'@types/node-fetch@2.6.13':
|
|
2376
2558
|
resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}
|
|
2377
2559
|
|
|
2378
|
-
'@types/node@
|
|
2379
|
-
resolution: {integrity: sha512-
|
|
2560
|
+
'@types/node@24.13.3':
|
|
2561
|
+
resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==}
|
|
2380
2562
|
|
|
2381
2563
|
'@types/nodemailer@8.0.1':
|
|
2382
2564
|
resolution: {integrity: sha512-PxpaInm8V1JQDd4j0ds5HfvWQk8JupS1C0Picb96QJsrrRDjBH+DlK7L4ZdNSqNULhiZRQHc40nLVShaGxXAMw==}
|
|
@@ -2390,11 +2572,19 @@ packages:
|
|
|
2390
2572
|
'@types/range-parser@1.2.7':
|
|
2391
2573
|
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
|
|
2392
2574
|
|
|
2575
|
+
'@types/react-dom@19.2.3':
|
|
2576
|
+
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
2577
|
+
peerDependencies:
|
|
2578
|
+
'@types/react': ^19.2.0
|
|
2579
|
+
|
|
2393
2580
|
'@types/react-dom@19.2.4':
|
|
2394
2581
|
resolution: {integrity: sha512-Bsc+QHgp+P/F02XDzNCY9jnZNCUuLki36KT7VKrTXXLdHf+vHMNZnW1rVu5DNW/rCK+fya3DATySbLM4yhtKUw==}
|
|
2395
2582
|
peerDependencies:
|
|
2396
2583
|
'@types/react': ^19.2.0
|
|
2397
2584
|
|
|
2585
|
+
'@types/react@19.2.14':
|
|
2586
|
+
resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
|
|
2587
|
+
|
|
2398
2588
|
'@types/react@19.2.18':
|
|
2399
2589
|
resolution: {integrity: sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==}
|
|
2400
2590
|
|
|
@@ -2431,32 +2621,87 @@ packages:
|
|
|
2431
2621
|
'@types/yargs@17.0.35':
|
|
2432
2622
|
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
|
|
2433
2623
|
|
|
2624
|
+
'@typescript-eslint/eslint-plugin@8.65.0':
|
|
2625
|
+
resolution: {integrity: sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==}
|
|
2626
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2627
|
+
peerDependencies:
|
|
2628
|
+
'@typescript-eslint/parser': ^8.65.0
|
|
2629
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2630
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2631
|
+
|
|
2632
|
+
'@typescript-eslint/parser@8.65.0':
|
|
2633
|
+
resolution: {integrity: sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==}
|
|
2634
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2635
|
+
peerDependencies:
|
|
2636
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2637
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2638
|
+
|
|
2639
|
+
'@typescript-eslint/project-service@8.65.0':
|
|
2640
|
+
resolution: {integrity: sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==}
|
|
2641
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2642
|
+
peerDependencies:
|
|
2643
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2644
|
+
|
|
2434
2645
|
'@typescript-eslint/project-service@8.66.0':
|
|
2435
2646
|
resolution: {integrity: sha512-7MthGPTt4BP69lSryqpqq8HQqxuzynssckL/jyDyk3+TNMQ3y2jFWkptCrktWvBrP+EH787Nl5N5Qpw7WZg+5g==}
|
|
2436
2647
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2437
2648
|
peerDependencies:
|
|
2438
2649
|
typescript: '>=4.8.4 <6.1.0'
|
|
2439
2650
|
|
|
2651
|
+
'@typescript-eslint/scope-manager@8.65.0':
|
|
2652
|
+
resolution: {integrity: sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==}
|
|
2653
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2654
|
+
|
|
2440
2655
|
'@typescript-eslint/scope-manager@8.66.0':
|
|
2441
2656
|
resolution: {integrity: sha512-8TGcH25j9zqJ/IULB/ppyhRvxA8QYfFEZ7nfbg6/BN9spDgb8fPWQXlE5l8TWBL50EtUx007uZ1o9VOwrq2/9g==}
|
|
2442
2657
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2443
2658
|
|
|
2659
|
+
'@typescript-eslint/tsconfig-utils@8.65.0':
|
|
2660
|
+
resolution: {integrity: sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==}
|
|
2661
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2662
|
+
peerDependencies:
|
|
2663
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2664
|
+
|
|
2444
2665
|
'@typescript-eslint/tsconfig-utils@8.66.0':
|
|
2445
2666
|
resolution: {integrity: sha512-9D5gLYZG4rOjcoag8MQ/fWI8WqA9wcPDyOGyWtWFhvM1lHRbliqUSPIY5J3zqCU1tvSwzXxnnjhQhz5Ne7mJ4g==}
|
|
2446
2667
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2447
2668
|
peerDependencies:
|
|
2448
2669
|
typescript: '>=4.8.4 <6.1.0'
|
|
2449
2670
|
|
|
2671
|
+
'@typescript-eslint/type-utils@8.65.0':
|
|
2672
|
+
resolution: {integrity: sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==}
|
|
2673
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2674
|
+
peerDependencies:
|
|
2675
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2676
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2677
|
+
|
|
2678
|
+
'@typescript-eslint/types@8.65.0':
|
|
2679
|
+
resolution: {integrity: sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==}
|
|
2680
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2681
|
+
|
|
2450
2682
|
'@typescript-eslint/types@8.66.0':
|
|
2451
2683
|
resolution: {integrity: sha512-H6gcYaSDOyvL3AD/jHUtUFo2jqGgn/F6nuyuZSu0QTesxL+cP4dQoIMrODRofuJC09g64+WgZ6tE19Y1N2YIFQ==}
|
|
2452
2684
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2453
2685
|
|
|
2686
|
+
'@typescript-eslint/typescript-estree@8.65.0':
|
|
2687
|
+
resolution: {integrity: sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==}
|
|
2688
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2689
|
+
peerDependencies:
|
|
2690
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2691
|
+
|
|
2454
2692
|
'@typescript-eslint/typescript-estree@8.66.0':
|
|
2455
2693
|
resolution: {integrity: sha512-8/x4INiiQb10jGgXYD7116/zQ+OL84ZIFn0za68wwFHCanT/VLbBEroWht8RV8fn0/ZCAoazHLQgwUC0UQcDfg==}
|
|
2456
2694
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2457
2695
|
peerDependencies:
|
|
2458
2696
|
typescript: '>=4.8.4 <6.1.0'
|
|
2459
2697
|
|
|
2698
|
+
'@typescript-eslint/utils@8.65.0':
|
|
2699
|
+
resolution: {integrity: sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==}
|
|
2700
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2701
|
+
peerDependencies:
|
|
2702
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2703
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
2704
|
+
|
|
2460
2705
|
'@typescript-eslint/utils@8.66.0':
|
|
2461
2706
|
resolution: {integrity: sha512-jasearZPolBw5NJNYGMwxzHMF83niVWmMU1VdHzG1CyfI2VS7f7nZltnKtHcg20hW+7Uo5GfK4MeDPoU3qI8EA==}
|
|
2462
2707
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -2464,6 +2709,10 @@ packages:
|
|
|
2464
2709
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2465
2710
|
typescript: '>=4.8.4 <6.1.0'
|
|
2466
2711
|
|
|
2712
|
+
'@typescript-eslint/visitor-keys@8.65.0':
|
|
2713
|
+
resolution: {integrity: sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==}
|
|
2714
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2715
|
+
|
|
2467
2716
|
'@typescript-eslint/visitor-keys@8.66.0':
|
|
2468
2717
|
resolution: {integrity: sha512-dkKR8q+lKciskj1Y3vthHktl+3cMLWGyVUP23bRiPZ5O9BRT++4EqDDV+TVeIKBL1VXVEqrJlz8MYbcnvJcAlg==}
|
|
2469
2718
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -2475,6 +2724,44 @@ packages:
|
|
|
2475
2724
|
react: '>=18.0.0'
|
|
2476
2725
|
react-dom: '>=18.0.0'
|
|
2477
2726
|
|
|
2727
|
+
'@valkey/valkey-glide-darwin-arm64@2.5.1':
|
|
2728
|
+
resolution: {integrity: sha512-DC6T0oYkyFnVIMABnmdtB2ZViJXMNMT8VtPQi4dniLBMbQJVS0BFO735bzDLkONZqnOf4lSRQMk+UYhUSE2n8Q==}
|
|
2729
|
+
cpu: [arm64]
|
|
2730
|
+
os: [darwin]
|
|
2731
|
+
|
|
2732
|
+
'@valkey/valkey-glide-darwin-x64@2.5.1':
|
|
2733
|
+
resolution: {integrity: sha512-3XNRg2gwHpDGfpLm7og4cBCR9vvldd3z1OgqK4EBB75XSkx9gFXgcmIR8JYHiz9pnjv4FkeTCU6/WIPDCW7iTw==}
|
|
2734
|
+
cpu: [x64]
|
|
2735
|
+
os: [darwin]
|
|
2736
|
+
|
|
2737
|
+
'@valkey/valkey-glide-linux-arm64-gnu@2.5.1':
|
|
2738
|
+
resolution: {integrity: sha512-D3AnYqMefXaaZJLPa4Q5A506On0/zg2ikI+YKWQsVXSgegf+YRXMrjfYqXa+LQD8s8jMMlZB/FAmSr4g+iv3CQ==}
|
|
2739
|
+
cpu: [arm64]
|
|
2740
|
+
os: [linux]
|
|
2741
|
+
libc: [glibc]
|
|
2742
|
+
|
|
2743
|
+
'@valkey/valkey-glide-linux-arm64-musl@2.5.1':
|
|
2744
|
+
resolution: {integrity: sha512-LIzxQhWhoPPIbYAy86moO1RA+SyFkNTxDPfR67MnGIZ7eaiFG9dfPfSdLC/LUN53D+/tbtaQYeyFxK3mNr3lcQ==}
|
|
2745
|
+
cpu: [arm64]
|
|
2746
|
+
os: [linux]
|
|
2747
|
+
libc: [musl]
|
|
2748
|
+
|
|
2749
|
+
'@valkey/valkey-glide-linux-x64-gnu@2.5.1':
|
|
2750
|
+
resolution: {integrity: sha512-VUXP852lmBp09WSG1/Yd9SFoATUW+MRRVaXhFabQkRlHm/7sm/0X9K2xyU5j41OeoHYK6Zne7YyGIyE1zgkV4Q==}
|
|
2751
|
+
cpu: [x64]
|
|
2752
|
+
os: [linux]
|
|
2753
|
+
libc: [glibc]
|
|
2754
|
+
|
|
2755
|
+
'@valkey/valkey-glide-linux-x64-musl@2.5.1':
|
|
2756
|
+
resolution: {integrity: sha512-KVRvCMBEFiyOkxgOy6KDC3M4QmpSOnRZa39mkOx/nZwP/9fFzuJ3g0RTGVcLQ75RqRSexqitE4MuG8IpUKjn5w==}
|
|
2757
|
+
cpu: [x64]
|
|
2758
|
+
os: [linux]
|
|
2759
|
+
libc: [musl]
|
|
2760
|
+
|
|
2761
|
+
'@valkey/valkey-glide@2.5.1':
|
|
2762
|
+
resolution: {integrity: sha512-vtYyMJ2L42RH5CgBNtG2ffupNxu8c6KTzWvhXsUI2zChIFJQwUcuHuEdqXeOjTJZ9XfWs1E4w1TMiwnZSqGlkw==}
|
|
2763
|
+
engines: {node: '>=16'}
|
|
2764
|
+
|
|
2478
2765
|
'@vendure-io/design-tokens@1.2.0':
|
|
2479
2766
|
resolution: {integrity: sha512-hysqX5VMrZPHsOW4P2VqmiEleOd3UDv1w/I16mMYRI9w9Qrf27mYFyjH7phRVN5/+X2A2YBk2+cMmyKYZzuBqw==}
|
|
2480
2767
|
|
|
@@ -2527,6 +2814,35 @@ packages:
|
|
|
2527
2814
|
peerDependencies:
|
|
2528
2815
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
2529
2816
|
|
|
2817
|
+
'@vitest/expect@4.1.10':
|
|
2818
|
+
resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==}
|
|
2819
|
+
|
|
2820
|
+
'@vitest/mocker@4.1.10':
|
|
2821
|
+
resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==}
|
|
2822
|
+
peerDependencies:
|
|
2823
|
+
msw: ^2.4.9
|
|
2824
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
2825
|
+
peerDependenciesMeta:
|
|
2826
|
+
msw:
|
|
2827
|
+
optional: true
|
|
2828
|
+
vite:
|
|
2829
|
+
optional: true
|
|
2830
|
+
|
|
2831
|
+
'@vitest/pretty-format@4.1.10':
|
|
2832
|
+
resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==}
|
|
2833
|
+
|
|
2834
|
+
'@vitest/runner@4.1.10':
|
|
2835
|
+
resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==}
|
|
2836
|
+
|
|
2837
|
+
'@vitest/snapshot@4.1.10':
|
|
2838
|
+
resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==}
|
|
2839
|
+
|
|
2840
|
+
'@vitest/spy@4.1.10':
|
|
2841
|
+
resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==}
|
|
2842
|
+
|
|
2843
|
+
'@vitest/utils@4.1.10':
|
|
2844
|
+
resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==}
|
|
2845
|
+
|
|
2530
2846
|
'@whatwg-node/disposablestack@0.0.6':
|
|
2531
2847
|
resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==}
|
|
2532
2848
|
engines: {node: '>=18.0.0'}
|
|
@@ -2636,13 +2952,60 @@ packages:
|
|
|
2636
2952
|
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
|
|
2637
2953
|
engines: {node: '>=10'}
|
|
2638
2954
|
|
|
2955
|
+
aria-query@5.3.2:
|
|
2956
|
+
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
|
|
2957
|
+
engines: {node: '>= 0.4'}
|
|
2958
|
+
|
|
2959
|
+
array-buffer-byte-length@1.0.2:
|
|
2960
|
+
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
|
2961
|
+
engines: {node: '>= 0.4'}
|
|
2962
|
+
|
|
2639
2963
|
array-flatten@1.1.1:
|
|
2640
2964
|
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
|
|
2641
2965
|
|
|
2966
|
+
array-includes@3.1.9:
|
|
2967
|
+
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
|
|
2968
|
+
engines: {node: '>= 0.4'}
|
|
2969
|
+
|
|
2970
|
+
array.prototype.findlast@1.2.5:
|
|
2971
|
+
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
|
|
2972
|
+
engines: {node: '>= 0.4'}
|
|
2973
|
+
|
|
2974
|
+
array.prototype.findlastindex@1.2.6:
|
|
2975
|
+
resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
|
|
2976
|
+
engines: {node: '>= 0.4'}
|
|
2977
|
+
|
|
2978
|
+
array.prototype.flat@1.3.3:
|
|
2979
|
+
resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
|
|
2980
|
+
engines: {node: '>= 0.4'}
|
|
2981
|
+
|
|
2982
|
+
array.prototype.flatmap@1.3.3:
|
|
2983
|
+
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
|
|
2984
|
+
engines: {node: '>= 0.4'}
|
|
2985
|
+
|
|
2986
|
+
array.prototype.tosorted@1.1.4:
|
|
2987
|
+
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
|
|
2988
|
+
engines: {node: '>= 0.4'}
|
|
2989
|
+
|
|
2990
|
+
arraybuffer.prototype.slice@1.0.4:
|
|
2991
|
+
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
|
|
2992
|
+
engines: {node: '>= 0.4'}
|
|
2993
|
+
|
|
2994
|
+
assertion-error@2.0.1:
|
|
2995
|
+
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
|
|
2996
|
+
engines: {node: '>=12'}
|
|
2997
|
+
|
|
2998
|
+
ast-types-flow@0.0.8:
|
|
2999
|
+
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
|
|
3000
|
+
|
|
2642
3001
|
ast-types@0.16.1:
|
|
2643
3002
|
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
|
|
2644
3003
|
engines: {node: '>=4'}
|
|
2645
3004
|
|
|
3005
|
+
async-function@1.0.0:
|
|
3006
|
+
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
|
|
3007
|
+
engines: {node: '>= 0.4'}
|
|
3008
|
+
|
|
2646
3009
|
async-retry@1.3.3:
|
|
2647
3010
|
resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
|
|
2648
3011
|
|
|
@@ -2665,6 +3028,14 @@ packages:
|
|
|
2665
3028
|
resolution: {integrity: sha512-xn37nQyAosl5atYfywEk80nvNhuAY1STYs/ZHGwSsHGTudeB5OErxPfg5+ss+kAAbmT+DD4FWc9fVmr+3CxJ5Q==}
|
|
2666
3029
|
engines: {node: ^20.19.0 || ^22.12.0 || >=23}
|
|
2667
3030
|
|
|
3031
|
+
axe-core@4.13.0:
|
|
3032
|
+
resolution: {integrity: sha512-UzGt8zg7Ny8djbYMhxl2zuEevVa7r2gJjYY5Lwr1xM7+XU2nd6CkIWFTVcCIbAP63vSz71NaVyyuSk9lHKcy0A==}
|
|
3033
|
+
engines: {node: '>=4'}
|
|
3034
|
+
|
|
3035
|
+
axobject-query@4.1.0:
|
|
3036
|
+
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
|
|
3037
|
+
engines: {node: '>= 0.4'}
|
|
3038
|
+
|
|
2668
3039
|
babel-dead-code-elimination@1.0.12:
|
|
2669
3040
|
resolution: {integrity: sha512-GERT7L2TiYcYDtYk1IpD+ASAYXjKbLTDPhBtYj7X1NuRMDTMtAx9kyBenub1Ev41lo91OHCKdmP+egTDmfQ7Ig==}
|
|
2670
3041
|
|
|
@@ -2708,6 +3079,9 @@ packages:
|
|
|
2708
3079
|
boolbase@1.0.0:
|
|
2709
3080
|
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
2710
3081
|
|
|
3082
|
+
brace-expansion@1.1.18:
|
|
3083
|
+
resolution: {integrity: sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==}
|
|
3084
|
+
|
|
2711
3085
|
brace-expansion@2.1.4:
|
|
2712
3086
|
resolution: {integrity: sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==}
|
|
2713
3087
|
|
|
@@ -2777,6 +3151,10 @@ packages:
|
|
|
2777
3151
|
capital-case@1.0.4:
|
|
2778
3152
|
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
|
|
2779
3153
|
|
|
3154
|
+
chai@6.2.2:
|
|
3155
|
+
resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
|
|
3156
|
+
engines: {node: '>=18'}
|
|
3157
|
+
|
|
2780
3158
|
chalk@4.1.2:
|
|
2781
3159
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
2782
3160
|
engines: {node: '>=10'}
|
|
@@ -2834,6 +3212,9 @@ packages:
|
|
|
2834
3212
|
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
|
|
2835
3213
|
engines: {node: '>= 12'}
|
|
2836
3214
|
|
|
3215
|
+
client-only@0.0.1:
|
|
3216
|
+
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
3217
|
+
|
|
2837
3218
|
cliui@8.0.1:
|
|
2838
3219
|
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
|
2839
3220
|
engines: {node: '>=12'}
|
|
@@ -2896,6 +3277,9 @@ packages:
|
|
|
2896
3277
|
commander@2.20.3:
|
|
2897
3278
|
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
2898
3279
|
|
|
3280
|
+
concat-map@0.0.1:
|
|
3281
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
3282
|
+
|
|
2899
3283
|
concat-stream@2.0.0:
|
|
2900
3284
|
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
|
|
2901
3285
|
engines: {'0': node >= 6.0}
|
|
@@ -3106,10 +3490,25 @@ packages:
|
|
|
3106
3490
|
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
3107
3491
|
engines: {node: '>=12'}
|
|
3108
3492
|
|
|
3493
|
+
damerau-levenshtein@1.0.8:
|
|
3494
|
+
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
|
3495
|
+
|
|
3109
3496
|
data-uri-to-buffer@4.0.1:
|
|
3110
3497
|
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
|
|
3111
3498
|
engines: {node: '>= 12'}
|
|
3112
3499
|
|
|
3500
|
+
data-view-buffer@1.0.2:
|
|
3501
|
+
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
|
|
3502
|
+
engines: {node: '>= 0.4'}
|
|
3503
|
+
|
|
3504
|
+
data-view-byte-length@1.0.2:
|
|
3505
|
+
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
|
|
3506
|
+
engines: {node: '>= 0.4'}
|
|
3507
|
+
|
|
3508
|
+
data-view-byte-offset@1.0.1:
|
|
3509
|
+
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
|
|
3510
|
+
engines: {node: '>= 0.4'}
|
|
3511
|
+
|
|
3113
3512
|
dataloader@2.2.3:
|
|
3114
3513
|
resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==}
|
|
3115
3514
|
|
|
@@ -3201,6 +3600,10 @@ packages:
|
|
|
3201
3600
|
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
|
|
3202
3601
|
engines: {node: '>=12'}
|
|
3203
3602
|
|
|
3603
|
+
define-properties@1.2.1:
|
|
3604
|
+
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
|
|
3605
|
+
engines: {node: '>= 0.4'}
|
|
3606
|
+
|
|
3204
3607
|
delayed-stream@1.0.0:
|
|
3205
3608
|
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
3206
3609
|
engines: {node: '>=0.4.0'}
|
|
@@ -3231,6 +3634,10 @@ packages:
|
|
|
3231
3634
|
resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==}
|
|
3232
3635
|
engines: {node: '>=0.3.1'}
|
|
3233
3636
|
|
|
3637
|
+
doctrine@2.1.0:
|
|
3638
|
+
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
|
|
3639
|
+
engines: {node: '>=0.10.0'}
|
|
3640
|
+
|
|
3234
3641
|
dom-helpers@5.2.1:
|
|
3235
3642
|
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
|
|
3236
3643
|
|
|
@@ -3357,6 +3764,14 @@ packages:
|
|
|
3357
3764
|
error-ex@1.3.4:
|
|
3358
3765
|
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
|
|
3359
3766
|
|
|
3767
|
+
es-abstract-get@1.0.0:
|
|
3768
|
+
resolution: {integrity: sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==}
|
|
3769
|
+
engines: {node: '>= 0.4'}
|
|
3770
|
+
|
|
3771
|
+
es-abstract@1.24.2:
|
|
3772
|
+
resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==}
|
|
3773
|
+
engines: {node: '>= 0.4'}
|
|
3774
|
+
|
|
3360
3775
|
es-define-property@1.0.1:
|
|
3361
3776
|
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
3362
3777
|
engines: {node: '>= 0.4'}
|
|
@@ -3365,6 +3780,13 @@ packages:
|
|
|
3365
3780
|
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
3366
3781
|
engines: {node: '>= 0.4'}
|
|
3367
3782
|
|
|
3783
|
+
es-iterator-helpers@1.4.0:
|
|
3784
|
+
resolution: {integrity: sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==}
|
|
3785
|
+
engines: {node: '>= 0.4'}
|
|
3786
|
+
|
|
3787
|
+
es-module-lexer@2.3.2:
|
|
3788
|
+
resolution: {integrity: sha512-poHGpORABojJJucnV9KbOavETW8lBVnphkW77ER5/BQ5Fz7oXSoCNek7IH3vR5nRjdsEz926ibFYX8KtLQmdyw==}
|
|
3789
|
+
|
|
3368
3790
|
es-object-atoms@1.1.2:
|
|
3369
3791
|
resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
|
|
3370
3792
|
engines: {node: '>= 0.4'}
|
|
@@ -3373,6 +3795,14 @@ packages:
|
|
|
3373
3795
|
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
3374
3796
|
engines: {node: '>= 0.4'}
|
|
3375
3797
|
|
|
3798
|
+
es-shim-unscopables@1.1.0:
|
|
3799
|
+
resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
|
|
3800
|
+
engines: {node: '>= 0.4'}
|
|
3801
|
+
|
|
3802
|
+
es-to-primitive@1.3.4:
|
|
3803
|
+
resolution: {integrity: sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==}
|
|
3804
|
+
engines: {node: '>= 0.4'}
|
|
3805
|
+
|
|
3376
3806
|
esbuild@0.25.12:
|
|
3377
3807
|
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
3378
3808
|
engines: {node: '>=18'}
|
|
@@ -3398,6 +3828,84 @@ packages:
|
|
|
3398
3828
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
3399
3829
|
engines: {node: '>=10'}
|
|
3400
3830
|
|
|
3831
|
+
eslint-config-next@16.2.12:
|
|
3832
|
+
resolution: {integrity: sha512-iaaf4vvKo5h2LBdGt0JuRv7t0Ysqr9FMCiFxbptDg8LqOE//mIKR80DdpOnSVM7qjLH3jT8P0aFiwXxBEGZRXw==}
|
|
3833
|
+
peerDependencies:
|
|
3834
|
+
eslint: '>=9.0.0'
|
|
3835
|
+
typescript: '>=3.3.1'
|
|
3836
|
+
peerDependenciesMeta:
|
|
3837
|
+
typescript:
|
|
3838
|
+
optional: true
|
|
3839
|
+
|
|
3840
|
+
eslint-import-resolver-node@0.3.10:
|
|
3841
|
+
resolution: {integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==}
|
|
3842
|
+
|
|
3843
|
+
eslint-import-resolver-typescript@3.8.7:
|
|
3844
|
+
resolution: {integrity: sha512-U7k84gOzrfl09c33qrIbD3TkWTWu3nt3dK5sDajHSekfoLlYGusIwSdPlPzVeA6TFpi0Wpj+ZdBD8hX4hxPoww==}
|
|
3845
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
3846
|
+
peerDependencies:
|
|
3847
|
+
eslint: '*'
|
|
3848
|
+
eslint-plugin-import: '*'
|
|
3849
|
+
eslint-plugin-import-x: '*'
|
|
3850
|
+
peerDependenciesMeta:
|
|
3851
|
+
eslint-plugin-import:
|
|
3852
|
+
optional: true
|
|
3853
|
+
eslint-plugin-import-x:
|
|
3854
|
+
optional: true
|
|
3855
|
+
|
|
3856
|
+
eslint-module-utils@2.14.0:
|
|
3857
|
+
resolution: {integrity: sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==}
|
|
3858
|
+
engines: {node: '>=4'}
|
|
3859
|
+
peerDependencies:
|
|
3860
|
+
'@typescript-eslint/parser': '*'
|
|
3861
|
+
eslint: '*'
|
|
3862
|
+
eslint-import-resolver-node: '*'
|
|
3863
|
+
eslint-import-resolver-typescript: '*'
|
|
3864
|
+
eslint-import-resolver-webpack: '*'
|
|
3865
|
+
peerDependenciesMeta:
|
|
3866
|
+
'@typescript-eslint/parser':
|
|
3867
|
+
optional: true
|
|
3868
|
+
eslint:
|
|
3869
|
+
optional: true
|
|
3870
|
+
eslint-import-resolver-node:
|
|
3871
|
+
optional: true
|
|
3872
|
+
eslint-import-resolver-typescript:
|
|
3873
|
+
optional: true
|
|
3874
|
+
eslint-import-resolver-webpack:
|
|
3875
|
+
optional: true
|
|
3876
|
+
|
|
3877
|
+
eslint-plugin-import@2.32.0:
|
|
3878
|
+
resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
|
|
3879
|
+
engines: {node: '>=4'}
|
|
3880
|
+
peerDependencies:
|
|
3881
|
+
'@typescript-eslint/parser': '*'
|
|
3882
|
+
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
|
|
3883
|
+
peerDependenciesMeta:
|
|
3884
|
+
'@typescript-eslint/parser':
|
|
3885
|
+
optional: true
|
|
3886
|
+
|
|
3887
|
+
eslint-plugin-jsx-a11y@6.10.2:
|
|
3888
|
+
resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
|
|
3889
|
+
engines: {node: '>=4.0'}
|
|
3890
|
+
peerDependencies:
|
|
3891
|
+
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
|
|
3892
|
+
|
|
3893
|
+
eslint-plugin-react-hooks@7.1.1:
|
|
3894
|
+
resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==}
|
|
3895
|
+
engines: {node: '>=18'}
|
|
3896
|
+
peerDependencies:
|
|
3897
|
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0
|
|
3898
|
+
|
|
3899
|
+
eslint-plugin-react@7.37.5:
|
|
3900
|
+
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
|
|
3901
|
+
engines: {node: '>=4'}
|
|
3902
|
+
peerDependencies:
|
|
3903
|
+
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
|
|
3904
|
+
|
|
3905
|
+
eslint-scope@8.4.0:
|
|
3906
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
3907
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
3908
|
+
|
|
3401
3909
|
eslint-scope@9.1.2:
|
|
3402
3910
|
resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
|
|
3403
3911
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -3406,6 +3914,10 @@ packages:
|
|
|
3406
3914
|
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
3407
3915
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
3408
3916
|
|
|
3917
|
+
eslint-visitor-keys@4.2.1:
|
|
3918
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
3919
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
3920
|
+
|
|
3409
3921
|
eslint-visitor-keys@5.0.1:
|
|
3410
3922
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
3411
3923
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -3420,10 +3932,24 @@ packages:
|
|
|
3420
3932
|
jiti:
|
|
3421
3933
|
optional: true
|
|
3422
3934
|
|
|
3935
|
+
eslint@9.39.5:
|
|
3936
|
+
resolution: {integrity: sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==}
|
|
3937
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
3938
|
+
hasBin: true
|
|
3939
|
+
peerDependencies:
|
|
3940
|
+
jiti: '*'
|
|
3941
|
+
peerDependenciesMeta:
|
|
3942
|
+
jiti:
|
|
3943
|
+
optional: true
|
|
3944
|
+
|
|
3423
3945
|
esm@3.2.25:
|
|
3424
3946
|
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
|
|
3425
3947
|
engines: {node: '>=6'}
|
|
3426
3948
|
|
|
3949
|
+
espree@10.4.0:
|
|
3950
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
3951
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
3952
|
+
|
|
3427
3953
|
espree@11.2.0:
|
|
3428
3954
|
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
|
3429
3955
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -3445,6 +3971,9 @@ packages:
|
|
|
3445
3971
|
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
3446
3972
|
engines: {node: '>=4.0'}
|
|
3447
3973
|
|
|
3974
|
+
estree-walker@3.0.3:
|
|
3975
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
3976
|
+
|
|
3448
3977
|
esutils@2.0.3:
|
|
3449
3978
|
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
3450
3979
|
engines: {node: '>=0.10.0'}
|
|
@@ -3475,6 +4004,10 @@ packages:
|
|
|
3475
4004
|
resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==}
|
|
3476
4005
|
engines: {node: ^18.19.0 || >=20.5.0}
|
|
3477
4006
|
|
|
4007
|
+
expect-type@1.4.0:
|
|
4008
|
+
resolution: {integrity: sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==}
|
|
4009
|
+
engines: {node: '>=12.0.0'}
|
|
4010
|
+
|
|
3478
4011
|
express-rate-limit@7.5.1:
|
|
3479
4012
|
resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==}
|
|
3480
4013
|
engines: {node: '>= 16'}
|
|
@@ -3502,7 +4035,11 @@ packages:
|
|
|
3502
4035
|
resolution: {integrity: sha512-DjlFSM5Pk9cGcL0q5QXl66eGzx0N6szNgaswwc5ZphlBohjTVJSnGgI+rJVOgOi65qUoQnDZN4nDqi33udtydQ==}
|
|
3503
4036
|
engines: {node: '>=6.0.0'}
|
|
3504
4037
|
|
|
3505
|
-
fast-glob@3.3.
|
|
4038
|
+
fast-glob@3.3.1:
|
|
4039
|
+
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
|
|
4040
|
+
engines: {node: '>=8.6.0'}
|
|
4041
|
+
|
|
4042
|
+
fast-glob@3.3.3:
|
|
3506
4043
|
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
3507
4044
|
engines: {node: '>=8.6.0'}
|
|
3508
4045
|
|
|
@@ -3657,12 +4194,23 @@ packages:
|
|
|
3657
4194
|
function-bind@1.1.2:
|
|
3658
4195
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
3659
4196
|
|
|
4197
|
+
function.prototype.name@1.2.0:
|
|
4198
|
+
resolution: {integrity: sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==}
|
|
4199
|
+
engines: {node: '>= 0.4'}
|
|
4200
|
+
|
|
4201
|
+
functions-have-names@1.2.3:
|
|
4202
|
+
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
|
4203
|
+
|
|
3660
4204
|
fuzzysort@3.1.0:
|
|
3661
4205
|
resolution: {integrity: sha512-sR9BNCjBg6LNgwvxlBd0sBABvQitkLzoVY9MYYROQVX/FvfJ4Mai9LsGhDgd8qYdds0bY77VzYd5iuB+v5rwQQ==}
|
|
3662
4206
|
|
|
3663
4207
|
fzf@0.5.2:
|
|
3664
4208
|
resolution: {integrity: sha512-Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q==}
|
|
3665
4209
|
|
|
4210
|
+
generator-function@2.0.1:
|
|
4211
|
+
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
|
|
4212
|
+
engines: {node: '>= 0.4'}
|
|
4213
|
+
|
|
3666
4214
|
gensync@1.0.0-beta.2:
|
|
3667
4215
|
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
3668
4216
|
engines: {node: '>=6.9.0'}
|
|
@@ -3699,6 +4247,10 @@ packages:
|
|
|
3699
4247
|
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
|
|
3700
4248
|
engines: {node: '>=18'}
|
|
3701
4249
|
|
|
4250
|
+
get-symbol-description@1.1.0:
|
|
4251
|
+
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
|
|
4252
|
+
engines: {node: '>= 0.4'}
|
|
4253
|
+
|
|
3702
4254
|
get-tsconfig@4.14.1:
|
|
3703
4255
|
resolution: {integrity: sha512-Dz/6HxkrxgNehhxLVeyv8sad9UzF2xBVeaKBQNDfJ5XiSXmp2gTR0eO0RWiT2NCKS5aGP9jjkOMggTN90qU50A==}
|
|
3704
4256
|
|
|
@@ -3721,6 +4273,18 @@ packages:
|
|
|
3721
4273
|
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
|
|
3722
4274
|
hasBin: true
|
|
3723
4275
|
|
|
4276
|
+
globals@14.0.0:
|
|
4277
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
4278
|
+
engines: {node: '>=18'}
|
|
4279
|
+
|
|
4280
|
+
globals@16.4.0:
|
|
4281
|
+
resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==}
|
|
4282
|
+
engines: {node: '>=18'}
|
|
4283
|
+
|
|
4284
|
+
globalthis@1.0.4:
|
|
4285
|
+
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
|
|
4286
|
+
engines: {node: '>= 0.4'}
|
|
4287
|
+
|
|
3724
4288
|
goober@2.1.19:
|
|
3725
4289
|
resolution: {integrity: sha512-U7veizMqxyKlM58+Z5j2ngJBH/r9siDmxpvNxSw0PylF6WQvrASJEZrxh1hidRBJc2jqoBVSyOban5u8m+6Rxg==}
|
|
3726
4290
|
peerDependencies:
|
|
@@ -3795,6 +4359,10 @@ packages:
|
|
|
3795
4359
|
engines: {node: '>=0.4.7'}
|
|
3796
4360
|
hasBin: true
|
|
3797
4361
|
|
|
4362
|
+
has-bigints@1.1.0:
|
|
4363
|
+
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
|
|
4364
|
+
engines: {node: '>= 0.4'}
|
|
4365
|
+
|
|
3798
4366
|
has-flag@4.0.0:
|
|
3799
4367
|
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
3800
4368
|
engines: {node: '>=8'}
|
|
@@ -3802,6 +4370,10 @@ packages:
|
|
|
3802
4370
|
has-property-descriptors@1.0.2:
|
|
3803
4371
|
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
|
3804
4372
|
|
|
4373
|
+
has-proto@1.2.0:
|
|
4374
|
+
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
|
|
4375
|
+
engines: {node: '>= 0.4'}
|
|
4376
|
+
|
|
3805
4377
|
has-symbols@1.1.0:
|
|
3806
4378
|
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
3807
4379
|
engines: {node: '>= 0.4'}
|
|
@@ -3820,6 +4392,12 @@ packages:
|
|
|
3820
4392
|
headers-polyfill@5.0.1:
|
|
3821
4393
|
resolution: {integrity: sha512-1TJ6Fih/b8h5TIcv+1+Hw0PDQWJTKDKzFZzcKOiW1wJza3XoAQlkCuXLbymPYB8+ZQyw8mHvdw560e8zVFIWyA==}
|
|
3822
4394
|
|
|
4395
|
+
hermes-estree@0.25.1:
|
|
4396
|
+
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
|
|
4397
|
+
|
|
4398
|
+
hermes-parser@0.25.1:
|
|
4399
|
+
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
|
|
4400
|
+
|
|
3823
4401
|
hono@4.13.0:
|
|
3824
4402
|
resolution: {integrity: sha512-jhunvfHWxd7J5EFfSgH4xsYJzSe/lfqbUCxiyyeaQasUsXeEHXtzVid+7EOGByc5JnFa23SSFL3Y2RV/z1T+eQ==}
|
|
3825
4403
|
engines: {node: '>=16.9.0'}
|
|
@@ -3922,6 +4500,10 @@ packages:
|
|
|
3922
4500
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
3923
4501
|
engines: {node: '>= 4'}
|
|
3924
4502
|
|
|
4503
|
+
ignore@7.0.6:
|
|
4504
|
+
resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==}
|
|
4505
|
+
engines: {node: '>= 4'}
|
|
4506
|
+
|
|
3925
4507
|
image-size@2.0.2:
|
|
3926
4508
|
resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==}
|
|
3927
4509
|
engines: {node: '>=16.x'}
|
|
@@ -3947,6 +4529,10 @@ packages:
|
|
|
3947
4529
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
3948
4530
|
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
3949
4531
|
|
|
4532
|
+
internal-slot@1.1.0:
|
|
4533
|
+
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
|
|
4534
|
+
engines: {node: '>= 0.4'}
|
|
4535
|
+
|
|
3950
4536
|
internmap@2.0.3:
|
|
3951
4537
|
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
|
|
3952
4538
|
engines: {node: '>=12'}
|
|
@@ -3962,17 +4548,48 @@ packages:
|
|
|
3962
4548
|
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
|
3963
4549
|
engines: {node: '>= 0.10'}
|
|
3964
4550
|
|
|
4551
|
+
is-array-buffer@3.0.5:
|
|
4552
|
+
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
|
|
4553
|
+
engines: {node: '>= 0.4'}
|
|
4554
|
+
|
|
3965
4555
|
is-arrayish@0.2.1:
|
|
3966
4556
|
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
|
3967
4557
|
|
|
4558
|
+
is-async-function@2.1.1:
|
|
4559
|
+
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
|
|
4560
|
+
engines: {node: '>= 0.4'}
|
|
4561
|
+
|
|
4562
|
+
is-bigint@1.1.0:
|
|
4563
|
+
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
|
|
4564
|
+
engines: {node: '>= 0.4'}
|
|
4565
|
+
|
|
3968
4566
|
is-binary-path@2.1.0:
|
|
3969
4567
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
3970
4568
|
engines: {node: '>=8'}
|
|
3971
4569
|
|
|
4570
|
+
is-boolean-object@1.2.2:
|
|
4571
|
+
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
|
|
4572
|
+
engines: {node: '>= 0.4'}
|
|
4573
|
+
|
|
4574
|
+
is-bun-module@1.3.0:
|
|
4575
|
+
resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
|
|
4576
|
+
|
|
3972
4577
|
is-callable@1.2.7:
|
|
3973
4578
|
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
|
|
3974
4579
|
engines: {node: '>= 0.4'}
|
|
3975
4580
|
|
|
4581
|
+
is-core-module@2.16.2:
|
|
4582
|
+
resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
|
|
4583
|
+
engines: {node: '>= 0.4'}
|
|
4584
|
+
|
|
4585
|
+
is-data-view@1.0.2:
|
|
4586
|
+
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
|
|
4587
|
+
engines: {node: '>= 0.4'}
|
|
4588
|
+
|
|
4589
|
+
is-date-object@1.1.0:
|
|
4590
|
+
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
|
|
4591
|
+
engines: {node: '>= 0.4'}
|
|
4592
|
+
|
|
3976
4593
|
is-docker@2.2.1:
|
|
3977
4594
|
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
|
|
3978
4595
|
engines: {node: '>=8'}
|
|
@@ -3983,14 +4600,26 @@ packages:
|
|
|
3983
4600
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
3984
4601
|
hasBin: true
|
|
3985
4602
|
|
|
4603
|
+
is-document.all@1.0.0:
|
|
4604
|
+
resolution: {integrity: sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==}
|
|
4605
|
+
engines: {node: '>= 0.4'}
|
|
4606
|
+
|
|
3986
4607
|
is-extglob@2.1.1:
|
|
3987
4608
|
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
3988
4609
|
engines: {node: '>=0.10.0'}
|
|
3989
4610
|
|
|
4611
|
+
is-finalizationregistry@1.1.1:
|
|
4612
|
+
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
|
|
4613
|
+
engines: {node: '>= 0.4'}
|
|
4614
|
+
|
|
3990
4615
|
is-fullwidth-code-point@3.0.0:
|
|
3991
4616
|
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
3992
4617
|
engines: {node: '>=8'}
|
|
3993
4618
|
|
|
4619
|
+
is-generator-function@1.1.2:
|
|
4620
|
+
resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
|
|
4621
|
+
engines: {node: '>= 0.4'}
|
|
4622
|
+
|
|
3994
4623
|
is-glob@4.0.3:
|
|
3995
4624
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
3996
4625
|
engines: {node: '>=0.10.0'}
|
|
@@ -4015,9 +4644,21 @@ packages:
|
|
|
4015
4644
|
is-json@2.0.1:
|
|
4016
4645
|
resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==}
|
|
4017
4646
|
|
|
4647
|
+
is-map@2.0.3:
|
|
4648
|
+
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
|
|
4649
|
+
engines: {node: '>= 0.4'}
|
|
4650
|
+
|
|
4651
|
+
is-negative-zero@2.0.3:
|
|
4652
|
+
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
|
|
4653
|
+
engines: {node: '>= 0.4'}
|
|
4654
|
+
|
|
4018
4655
|
is-node-process@1.2.0:
|
|
4019
4656
|
resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
|
|
4020
4657
|
|
|
4658
|
+
is-number-object@1.1.1:
|
|
4659
|
+
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
|
|
4660
|
+
engines: {node: '>= 0.4'}
|
|
4661
|
+
|
|
4021
4662
|
is-number@7.0.0:
|
|
4022
4663
|
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
4023
4664
|
engines: {node: '>=0.12.0'}
|
|
@@ -4045,10 +4686,22 @@ packages:
|
|
|
4045
4686
|
is-promise@4.0.0:
|
|
4046
4687
|
resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
|
|
4047
4688
|
|
|
4689
|
+
is-regex@1.2.1:
|
|
4690
|
+
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
|
|
4691
|
+
engines: {node: '>= 0.4'}
|
|
4692
|
+
|
|
4048
4693
|
is-regexp@3.1.0:
|
|
4049
4694
|
resolution: {integrity: sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==}
|
|
4050
4695
|
engines: {node: '>=12'}
|
|
4051
4696
|
|
|
4697
|
+
is-set@2.0.3:
|
|
4698
|
+
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
|
|
4699
|
+
engines: {node: '>= 0.4'}
|
|
4700
|
+
|
|
4701
|
+
is-shared-array-buffer@1.0.4:
|
|
4702
|
+
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
|
|
4703
|
+
engines: {node: '>= 0.4'}
|
|
4704
|
+
|
|
4052
4705
|
is-stream@2.0.1:
|
|
4053
4706
|
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
|
4054
4707
|
engines: {node: '>=8'}
|
|
@@ -4057,6 +4710,14 @@ packages:
|
|
|
4057
4710
|
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
|
|
4058
4711
|
engines: {node: '>=18'}
|
|
4059
4712
|
|
|
4713
|
+
is-string@1.1.1:
|
|
4714
|
+
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
|
|
4715
|
+
engines: {node: '>= 0.4'}
|
|
4716
|
+
|
|
4717
|
+
is-symbol@1.1.1:
|
|
4718
|
+
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
|
|
4719
|
+
engines: {node: '>= 0.4'}
|
|
4720
|
+
|
|
4060
4721
|
is-typed-array@1.1.15:
|
|
4061
4722
|
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
|
|
4062
4723
|
engines: {node: '>= 0.4'}
|
|
@@ -4073,6 +4734,18 @@ packages:
|
|
|
4073
4734
|
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
|
|
4074
4735
|
engines: {node: '>=18'}
|
|
4075
4736
|
|
|
4737
|
+
is-weakmap@2.0.2:
|
|
4738
|
+
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
|
|
4739
|
+
engines: {node: '>= 0.4'}
|
|
4740
|
+
|
|
4741
|
+
is-weakref@1.1.1:
|
|
4742
|
+
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
|
|
4743
|
+
engines: {node: '>= 0.4'}
|
|
4744
|
+
|
|
4745
|
+
is-weakset@2.0.4:
|
|
4746
|
+
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
|
|
4747
|
+
engines: {node: '>= 0.4'}
|
|
4748
|
+
|
|
4076
4749
|
is-wsl@2.2.0:
|
|
4077
4750
|
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
|
|
4078
4751
|
engines: {node: '>=8'}
|
|
@@ -4102,6 +4775,10 @@ packages:
|
|
|
4102
4775
|
resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==}
|
|
4103
4776
|
engines: {node: '>=6'}
|
|
4104
4777
|
|
|
4778
|
+
iterator.prototype@1.1.5:
|
|
4779
|
+
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
|
|
4780
|
+
engines: {node: '>= 0.4'}
|
|
4781
|
+
|
|
4105
4782
|
jackspeak@3.4.3:
|
|
4106
4783
|
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
|
4107
4784
|
|
|
@@ -4158,6 +4835,10 @@ packages:
|
|
|
4158
4835
|
json-parse-even-better-errors@2.3.1:
|
|
4159
4836
|
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
|
4160
4837
|
|
|
4838
|
+
json-schema-to-ts@3.1.1:
|
|
4839
|
+
resolution: {integrity: sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==}
|
|
4840
|
+
engines: {node: '>=16'}
|
|
4841
|
+
|
|
4161
4842
|
json-schema-traverse@0.4.1:
|
|
4162
4843
|
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
4163
4844
|
|
|
@@ -4173,6 +4854,10 @@ packages:
|
|
|
4173
4854
|
json-stable-stringify-without-jsonify@1.0.1:
|
|
4174
4855
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
4175
4856
|
|
|
4857
|
+
json5@1.0.2:
|
|
4858
|
+
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
|
|
4859
|
+
hasBin: true
|
|
4860
|
+
|
|
4176
4861
|
json5@2.2.3:
|
|
4177
4862
|
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
4178
4863
|
engines: {node: '>=6'}
|
|
@@ -4181,6 +4866,10 @@ packages:
|
|
|
4181
4866
|
jsonfile@6.2.1:
|
|
4182
4867
|
resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
|
|
4183
4868
|
|
|
4869
|
+
jsx-ast-utils@3.3.5:
|
|
4870
|
+
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
|
|
4871
|
+
engines: {node: '>=4.0'}
|
|
4872
|
+
|
|
4184
4873
|
juice@11.1.1:
|
|
4185
4874
|
resolution: {integrity: sha512-4SBfZqKcc6DrIS+5b/WiGoWaZsdUPBH+e6SbRlNjJpaIRtfoBhYReAtobIEW6mcLeFFDXLBJMuZwkJLkBJjs2w==}
|
|
4186
4875
|
engines: {node: '>=18.17'}
|
|
@@ -4201,6 +4890,13 @@ packages:
|
|
|
4201
4890
|
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
|
4202
4891
|
engines: {node: '>=6'}
|
|
4203
4892
|
|
|
4893
|
+
language-subtag-registry@0.3.23:
|
|
4894
|
+
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
|
|
4895
|
+
|
|
4896
|
+
language-tags@1.0.9:
|
|
4897
|
+
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
|
|
4898
|
+
engines: {node: '>=0.10'}
|
|
4899
|
+
|
|
4204
4900
|
leven@3.1.0:
|
|
4205
4901
|
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
|
|
4206
4902
|
engines: {node: '>=6'}
|
|
@@ -4322,6 +5018,9 @@ packages:
|
|
|
4322
5018
|
lodash.memoize@4.1.2:
|
|
4323
5019
|
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
|
|
4324
5020
|
|
|
5021
|
+
lodash.merge@4.6.2:
|
|
5022
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
5023
|
+
|
|
4325
5024
|
lodash.omit@4.5.0:
|
|
4326
5025
|
resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
|
|
4327
5026
|
deprecated: This package is deprecated. Use destructuring assignment syntax instead.
|
|
@@ -4353,6 +5052,9 @@ packages:
|
|
|
4353
5052
|
long@4.0.0:
|
|
4354
5053
|
resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==}
|
|
4355
5054
|
|
|
5055
|
+
long@5.3.2:
|
|
5056
|
+
resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
|
|
5057
|
+
|
|
4356
5058
|
loose-envify@1.4.0:
|
|
4357
5059
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
4358
5060
|
hasBin: true
|
|
@@ -4475,6 +5177,9 @@ packages:
|
|
|
4475
5177
|
resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==}
|
|
4476
5178
|
engines: {node: 18 || 20 || >=22}
|
|
4477
5179
|
|
|
5180
|
+
minimatch@3.1.5:
|
|
5181
|
+
resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
|
|
5182
|
+
|
|
4478
5183
|
minimatch@9.0.9:
|
|
4479
5184
|
resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
|
|
4480
5185
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
@@ -4662,6 +5367,27 @@ packages:
|
|
|
4662
5367
|
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
4663
5368
|
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
4664
5369
|
|
|
5370
|
+
next@16.2.12:
|
|
5371
|
+
resolution: {integrity: sha512-iD59eYQWmbFcEbX7v/acG5DRym9iw1DdaPoD0WTA920naWsE25wShzJW4+UvAs8MK9EC2kBfIH6vtto1H1PHGw==}
|
|
5372
|
+
engines: {node: '>=20.9.0'}
|
|
5373
|
+
hasBin: true
|
|
5374
|
+
peerDependencies:
|
|
5375
|
+
'@opentelemetry/api': ^1.1.0
|
|
5376
|
+
'@playwright/test': ^1.51.1
|
|
5377
|
+
babel-plugin-react-compiler: '*'
|
|
5378
|
+
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
5379
|
+
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
5380
|
+
sass: ^1.3.0
|
|
5381
|
+
peerDependenciesMeta:
|
|
5382
|
+
'@opentelemetry/api':
|
|
5383
|
+
optional: true
|
|
5384
|
+
'@playwright/test':
|
|
5385
|
+
optional: true
|
|
5386
|
+
babel-plugin-react-compiler:
|
|
5387
|
+
optional: true
|
|
5388
|
+
sass:
|
|
5389
|
+
optional: true
|
|
5390
|
+
|
|
4665
5391
|
no-case@3.0.4:
|
|
4666
5392
|
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
|
|
4667
5393
|
|
|
@@ -4677,6 +5403,10 @@ packages:
|
|
|
4677
5403
|
engines: {node: '>=10.5.0'}
|
|
4678
5404
|
deprecated: Use your platform's native DOMException instead
|
|
4679
5405
|
|
|
5406
|
+
node-exports-info@1.6.2:
|
|
5407
|
+
resolution: {integrity: sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==}
|
|
5408
|
+
engines: {node: '>= 0.4'}
|
|
5409
|
+
|
|
4680
5410
|
node-fetch@2.7.0:
|
|
4681
5411
|
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
|
|
4682
5412
|
engines: {node: 4.x || >=6.0.0}
|
|
@@ -4730,6 +5460,10 @@ packages:
|
|
|
4730
5460
|
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
4731
5461
|
engines: {node: '>= 0.4'}
|
|
4732
5462
|
|
|
5463
|
+
object-keys@1.1.1:
|
|
5464
|
+
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
|
|
5465
|
+
engines: {node: '>= 0.4'}
|
|
5466
|
+
|
|
4733
5467
|
object-path@0.11.8:
|
|
4734
5468
|
resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==}
|
|
4735
5469
|
engines: {node: '>= 10.12.0'}
|
|
@@ -4738,9 +5472,33 @@ packages:
|
|
|
4738
5472
|
resolution: {integrity: sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==}
|
|
4739
5473
|
engines: {node: '>= 10'}
|
|
4740
5474
|
|
|
5475
|
+
object.assign@4.1.7:
|
|
5476
|
+
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
|
|
5477
|
+
engines: {node: '>= 0.4'}
|
|
5478
|
+
|
|
5479
|
+
object.entries@1.1.9:
|
|
5480
|
+
resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
|
|
5481
|
+
engines: {node: '>= 0.4'}
|
|
5482
|
+
|
|
5483
|
+
object.fromentries@2.0.8:
|
|
5484
|
+
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
|
|
5485
|
+
engines: {node: '>= 0.4'}
|
|
5486
|
+
|
|
5487
|
+
object.groupby@1.0.3:
|
|
5488
|
+
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
|
|
5489
|
+
engines: {node: '>= 0.4'}
|
|
5490
|
+
|
|
5491
|
+
object.values@1.2.1:
|
|
5492
|
+
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
|
|
5493
|
+
engines: {node: '>= 0.4'}
|
|
5494
|
+
|
|
4741
5495
|
observable-fns@0.6.1:
|
|
4742
5496
|
resolution: {integrity: sha512-9gRK4+sRWzeN6AOewNBTLXir7Zl/i3GB6Yl26gK4flxz8BXVpD3kt8amREmWNb0mxYOGDotvE5a4N+PtGGKdkg==}
|
|
4743
5497
|
|
|
5498
|
+
obug@2.1.4:
|
|
5499
|
+
resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
|
|
5500
|
+
engines: {node: '>=12.20.0'}
|
|
5501
|
+
|
|
4744
5502
|
on-finished@2.4.1:
|
|
4745
5503
|
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
4746
5504
|
engines: {node: '>= 0.8'}
|
|
@@ -4786,6 +5544,10 @@ packages:
|
|
|
4786
5544
|
outvariant@1.4.3:
|
|
4787
5545
|
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
|
|
4788
5546
|
|
|
5547
|
+
own-keys@1.0.2:
|
|
5548
|
+
resolution: {integrity: sha512-19YVAg7T+WTrxggPukVq7DjTv6+PJ867TmhCvBsYwmbFCsZd344rq2Ld1p0wo8f8Qrrhgp82c6FJRqdXWtSEhg==}
|
|
5549
|
+
engines: {node: '>= 0.4'}
|
|
5550
|
+
|
|
4789
5551
|
p-limit@2.3.0:
|
|
4790
5552
|
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
|
|
4791
5553
|
engines: {node: '>=6'}
|
|
@@ -4865,6 +5627,9 @@ packages:
|
|
|
4865
5627
|
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
|
|
4866
5628
|
engines: {node: '>=12'}
|
|
4867
5629
|
|
|
5630
|
+
path-parse@1.0.7:
|
|
5631
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
5632
|
+
|
|
4868
5633
|
path-scurry@1.11.1:
|
|
4869
5634
|
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
|
4870
5635
|
engines: {node: '>=16 || 14 >=14.18'}
|
|
@@ -5126,6 +5891,10 @@ packages:
|
|
|
5126
5891
|
postcss-value-parser@4.2.0:
|
|
5127
5892
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
5128
5893
|
|
|
5894
|
+
postcss@8.4.31:
|
|
5895
|
+
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
5896
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
5897
|
+
|
|
5129
5898
|
postcss@8.5.25:
|
|
5130
5899
|
resolution: {integrity: sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==}
|
|
5131
5900
|
engines: {node: ^10 || ^12 || >=14}
|
|
@@ -5228,6 +5997,10 @@ packages:
|
|
|
5228
5997
|
proto-list@1.2.4:
|
|
5229
5998
|
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
|
|
5230
5999
|
|
|
6000
|
+
protobufjs@7.6.5:
|
|
6001
|
+
resolution: {integrity: sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw==}
|
|
6002
|
+
engines: {node: '>=12.0.0'}
|
|
6003
|
+
|
|
5231
6004
|
proxy-addr@2.0.7:
|
|
5232
6005
|
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
|
|
5233
6006
|
engines: {node: '>= 0.10'}
|
|
@@ -5345,6 +6118,10 @@ packages:
|
|
|
5345
6118
|
react: '>=16.6.0'
|
|
5346
6119
|
react-dom: '>=16.6.0'
|
|
5347
6120
|
|
|
6121
|
+
react@19.2.4:
|
|
6122
|
+
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
|
|
6123
|
+
engines: {node: '>=0.10.0'}
|
|
6124
|
+
|
|
5348
6125
|
react@19.2.8:
|
|
5349
6126
|
resolution: {integrity: sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==}
|
|
5350
6127
|
engines: {node: '>=0.10.0'}
|
|
@@ -5387,6 +6164,14 @@ packages:
|
|
|
5387
6164
|
reflect-metadata@0.2.2:
|
|
5388
6165
|
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
|
|
5389
6166
|
|
|
6167
|
+
reflect.getprototypeof@1.0.10:
|
|
6168
|
+
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
|
|
6169
|
+
engines: {node: '>= 0.4'}
|
|
6170
|
+
|
|
6171
|
+
regexp.prototype.flags@1.5.4:
|
|
6172
|
+
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
|
|
6173
|
+
engines: {node: '>= 0.4'}
|
|
6174
|
+
|
|
5390
6175
|
require-directory@2.1.1:
|
|
5391
6176
|
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
5392
6177
|
engines: {node: '>=0.10.0'}
|
|
@@ -5408,6 +6193,11 @@ packages:
|
|
|
5408
6193
|
resolve-pkg-maps@1.0.0:
|
|
5409
6194
|
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
5410
6195
|
|
|
6196
|
+
resolve@2.0.0-next.7:
|
|
6197
|
+
resolution: {integrity: sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==}
|
|
6198
|
+
engines: {node: '>= 0.4'}
|
|
6199
|
+
hasBin: true
|
|
6200
|
+
|
|
5411
6201
|
restore-cursor@3.1.0:
|
|
5412
6202
|
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
|
|
5413
6203
|
engines: {node: '>=8'}
|
|
@@ -5449,9 +6239,21 @@ packages:
|
|
|
5449
6239
|
rxjs@7.8.2:
|
|
5450
6240
|
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
|
|
5451
6241
|
|
|
6242
|
+
safe-array-concat@1.1.4:
|
|
6243
|
+
resolution: {integrity: sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==}
|
|
6244
|
+
engines: {node: '>=0.4'}
|
|
6245
|
+
|
|
5452
6246
|
safe-buffer@5.2.1:
|
|
5453
6247
|
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
5454
6248
|
|
|
6249
|
+
safe-push-apply@1.0.0:
|
|
6250
|
+
resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
|
|
6251
|
+
engines: {node: '>= 0.4'}
|
|
6252
|
+
|
|
6253
|
+
safe-regex-test@1.1.0:
|
|
6254
|
+
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
|
|
6255
|
+
engines: {node: '>= 0.4'}
|
|
6256
|
+
|
|
5455
6257
|
safer-buffer@2.1.2:
|
|
5456
6258
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
5457
6259
|
|
|
@@ -5507,6 +6309,14 @@ packages:
|
|
|
5507
6309
|
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
|
|
5508
6310
|
engines: {node: '>= 0.4'}
|
|
5509
6311
|
|
|
6312
|
+
set-function-name@2.0.2:
|
|
6313
|
+
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
|
|
6314
|
+
engines: {node: '>= 0.4'}
|
|
6315
|
+
|
|
6316
|
+
set-proto@1.0.0:
|
|
6317
|
+
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
|
|
6318
|
+
engines: {node: '>= 0.4'}
|
|
6319
|
+
|
|
5510
6320
|
setprototypeof@1.2.0:
|
|
5511
6321
|
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
5512
6322
|
|
|
@@ -5547,6 +6357,9 @@ packages:
|
|
|
5547
6357
|
resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==}
|
|
5548
6358
|
engines: {node: '>= 0.4'}
|
|
5549
6359
|
|
|
6360
|
+
siginfo@2.0.0:
|
|
6361
|
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
|
|
6362
|
+
|
|
5550
6363
|
signal-exit@3.0.7:
|
|
5551
6364
|
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
5552
6365
|
|
|
@@ -5589,14 +6402,27 @@ packages:
|
|
|
5589
6402
|
resolution: {integrity: sha512-ed7OK4e9ywpE7pgRMkMQmZDPKSVdm0oX5IEtZiKnFucSF0zu6c80GZBe38UqHuVhTWJ9xsKgSMjCG2bml86KvA==}
|
|
5590
6403
|
engines: {node: '>=14'}
|
|
5591
6404
|
|
|
6405
|
+
stable-hash@0.0.4:
|
|
6406
|
+
resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
|
|
6407
|
+
|
|
6408
|
+
stackback@0.0.2:
|
|
6409
|
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
6410
|
+
|
|
5592
6411
|
statuses@2.0.2:
|
|
5593
6412
|
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
5594
6413
|
engines: {node: '>= 0.8'}
|
|
5595
6414
|
|
|
6415
|
+
std-env@4.2.0:
|
|
6416
|
+
resolution: {integrity: sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==}
|
|
6417
|
+
|
|
5596
6418
|
stdin-discarder@0.2.2:
|
|
5597
6419
|
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
|
|
5598
6420
|
engines: {node: '>=18'}
|
|
5599
6421
|
|
|
6422
|
+
stop-iteration-iterator@1.1.0:
|
|
6423
|
+
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
|
|
6424
|
+
engines: {node: '>= 0.4'}
|
|
6425
|
+
|
|
5600
6426
|
streamsearch@1.1.0:
|
|
5601
6427
|
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
|
5602
6428
|
engines: {node: '>=10.0.0'}
|
|
@@ -5616,6 +6442,29 @@ packages:
|
|
|
5616
6442
|
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
5617
6443
|
engines: {node: '>=18'}
|
|
5618
6444
|
|
|
6445
|
+
string.prototype.includes@2.0.1:
|
|
6446
|
+
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
6447
|
+
engines: {node: '>= 0.4'}
|
|
6448
|
+
|
|
6449
|
+
string.prototype.matchall@4.0.12:
|
|
6450
|
+
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
|
|
6451
|
+
engines: {node: '>= 0.4'}
|
|
6452
|
+
|
|
6453
|
+
string.prototype.repeat@1.0.0:
|
|
6454
|
+
resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
|
|
6455
|
+
|
|
6456
|
+
string.prototype.trim@1.2.11:
|
|
6457
|
+
resolution: {integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==}
|
|
6458
|
+
engines: {node: '>= 0.4'}
|
|
6459
|
+
|
|
6460
|
+
string.prototype.trimend@1.0.10:
|
|
6461
|
+
resolution: {integrity: sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==}
|
|
6462
|
+
engines: {node: '>= 0.4'}
|
|
6463
|
+
|
|
6464
|
+
string.prototype.trimstart@1.0.8:
|
|
6465
|
+
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
|
|
6466
|
+
engines: {node: '>= 0.4'}
|
|
6467
|
+
|
|
5619
6468
|
string_decoder@1.3.0:
|
|
5620
6469
|
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
5621
6470
|
|
|
@@ -5643,6 +6492,10 @@ packages:
|
|
|
5643
6492
|
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
|
|
5644
6493
|
engines: {node: '>=18'}
|
|
5645
6494
|
|
|
6495
|
+
strip-json-comments@3.1.1:
|
|
6496
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
6497
|
+
engines: {node: '>=8'}
|
|
6498
|
+
|
|
5646
6499
|
strip-json-comments@5.0.3:
|
|
5647
6500
|
resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==}
|
|
5648
6501
|
engines: {node: '>=14.16'}
|
|
@@ -5655,6 +6508,19 @@ packages:
|
|
|
5655
6508
|
resolution: {integrity: sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==}
|
|
5656
6509
|
engines: {node: '>=16'}
|
|
5657
6510
|
|
|
6511
|
+
styled-jsx@5.1.6:
|
|
6512
|
+
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
|
|
6513
|
+
engines: {node: '>= 12.0.0'}
|
|
6514
|
+
peerDependencies:
|
|
6515
|
+
'@babel/core': '*'
|
|
6516
|
+
babel-plugin-macros: '*'
|
|
6517
|
+
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
|
|
6518
|
+
peerDependenciesMeta:
|
|
6519
|
+
'@babel/core':
|
|
6520
|
+
optional: true
|
|
6521
|
+
babel-plugin-macros:
|
|
6522
|
+
optional: true
|
|
6523
|
+
|
|
5658
6524
|
stylehacks@7.0.11:
|
|
5659
6525
|
resolution: {integrity: sha512-iODNfhXVLqc5LADs+Y6Oh5wJuK5ZcHbVng8aiK3y9pjMQdc5hLrBW0eFU6FtnpNrE6PoEg/MmFTU4waotj5WNg==}
|
|
5660
6526
|
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
|
|
@@ -5671,6 +6537,10 @@ packages:
|
|
|
5671
6537
|
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
5672
6538
|
engines: {node: '>=8'}
|
|
5673
6539
|
|
|
6540
|
+
supports-preserve-symlinks-flag@1.0.0:
|
|
6541
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
6542
|
+
engines: {node: '>= 0.4'}
|
|
6543
|
+
|
|
5674
6544
|
svgo@4.0.2:
|
|
5675
6545
|
resolution: {integrity: sha512-ekx94z1rRc5LDi6oSUaeRnYhd0UOJxdtQCL2rF8xpWxD3TPAsISWOrxezqGovqS38GRZOdpDfvQe3ts6F7nsng==}
|
|
5676
6546
|
engines: {node: '>=16'}
|
|
@@ -5709,6 +6579,9 @@ packages:
|
|
|
5709
6579
|
tiny-worker@2.3.0:
|
|
5710
6580
|
resolution: {integrity: sha512-pJ70wq5EAqTAEl9IkGzA+fN0836rycEuz2Cn6yeZ6FRzlVS5IDOkFHpIoEsksPRQV34GDqXm65+OlnZqUSyK2g==}
|
|
5711
6581
|
|
|
6582
|
+
tinybench@2.9.0:
|
|
6583
|
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
|
|
6584
|
+
|
|
5712
6585
|
tinyexec@1.3.0:
|
|
5713
6586
|
resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==}
|
|
5714
6587
|
engines: {node: '>=18'}
|
|
@@ -5717,6 +6590,10 @@ packages:
|
|
|
5717
6590
|
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
|
5718
6591
|
engines: {node: '>=12.0.0'}
|
|
5719
6592
|
|
|
6593
|
+
tinyrainbow@3.1.1:
|
|
6594
|
+
resolution: {integrity: sha512-yau8yJdTt989Mm0Bd/236QnzEiPf2xLLTqUZRUJOo/3CB078LSwzei343DgtJVmfJKJE3TMINY1u42SQsP6mXw==}
|
|
6595
|
+
engines: {node: '>=14.0.0'}
|
|
6596
|
+
|
|
5720
6597
|
tldts-core@7.4.10:
|
|
5721
6598
|
resolution: {integrity: sha512-KnQjp53ZekKgm/r3l+u8kJGGzYgrWdP8+Mql7a4vijh2WE0IrZWspQj/TpTxDho/YxO+AnOZnIjQcCD+q6iJsw==}
|
|
5722
6599
|
|
|
@@ -5747,6 +6624,9 @@ packages:
|
|
|
5747
6624
|
tr46@0.0.3:
|
|
5748
6625
|
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
5749
6626
|
|
|
6627
|
+
ts-algebra@2.0.0:
|
|
6628
|
+
resolution: {integrity: sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==}
|
|
6629
|
+
|
|
5750
6630
|
ts-api-utils@2.5.0:
|
|
5751
6631
|
resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
|
|
5752
6632
|
engines: {node: '>=18.12'}
|
|
@@ -5773,6 +6653,9 @@ packages:
|
|
|
5773
6653
|
'@swc/wasm':
|
|
5774
6654
|
optional: true
|
|
5775
6655
|
|
|
6656
|
+
tsconfig-paths@3.15.0:
|
|
6657
|
+
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
|
|
6658
|
+
|
|
5776
6659
|
tsconfig-paths@4.2.0:
|
|
5777
6660
|
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
|
|
5778
6661
|
engines: {node: '>=6'}
|
|
@@ -5816,6 +6699,18 @@ packages:
|
|
|
5816
6699
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
5817
6700
|
engines: {node: '>= 0.4'}
|
|
5818
6701
|
|
|
6702
|
+
typed-array-byte-length@1.0.3:
|
|
6703
|
+
resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
|
|
6704
|
+
engines: {node: '>= 0.4'}
|
|
6705
|
+
|
|
6706
|
+
typed-array-byte-offset@1.0.4:
|
|
6707
|
+
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
|
|
6708
|
+
engines: {node: '>= 0.4'}
|
|
6709
|
+
|
|
6710
|
+
typed-array-length@1.0.8:
|
|
6711
|
+
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
|
6712
|
+
engines: {node: '>= 0.4'}
|
|
6713
|
+
|
|
5819
6714
|
typedarray@0.0.6:
|
|
5820
6715
|
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
|
5821
6716
|
|
|
@@ -5874,11 +6769,23 @@ packages:
|
|
|
5874
6769
|
typeorm-aurora-data-api-driver:
|
|
5875
6770
|
optional: true
|
|
5876
6771
|
|
|
6772
|
+
typescript-eslint@8.65.0:
|
|
6773
|
+
resolution: {integrity: sha512-/ggrHAwyjENDusvyxbuqxAC2dTnZg/Z8F+fgQtYIz+L6n/9HfSlEZcFGV/NsMNa6CkGk0xUjUAFwC0vHOflvIA==}
|
|
6774
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
6775
|
+
peerDependencies:
|
|
6776
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
6777
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
6778
|
+
|
|
5877
6779
|
typescript@5.8.2:
|
|
5878
6780
|
resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
|
|
5879
6781
|
engines: {node: '>=14.17'}
|
|
5880
6782
|
hasBin: true
|
|
5881
6783
|
|
|
6784
|
+
typescript@6.0.3:
|
|
6785
|
+
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
|
6786
|
+
engines: {node: '>=14.17'}
|
|
6787
|
+
hasBin: true
|
|
6788
|
+
|
|
5882
6789
|
uglify-js@3.19.3:
|
|
5883
6790
|
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
|
|
5884
6791
|
engines: {node: '>=0.8.0'}
|
|
@@ -5892,8 +6799,12 @@ packages:
|
|
|
5892
6799
|
resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
|
|
5893
6800
|
engines: {node: '>=18'}
|
|
5894
6801
|
|
|
5895
|
-
|
|
5896
|
-
resolution: {integrity: sha512-
|
|
6802
|
+
unbox-primitive@1.1.0:
|
|
6803
|
+
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
|
|
6804
|
+
engines: {node: '>= 0.4'}
|
|
6805
|
+
|
|
6806
|
+
undici-types@7.18.2:
|
|
6807
|
+
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
5897
6808
|
|
|
5898
6809
|
undici@6.28.0:
|
|
5899
6810
|
resolution: {integrity: sha512-LIY910g9TI13YS95lrMFrs8Rm/u/irgHeTWoKCoteeJ04CUJ92eEfj0rVn+7VKMPBpUPiUoBKfhNyLI23EE/KA==}
|
|
@@ -6075,6 +6986,47 @@ packages:
|
|
|
6075
6986
|
yaml:
|
|
6076
6987
|
optional: true
|
|
6077
6988
|
|
|
6989
|
+
vitest@4.1.10:
|
|
6990
|
+
resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==}
|
|
6991
|
+
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
|
|
6992
|
+
hasBin: true
|
|
6993
|
+
peerDependencies:
|
|
6994
|
+
'@edge-runtime/vm': '*'
|
|
6995
|
+
'@opentelemetry/api': ^1.9.0
|
|
6996
|
+
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
|
|
6997
|
+
'@vitest/browser-playwright': 4.1.10
|
|
6998
|
+
'@vitest/browser-preview': 4.1.10
|
|
6999
|
+
'@vitest/browser-webdriverio': 4.1.10
|
|
7000
|
+
'@vitest/coverage-istanbul': 4.1.10
|
|
7001
|
+
'@vitest/coverage-v8': 4.1.10
|
|
7002
|
+
'@vitest/ui': 4.1.10
|
|
7003
|
+
happy-dom: '*'
|
|
7004
|
+
jsdom: '*'
|
|
7005
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
7006
|
+
peerDependenciesMeta:
|
|
7007
|
+
'@edge-runtime/vm':
|
|
7008
|
+
optional: true
|
|
7009
|
+
'@opentelemetry/api':
|
|
7010
|
+
optional: true
|
|
7011
|
+
'@types/node':
|
|
7012
|
+
optional: true
|
|
7013
|
+
'@vitest/browser-playwright':
|
|
7014
|
+
optional: true
|
|
7015
|
+
'@vitest/browser-preview':
|
|
7016
|
+
optional: true
|
|
7017
|
+
'@vitest/browser-webdriverio':
|
|
7018
|
+
optional: true
|
|
7019
|
+
'@vitest/coverage-istanbul':
|
|
7020
|
+
optional: true
|
|
7021
|
+
'@vitest/coverage-v8':
|
|
7022
|
+
optional: true
|
|
7023
|
+
'@vitest/ui':
|
|
7024
|
+
optional: true
|
|
7025
|
+
happy-dom:
|
|
7026
|
+
optional: true
|
|
7027
|
+
jsdom:
|
|
7028
|
+
optional: true
|
|
7029
|
+
|
|
6078
7030
|
w3c-keyname@2.2.8:
|
|
6079
7031
|
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
|
|
6080
7032
|
|
|
@@ -6111,6 +7063,18 @@ packages:
|
|
|
6111
7063
|
whatwg-url@5.0.0:
|
|
6112
7064
|
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
|
|
6113
7065
|
|
|
7066
|
+
which-boxed-primitive@1.1.1:
|
|
7067
|
+
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
|
|
7068
|
+
engines: {node: '>= 0.4'}
|
|
7069
|
+
|
|
7070
|
+
which-builtin-type@1.2.1:
|
|
7071
|
+
resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
|
|
7072
|
+
engines: {node: '>= 0.4'}
|
|
7073
|
+
|
|
7074
|
+
which-collection@1.0.2:
|
|
7075
|
+
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
|
|
7076
|
+
engines: {node: '>= 0.4'}
|
|
7077
|
+
|
|
6114
7078
|
which-typed-array@1.1.22:
|
|
6115
7079
|
resolution: {integrity: sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==}
|
|
6116
7080
|
engines: {node: '>= 0.4'}
|
|
@@ -6125,6 +7089,11 @@ packages:
|
|
|
6125
7089
|
engines: {node: ^16.13.0 || >=18.0.0}
|
|
6126
7090
|
hasBin: true
|
|
6127
7091
|
|
|
7092
|
+
why-is-node-running@2.3.0:
|
|
7093
|
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
|
|
7094
|
+
engines: {node: '>=8'}
|
|
7095
|
+
hasBin: true
|
|
7096
|
+
|
|
6128
7097
|
word-wrap@1.2.5:
|
|
6129
7098
|
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
6130
7099
|
engines: {node: '>=0.10.0'}
|
|
@@ -6216,6 +7185,12 @@ packages:
|
|
|
6216
7185
|
peerDependencies:
|
|
6217
7186
|
zod: ^3.25.28 || ^4
|
|
6218
7187
|
|
|
7188
|
+
zod-validation-error@4.0.2:
|
|
7189
|
+
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
|
|
7190
|
+
engines: {node: '>=18.0.0'}
|
|
7191
|
+
peerDependencies:
|
|
7192
|
+
zod: ^3.25.0 || ^4.0.0
|
|
7193
|
+
|
|
6219
7194
|
zod@3.25.76:
|
|
6220
7195
|
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
|
|
6221
7196
|
|
|
@@ -6866,8 +7841,21 @@ snapshots:
|
|
|
6866
7841
|
eslint: 10.8.0(jiti@2.7.0)(supports-color@7.2.0)
|
|
6867
7842
|
eslint-visitor-keys: 3.4.3
|
|
6868
7843
|
|
|
7844
|
+
'@eslint-community/eslint-utils@4.10.1(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))':
|
|
7845
|
+
dependencies:
|
|
7846
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
7847
|
+
eslint-visitor-keys: 3.4.3
|
|
7848
|
+
|
|
6869
7849
|
'@eslint-community/regexpp@4.12.2': {}
|
|
6870
7850
|
|
|
7851
|
+
'@eslint/config-array@0.21.2(supports-color@7.2.0)':
|
|
7852
|
+
dependencies:
|
|
7853
|
+
'@eslint/object-schema': 2.1.7
|
|
7854
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
7855
|
+
minimatch: 3.1.5
|
|
7856
|
+
transitivePeerDependencies:
|
|
7857
|
+
- supports-color
|
|
7858
|
+
|
|
6871
7859
|
'@eslint/config-array@0.23.5(supports-color@7.2.0)':
|
|
6872
7860
|
dependencies:
|
|
6873
7861
|
'@eslint/object-schema': 3.0.5
|
|
@@ -6876,16 +7864,47 @@ snapshots:
|
|
|
6876
7864
|
transitivePeerDependencies:
|
|
6877
7865
|
- supports-color
|
|
6878
7866
|
|
|
7867
|
+
'@eslint/config-helpers@0.4.2':
|
|
7868
|
+
dependencies:
|
|
7869
|
+
'@eslint/core': 0.17.0
|
|
7870
|
+
|
|
6879
7871
|
'@eslint/config-helpers@0.7.0':
|
|
6880
7872
|
dependencies:
|
|
6881
7873
|
'@eslint/core': 1.2.1
|
|
6882
7874
|
|
|
7875
|
+
'@eslint/core@0.17.0':
|
|
7876
|
+
dependencies:
|
|
7877
|
+
'@types/json-schema': 7.0.15
|
|
7878
|
+
|
|
6883
7879
|
'@eslint/core@1.2.1':
|
|
6884
7880
|
dependencies:
|
|
6885
7881
|
'@types/json-schema': 7.0.15
|
|
6886
7882
|
|
|
7883
|
+
'@eslint/eslintrc@3.3.6(supports-color@7.2.0)':
|
|
7884
|
+
dependencies:
|
|
7885
|
+
ajv: 6.15.0
|
|
7886
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
7887
|
+
espree: 10.4.0
|
|
7888
|
+
globals: 14.0.0
|
|
7889
|
+
ignore: 5.3.2
|
|
7890
|
+
import-fresh: 3.3.1
|
|
7891
|
+
js-yaml: 4.3.1
|
|
7892
|
+
minimatch: 3.1.5
|
|
7893
|
+
strip-json-comments: 3.1.1
|
|
7894
|
+
transitivePeerDependencies:
|
|
7895
|
+
- supports-color
|
|
7896
|
+
|
|
7897
|
+
'@eslint/js@9.39.5': {}
|
|
7898
|
+
|
|
7899
|
+
'@eslint/object-schema@2.1.7': {}
|
|
7900
|
+
|
|
6887
7901
|
'@eslint/object-schema@3.0.5': {}
|
|
6888
7902
|
|
|
7903
|
+
'@eslint/plugin-kit@0.4.1':
|
|
7904
|
+
dependencies:
|
|
7905
|
+
'@eslint/core': 0.17.0
|
|
7906
|
+
levn: 0.4.1
|
|
7907
|
+
|
|
6889
7908
|
'@eslint/plugin-kit@0.7.2':
|
|
6890
7909
|
dependencies:
|
|
6891
7910
|
'@eslint/core': 1.2.1
|
|
@@ -7012,7 +8031,7 @@ snapshots:
|
|
|
7012
8031
|
|
|
7013
8032
|
'@graphql-tools/schema@10.0.23(graphql@16.14.2)':
|
|
7014
8033
|
dependencies:
|
|
7015
|
-
'@graphql-tools/merge': 9.
|
|
8034
|
+
'@graphql-tools/merge': 9.2.2(graphql@16.14.2)
|
|
7016
8035
|
'@graphql-tools/utils': 10.8.6(graphql@16.14.2)
|
|
7017
8036
|
graphql: 16.14.2
|
|
7018
8037
|
tslib: 2.8.1
|
|
@@ -7085,12 +8104,13 @@ snapshots:
|
|
|
7085
8104
|
dependencies:
|
|
7086
8105
|
hono: 4.13.0
|
|
7087
8106
|
|
|
7088
|
-
'@hookform/resolvers@5.7.1(@sinclair/typebox@0.27.12)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(react-hook-form@7.84.0(react@19.2.8))(zod@4.4.3)':
|
|
8107
|
+
'@hookform/resolvers@5.7.1(@sinclair/typebox@0.27.12)(@standard-schema/spec@1.1.0)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(react-hook-form@7.84.0(react@19.2.8))(zod@4.4.3)':
|
|
7089
8108
|
dependencies:
|
|
7090
8109
|
'@standard-schema/utils': 0.3.0
|
|
7091
8110
|
react-hook-form: 7.84.0(react@19.2.8)
|
|
7092
8111
|
optionalDependencies:
|
|
7093
8112
|
'@sinclair/typebox': 0.27.12
|
|
8113
|
+
'@standard-schema/spec': 1.1.0
|
|
7094
8114
|
ajv: 8.20.0
|
|
7095
8115
|
ajv-formats: 2.1.1(ajv@8.20.0)
|
|
7096
8116
|
zod: 4.4.3
|
|
@@ -7209,30 +8229,30 @@ snapshots:
|
|
|
7209
8229
|
|
|
7210
8230
|
'@inquirer/ansi@2.0.7': {}
|
|
7211
8231
|
|
|
7212
|
-
'@inquirer/confirm@6.1.1(@types/node@
|
|
8232
|
+
'@inquirer/confirm@6.1.1(@types/node@24.13.3)':
|
|
7213
8233
|
dependencies:
|
|
7214
|
-
'@inquirer/core': 11.2.1(@types/node@
|
|
7215
|
-
'@inquirer/type': 4.0.7(@types/node@
|
|
8234
|
+
'@inquirer/core': 11.2.1(@types/node@24.13.3)
|
|
8235
|
+
'@inquirer/type': 4.0.7(@types/node@24.13.3)
|
|
7216
8236
|
optionalDependencies:
|
|
7217
|
-
'@types/node':
|
|
8237
|
+
'@types/node': 24.13.3
|
|
7218
8238
|
|
|
7219
|
-
'@inquirer/core@11.2.1(@types/node@
|
|
8239
|
+
'@inquirer/core@11.2.1(@types/node@24.13.3)':
|
|
7220
8240
|
dependencies:
|
|
7221
8241
|
'@inquirer/ansi': 2.0.7
|
|
7222
8242
|
'@inquirer/figures': 2.0.7
|
|
7223
|
-
'@inquirer/type': 4.0.7(@types/node@
|
|
8243
|
+
'@inquirer/type': 4.0.7(@types/node@24.13.3)
|
|
7224
8244
|
cli-width: 4.1.0
|
|
7225
8245
|
fast-wrap-ansi: 0.2.2
|
|
7226
8246
|
mute-stream: 3.0.0
|
|
7227
8247
|
signal-exit: 4.1.0
|
|
7228
8248
|
optionalDependencies:
|
|
7229
|
-
'@types/node':
|
|
8249
|
+
'@types/node': 24.13.3
|
|
7230
8250
|
|
|
7231
8251
|
'@inquirer/figures@2.0.7': {}
|
|
7232
8252
|
|
|
7233
|
-
'@inquirer/type@4.0.7(@types/node@
|
|
8253
|
+
'@inquirer/type@4.0.7(@types/node@24.13.3)':
|
|
7234
8254
|
optionalDependencies:
|
|
7235
|
-
'@types/node':
|
|
8255
|
+
'@types/node': 24.13.3
|
|
7236
8256
|
|
|
7237
8257
|
'@isaacs/cliui@8.0.2':
|
|
7238
8258
|
dependencies:
|
|
@@ -7245,6 +8265,11 @@ snapshots:
|
|
|
7245
8265
|
|
|
7246
8266
|
'@isaacs/cliui@9.0.0': {}
|
|
7247
8267
|
|
|
8268
|
+
'@jarwizz/commerce-sdk@0.3.0':
|
|
8269
|
+
dependencies:
|
|
8270
|
+
ajv: 8.20.0
|
|
8271
|
+
json-schema-to-ts: 3.1.1
|
|
8272
|
+
|
|
7248
8273
|
'@jest/schemas@29.6.3':
|
|
7249
8274
|
dependencies:
|
|
7250
8275
|
'@sinclair/typebox': 0.27.12
|
|
@@ -7254,7 +8279,7 @@ snapshots:
|
|
|
7254
8279
|
'@jest/schemas': 29.6.3
|
|
7255
8280
|
'@types/istanbul-lib-coverage': 2.0.6
|
|
7256
8281
|
'@types/istanbul-reports': 3.0.4
|
|
7257
|
-
'@types/node':
|
|
8282
|
+
'@types/node': 24.13.3
|
|
7258
8283
|
'@types/yargs': 17.0.35
|
|
7259
8284
|
chalk: 4.1.2
|
|
7260
8285
|
|
|
@@ -7369,11 +8394,11 @@ snapshots:
|
|
|
7369
8394
|
optionalDependencies:
|
|
7370
8395
|
'@lingui/babel-plugin-lingui-macro': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)
|
|
7371
8396
|
|
|
7372
|
-
'@lingui/vite-plugin@5.9.5(supports-color@7.2.0)(typescript@5.8.2)(vite@7.3.6(@types/node@
|
|
8397
|
+
'@lingui/vite-plugin@5.9.5(supports-color@7.2.0)(typescript@5.8.2)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))':
|
|
7373
8398
|
dependencies:
|
|
7374
8399
|
'@lingui/cli': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)
|
|
7375
8400
|
'@lingui/conf': 5.9.5(typescript@5.8.2)
|
|
7376
|
-
vite: 7.3.6(@types/node@
|
|
8401
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
7377
8402
|
transitivePeerDependencies:
|
|
7378
8403
|
- babel-plugin-macros
|
|
7379
8404
|
- supports-color
|
|
@@ -7424,7 +8449,7 @@ snapshots:
|
|
|
7424
8449
|
'@apollo/server': 4.13.0(graphql@16.14.2)(supports-color@7.2.0)
|
|
7425
8450
|
'@apollo/server-plugin-landing-page-graphql-playground': 4.0.1(@apollo/server@4.13.0(graphql@16.14.2)(supports-color@7.2.0))
|
|
7426
8451
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
7427
|
-
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
8452
|
+
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
7428
8453
|
'@nestjs/graphql': 13.1.0(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(graphql@16.14.2)(reflect-metadata@0.2.2)(ts-morph@21.0.1)
|
|
7429
8454
|
graphql: 16.14.2
|
|
7430
8455
|
iterall: 1.3.0
|
|
@@ -7443,7 +8468,7 @@ snapshots:
|
|
|
7443
8468
|
transitivePeerDependencies:
|
|
7444
8469
|
- supports-color
|
|
7445
8470
|
|
|
7446
|
-
'@nestjs/core@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
|
8471
|
+
'@nestjs/core@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)':
|
|
7447
8472
|
dependencies:
|
|
7448
8473
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
7449
8474
|
fast-safe-stringify: 2.1.1
|
|
@@ -7462,7 +8487,7 @@ snapshots:
|
|
|
7462
8487
|
'@graphql-tools/schema': 10.0.23(graphql@16.14.2)
|
|
7463
8488
|
'@graphql-tools/utils': 10.8.6(graphql@16.14.2)
|
|
7464
8489
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
7465
|
-
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
8490
|
+
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
7466
8491
|
'@nestjs/mapped-types': 2.1.0(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(reflect-metadata@0.2.2)
|
|
7467
8492
|
chokidar: 4.0.3
|
|
7468
8493
|
fast-glob: 3.3.3
|
|
@@ -7491,7 +8516,7 @@ snapshots:
|
|
|
7491
8516
|
'@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0)':
|
|
7492
8517
|
dependencies:
|
|
7493
8518
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
7494
|
-
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
8519
|
+
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
7495
8520
|
cors: 2.8.6
|
|
7496
8521
|
express: 5.2.1(supports-color@7.2.0)
|
|
7497
8522
|
multer: 2.2.0
|
|
@@ -7500,29 +8525,61 @@ snapshots:
|
|
|
7500
8525
|
transitivePeerDependencies:
|
|
7501
8526
|
- supports-color
|
|
7502
8527
|
|
|
7503
|
-
'@nestjs/typeorm@11.0.3(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)(typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
8528
|
+
'@nestjs/typeorm@11.0.3(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)(typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2)))':
|
|
7504
8529
|
dependencies:
|
|
7505
8530
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
7506
|
-
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
8531
|
+
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
7507
8532
|
reflect-metadata: 0.2.2
|
|
7508
8533
|
rxjs: 7.8.2
|
|
7509
|
-
typeorm: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
7510
|
-
|
|
7511
|
-
'@nodelib/fs.scandir@2.1.5':
|
|
7512
|
-
dependencies:
|
|
7513
|
-
'@nodelib/fs.stat': 2.0.5
|
|
7514
|
-
run-parallel: 1.2.0
|
|
8534
|
+
typeorm: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2))
|
|
7515
8535
|
|
|
7516
|
-
'@
|
|
8536
|
+
'@next/env@16.2.12': {}
|
|
7517
8537
|
|
|
7518
|
-
'@
|
|
8538
|
+
'@next/eslint-plugin-next@16.2.12':
|
|
7519
8539
|
dependencies:
|
|
7520
|
-
|
|
7521
|
-
fastq: 1.20.1
|
|
8540
|
+
fast-glob: 3.3.1
|
|
7522
8541
|
|
|
7523
|
-
'@
|
|
8542
|
+
'@next/swc-darwin-arm64@16.2.12':
|
|
8543
|
+
optional: true
|
|
7524
8544
|
|
|
7525
|
-
'@
|
|
8545
|
+
'@next/swc-darwin-x64@16.2.12':
|
|
8546
|
+
optional: true
|
|
8547
|
+
|
|
8548
|
+
'@next/swc-linux-arm64-gnu@16.2.12':
|
|
8549
|
+
optional: true
|
|
8550
|
+
|
|
8551
|
+
'@next/swc-linux-arm64-musl@16.2.12':
|
|
8552
|
+
optional: true
|
|
8553
|
+
|
|
8554
|
+
'@next/swc-linux-x64-gnu@16.2.12':
|
|
8555
|
+
optional: true
|
|
8556
|
+
|
|
8557
|
+
'@next/swc-linux-x64-musl@16.2.12':
|
|
8558
|
+
optional: true
|
|
8559
|
+
|
|
8560
|
+
'@next/swc-win32-arm64-msvc@16.2.12':
|
|
8561
|
+
optional: true
|
|
8562
|
+
|
|
8563
|
+
'@next/swc-win32-x64-msvc@16.2.12':
|
|
8564
|
+
optional: true
|
|
8565
|
+
|
|
8566
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
8567
|
+
dependencies:
|
|
8568
|
+
'@nodelib/fs.stat': 2.0.5
|
|
8569
|
+
run-parallel: 1.2.0
|
|
8570
|
+
|
|
8571
|
+
'@nodelib/fs.stat@2.0.5': {}
|
|
8572
|
+
|
|
8573
|
+
'@nodelib/fs.walk@1.2.8':
|
|
8574
|
+
dependencies:
|
|
8575
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
8576
|
+
fastq: 1.20.1
|
|
8577
|
+
|
|
8578
|
+
'@nolyfill/is-core-module@1.0.39': {}
|
|
8579
|
+
|
|
8580
|
+
'@one-ini/wasm@0.1.1': {}
|
|
8581
|
+
|
|
8582
|
+
'@open-draft/deferred-promise@2.2.0': {}
|
|
7526
8583
|
|
|
7527
8584
|
'@open-draft/deferred-promise@3.0.0': {}
|
|
7528
8585
|
|
|
@@ -7774,6 +8831,8 @@ snapshots:
|
|
|
7774
8831
|
'@rollup/rollup-win32-x64-msvc@4.62.4':
|
|
7775
8832
|
optional: true
|
|
7776
8833
|
|
|
8834
|
+
'@rtsao/scc@1.1.0': {}
|
|
8835
|
+
|
|
7777
8836
|
'@sec-ant/readable-stream@0.4.1': {}
|
|
7778
8837
|
|
|
7779
8838
|
'@sinclair/typebox@0.27.12': {}
|
|
@@ -7782,8 +8841,14 @@ snapshots:
|
|
|
7782
8841
|
|
|
7783
8842
|
'@sqltools/formatter@1.2.5': {}
|
|
7784
8843
|
|
|
8844
|
+
'@standard-schema/spec@1.1.0': {}
|
|
8845
|
+
|
|
7785
8846
|
'@standard-schema/utils@0.3.0': {}
|
|
7786
8847
|
|
|
8848
|
+
'@swc/helpers@0.5.15':
|
|
8849
|
+
dependencies:
|
|
8850
|
+
tslib: 2.8.1
|
|
8851
|
+
|
|
7787
8852
|
'@tabby_ai/hijri-converter@1.0.5': {}
|
|
7788
8853
|
|
|
7789
8854
|
'@tailwindcss/node@4.3.3':
|
|
@@ -7852,12 +8917,12 @@ snapshots:
|
|
|
7852
8917
|
postcss-selector-parser: 6.0.10
|
|
7853
8918
|
tailwindcss: 4.3.3
|
|
7854
8919
|
|
|
7855
|
-
'@tailwindcss/vite@4.3.3(vite@7.3.6(@types/node@
|
|
8920
|
+
'@tailwindcss/vite@4.3.3(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))':
|
|
7856
8921
|
dependencies:
|
|
7857
8922
|
'@tailwindcss/node': 4.3.3
|
|
7858
8923
|
'@tailwindcss/oxide': 4.3.3
|
|
7859
8924
|
tailwindcss: 4.3.3
|
|
7860
|
-
vite: 7.3.6(@types/node@
|
|
8925
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
7861
8926
|
|
|
7862
8927
|
'@tanstack/eslint-plugin-query@5.101.4(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@5.8.2)':
|
|
7863
8928
|
dependencies:
|
|
@@ -7957,7 +9022,7 @@ snapshots:
|
|
|
7957
9022
|
transitivePeerDependencies:
|
|
7958
9023
|
- supports-color
|
|
7959
9024
|
|
|
7960
|
-
'@tanstack/router-plugin@1.168.25(@tanstack/react-router@1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(esbuild@0.28.1)(rollup@4.62.4)(supports-color@7.2.0)(vite@7.3.6(@types/node@
|
|
9025
|
+
'@tanstack/router-plugin@1.168.25(@tanstack/react-router@1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(esbuild@0.28.1)(rollup@4.62.4)(supports-color@7.2.0)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))':
|
|
7961
9026
|
dependencies:
|
|
7962
9027
|
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
7963
9028
|
'@babel/template': 7.29.7
|
|
@@ -7966,11 +9031,11 @@ snapshots:
|
|
|
7966
9031
|
'@tanstack/router-generator': 1.167.23(supports-color@7.2.0)
|
|
7967
9032
|
'@tanstack/router-utils': 1.162.2(supports-color@7.2.0)
|
|
7968
9033
|
chokidar: 5.0.0
|
|
7969
|
-
unplugin: 3.3.0(esbuild@0.28.1)(rollup@4.62.4)(vite@7.3.6(@types/node@
|
|
9034
|
+
unplugin: 3.3.0(esbuild@0.28.1)(rollup@4.62.4)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
7970
9035
|
zod: 4.4.3
|
|
7971
9036
|
optionalDependencies:
|
|
7972
9037
|
'@tanstack/react-router': 1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
7973
|
-
vite: 7.3.6(@types/node@
|
|
9038
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
7974
9039
|
transitivePeerDependencies:
|
|
7975
9040
|
- '@farmfe/core'
|
|
7976
9041
|
- '@rspack/core'
|
|
@@ -8261,15 +9326,20 @@ snapshots:
|
|
|
8261
9326
|
'@types/body-parser@1.19.6':
|
|
8262
9327
|
dependencies:
|
|
8263
9328
|
'@types/connect': 3.4.38
|
|
8264
|
-
'@types/node':
|
|
9329
|
+
'@types/node': 24.13.3
|
|
8265
9330
|
|
|
8266
9331
|
'@types/busboy@1.5.4':
|
|
8267
9332
|
dependencies:
|
|
8268
|
-
'@types/node':
|
|
9333
|
+
'@types/node': 24.13.3
|
|
9334
|
+
|
|
9335
|
+
'@types/chai@5.2.3':
|
|
9336
|
+
dependencies:
|
|
9337
|
+
'@types/deep-eql': 4.0.2
|
|
9338
|
+
assertion-error: 2.0.1
|
|
8269
9339
|
|
|
8270
9340
|
'@types/connect@3.4.38':
|
|
8271
9341
|
dependencies:
|
|
8272
|
-
'@types/node':
|
|
9342
|
+
'@types/node': 24.13.3
|
|
8273
9343
|
|
|
8274
9344
|
'@types/d3-array@3.2.2': {}
|
|
8275
9345
|
|
|
@@ -8295,20 +9365,22 @@ snapshots:
|
|
|
8295
9365
|
|
|
8296
9366
|
'@types/d3-timer@3.0.2': {}
|
|
8297
9367
|
|
|
9368
|
+
'@types/deep-eql@4.0.2': {}
|
|
9369
|
+
|
|
8298
9370
|
'@types/esrecurse@4.3.1': {}
|
|
8299
9371
|
|
|
8300
9372
|
'@types/estree@1.0.9': {}
|
|
8301
9373
|
|
|
8302
9374
|
'@types/express-serve-static-core@4.19.9':
|
|
8303
9375
|
dependencies:
|
|
8304
|
-
'@types/node':
|
|
9376
|
+
'@types/node': 24.13.3
|
|
8305
9377
|
'@types/qs': 6.15.1
|
|
8306
9378
|
'@types/range-parser': 1.2.7
|
|
8307
9379
|
'@types/send': 1.2.1
|
|
8308
9380
|
|
|
8309
9381
|
'@types/express-serve-static-core@5.1.3':
|
|
8310
9382
|
dependencies:
|
|
8311
|
-
'@types/node':
|
|
9383
|
+
'@types/node': 24.13.3
|
|
8312
9384
|
'@types/qs': 6.15.1
|
|
8313
9385
|
'@types/range-parser': 1.2.7
|
|
8314
9386
|
'@types/send': 1.2.1
|
|
@@ -8330,7 +9402,7 @@ snapshots:
|
|
|
8330
9402
|
|
|
8331
9403
|
'@types/http-proxy@1.17.17':
|
|
8332
9404
|
dependencies:
|
|
8333
|
-
'@types/node':
|
|
9405
|
+
'@types/node': 24.13.3
|
|
8334
9406
|
|
|
8335
9407
|
'@types/istanbul-lib-coverage@2.0.6': {}
|
|
8336
9408
|
|
|
@@ -8344,22 +9416,24 @@ snapshots:
|
|
|
8344
9416
|
|
|
8345
9417
|
'@types/json-schema@7.0.15': {}
|
|
8346
9418
|
|
|
9419
|
+
'@types/json5@0.0.29': {}
|
|
9420
|
+
|
|
8347
9421
|
'@types/long@4.0.2': {}
|
|
8348
9422
|
|
|
8349
9423
|
'@types/mime@1.3.5': {}
|
|
8350
9424
|
|
|
8351
9425
|
'@types/node-fetch@2.6.13':
|
|
8352
9426
|
dependencies:
|
|
8353
|
-
'@types/node':
|
|
9427
|
+
'@types/node': 24.13.3
|
|
8354
9428
|
form-data: 4.0.6
|
|
8355
9429
|
|
|
8356
|
-
'@types/node@
|
|
9430
|
+
'@types/node@24.13.3':
|
|
8357
9431
|
dependencies:
|
|
8358
|
-
undici-types:
|
|
9432
|
+
undici-types: 7.18.2
|
|
8359
9433
|
|
|
8360
9434
|
'@types/nodemailer@8.0.1':
|
|
8361
9435
|
dependencies:
|
|
8362
|
-
'@types/node':
|
|
9436
|
+
'@types/node': 24.13.3
|
|
8363
9437
|
|
|
8364
9438
|
'@types/object-path@0.11.4': {}
|
|
8365
9439
|
|
|
@@ -8367,10 +9441,18 @@ snapshots:
|
|
|
8367
9441
|
|
|
8368
9442
|
'@types/range-parser@1.2.7': {}
|
|
8369
9443
|
|
|
9444
|
+
'@types/react-dom@19.2.3(@types/react@19.2.14)':
|
|
9445
|
+
dependencies:
|
|
9446
|
+
'@types/react': 19.2.14
|
|
9447
|
+
|
|
8370
9448
|
'@types/react-dom@19.2.4(@types/react@19.2.18)':
|
|
8371
9449
|
dependencies:
|
|
8372
9450
|
'@types/react': 19.2.18
|
|
8373
9451
|
|
|
9452
|
+
'@types/react@19.2.14':
|
|
9453
|
+
dependencies:
|
|
9454
|
+
csstype: 3.2.3
|
|
9455
|
+
|
|
8374
9456
|
'@types/react@19.2.18':
|
|
8375
9457
|
dependencies:
|
|
8376
9458
|
csstype: 3.2.3
|
|
@@ -8380,26 +9462,26 @@ snapshots:
|
|
|
8380
9462
|
'@types/send@0.17.6':
|
|
8381
9463
|
dependencies:
|
|
8382
9464
|
'@types/mime': 1.3.5
|
|
8383
|
-
'@types/node':
|
|
9465
|
+
'@types/node': 24.13.3
|
|
8384
9466
|
|
|
8385
9467
|
'@types/send@1.2.1':
|
|
8386
9468
|
dependencies:
|
|
8387
|
-
'@types/node':
|
|
9469
|
+
'@types/node': 24.13.3
|
|
8388
9470
|
|
|
8389
9471
|
'@types/serve-static@1.15.10':
|
|
8390
9472
|
dependencies:
|
|
8391
9473
|
'@types/http-errors': 2.0.5
|
|
8392
|
-
'@types/node':
|
|
9474
|
+
'@types/node': 24.13.3
|
|
8393
9475
|
'@types/send': 0.17.6
|
|
8394
9476
|
|
|
8395
9477
|
'@types/serve-static@2.2.0':
|
|
8396
9478
|
dependencies:
|
|
8397
9479
|
'@types/http-errors': 2.0.5
|
|
8398
|
-
'@types/node':
|
|
9480
|
+
'@types/node': 24.13.3
|
|
8399
9481
|
|
|
8400
9482
|
'@types/set-cookie-parser@2.4.10':
|
|
8401
9483
|
dependencies:
|
|
8402
|
-
'@types/node':
|
|
9484
|
+
'@types/node': 24.13.3
|
|
8403
9485
|
|
|
8404
9486
|
'@types/statuses@2.0.6': {}
|
|
8405
9487
|
|
|
@@ -8413,6 +9495,43 @@ snapshots:
|
|
|
8413
9495
|
dependencies:
|
|
8414
9496
|
'@types/yargs-parser': 21.0.3
|
|
8415
9497
|
|
|
9498
|
+
'@typescript-eslint/eslint-plugin@8.65.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9499
|
+
dependencies:
|
|
9500
|
+
'@eslint-community/regexpp': 4.12.2
|
|
9501
|
+
'@typescript-eslint/parser': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
9502
|
+
'@typescript-eslint/scope-manager': 8.65.0
|
|
9503
|
+
'@typescript-eslint/type-utils': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
9504
|
+
'@typescript-eslint/utils': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
9505
|
+
'@typescript-eslint/visitor-keys': 8.65.0
|
|
9506
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
9507
|
+
ignore: 7.0.6
|
|
9508
|
+
natural-compare: 1.4.0
|
|
9509
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
9510
|
+
typescript: 6.0.3
|
|
9511
|
+
transitivePeerDependencies:
|
|
9512
|
+
- supports-color
|
|
9513
|
+
|
|
9514
|
+
'@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9515
|
+
dependencies:
|
|
9516
|
+
'@typescript-eslint/scope-manager': 8.65.0
|
|
9517
|
+
'@typescript-eslint/types': 8.65.0
|
|
9518
|
+
'@typescript-eslint/typescript-estree': 8.65.0(supports-color@7.2.0)(typescript@6.0.3)
|
|
9519
|
+
'@typescript-eslint/visitor-keys': 8.65.0
|
|
9520
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
9521
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
9522
|
+
typescript: 6.0.3
|
|
9523
|
+
transitivePeerDependencies:
|
|
9524
|
+
- supports-color
|
|
9525
|
+
|
|
9526
|
+
'@typescript-eslint/project-service@8.65.0(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9527
|
+
dependencies:
|
|
9528
|
+
'@typescript-eslint/tsconfig-utils': 8.66.0(typescript@6.0.3)
|
|
9529
|
+
'@typescript-eslint/types': 8.66.0
|
|
9530
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
9531
|
+
typescript: 6.0.3
|
|
9532
|
+
transitivePeerDependencies:
|
|
9533
|
+
- supports-color
|
|
9534
|
+
|
|
8416
9535
|
'@typescript-eslint/project-service@8.66.0(supports-color@7.2.0)(typescript@5.8.2)':
|
|
8417
9536
|
dependencies:
|
|
8418
9537
|
'@typescript-eslint/tsconfig-utils': 8.66.0(typescript@5.8.2)
|
|
@@ -8422,17 +9541,59 @@ snapshots:
|
|
|
8422
9541
|
transitivePeerDependencies:
|
|
8423
9542
|
- supports-color
|
|
8424
9543
|
|
|
9544
|
+
'@typescript-eslint/scope-manager@8.65.0':
|
|
9545
|
+
dependencies:
|
|
9546
|
+
'@typescript-eslint/types': 8.65.0
|
|
9547
|
+
'@typescript-eslint/visitor-keys': 8.65.0
|
|
9548
|
+
|
|
8425
9549
|
'@typescript-eslint/scope-manager@8.66.0':
|
|
8426
9550
|
dependencies:
|
|
8427
9551
|
'@typescript-eslint/types': 8.66.0
|
|
8428
9552
|
'@typescript-eslint/visitor-keys': 8.66.0
|
|
8429
9553
|
|
|
9554
|
+
'@typescript-eslint/tsconfig-utils@8.65.0(typescript@6.0.3)':
|
|
9555
|
+
dependencies:
|
|
9556
|
+
typescript: 6.0.3
|
|
9557
|
+
|
|
8430
9558
|
'@typescript-eslint/tsconfig-utils@8.66.0(typescript@5.8.2)':
|
|
8431
9559
|
dependencies:
|
|
8432
9560
|
typescript: 5.8.2
|
|
8433
9561
|
|
|
9562
|
+
'@typescript-eslint/tsconfig-utils@8.66.0(typescript@6.0.3)':
|
|
9563
|
+
dependencies:
|
|
9564
|
+
typescript: 6.0.3
|
|
9565
|
+
|
|
9566
|
+
'@typescript-eslint/type-utils@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9567
|
+
dependencies:
|
|
9568
|
+
'@typescript-eslint/types': 8.65.0
|
|
9569
|
+
'@typescript-eslint/typescript-estree': 8.65.0(supports-color@7.2.0)(typescript@6.0.3)
|
|
9570
|
+
'@typescript-eslint/utils': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
9571
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
9572
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
9573
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
9574
|
+
typescript: 6.0.3
|
|
9575
|
+
transitivePeerDependencies:
|
|
9576
|
+
- supports-color
|
|
9577
|
+
|
|
9578
|
+
'@typescript-eslint/types@8.65.0': {}
|
|
9579
|
+
|
|
8434
9580
|
'@typescript-eslint/types@8.66.0': {}
|
|
8435
9581
|
|
|
9582
|
+
'@typescript-eslint/typescript-estree@8.65.0(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9583
|
+
dependencies:
|
|
9584
|
+
'@typescript-eslint/project-service': 8.65.0(supports-color@7.2.0)(typescript@6.0.3)
|
|
9585
|
+
'@typescript-eslint/tsconfig-utils': 8.65.0(typescript@6.0.3)
|
|
9586
|
+
'@typescript-eslint/types': 8.65.0
|
|
9587
|
+
'@typescript-eslint/visitor-keys': 8.65.0
|
|
9588
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
9589
|
+
minimatch: 10.2.6
|
|
9590
|
+
semver: 7.8.5
|
|
9591
|
+
tinyglobby: 0.2.17
|
|
9592
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
9593
|
+
typescript: 6.0.3
|
|
9594
|
+
transitivePeerDependencies:
|
|
9595
|
+
- supports-color
|
|
9596
|
+
|
|
8436
9597
|
'@typescript-eslint/typescript-estree@8.66.0(supports-color@7.2.0)(typescript@5.8.2)':
|
|
8437
9598
|
dependencies:
|
|
8438
9599
|
'@typescript-eslint/project-service': 8.66.0(supports-color@7.2.0)(typescript@5.8.2)
|
|
@@ -8448,6 +9609,17 @@ snapshots:
|
|
|
8448
9609
|
transitivePeerDependencies:
|
|
8449
9610
|
- supports-color
|
|
8450
9611
|
|
|
9612
|
+
'@typescript-eslint/utils@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)':
|
|
9613
|
+
dependencies:
|
|
9614
|
+
'@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))
|
|
9615
|
+
'@typescript-eslint/scope-manager': 8.65.0
|
|
9616
|
+
'@typescript-eslint/types': 8.65.0
|
|
9617
|
+
'@typescript-eslint/typescript-estree': 8.65.0(supports-color@7.2.0)(typescript@6.0.3)
|
|
9618
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
9619
|
+
typescript: 6.0.3
|
|
9620
|
+
transitivePeerDependencies:
|
|
9621
|
+
- supports-color
|
|
9622
|
+
|
|
8451
9623
|
'@typescript-eslint/utils@8.66.0(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@5.8.2)':
|
|
8452
9624
|
dependencies:
|
|
8453
9625
|
'@eslint-community/eslint-utils': 4.10.1(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))
|
|
@@ -8459,6 +9631,11 @@ snapshots:
|
|
|
8459
9631
|
transitivePeerDependencies:
|
|
8460
9632
|
- supports-color
|
|
8461
9633
|
|
|
9634
|
+
'@typescript-eslint/visitor-keys@8.65.0':
|
|
9635
|
+
dependencies:
|
|
9636
|
+
'@typescript-eslint/types': 8.65.0
|
|
9637
|
+
eslint-visitor-keys: 5.0.1
|
|
9638
|
+
|
|
8462
9639
|
'@typescript-eslint/visitor-keys@8.66.0':
|
|
8463
9640
|
dependencies:
|
|
8464
9641
|
'@typescript-eslint/types': 8.66.0
|
|
@@ -8469,10 +9646,40 @@ snapshots:
|
|
|
8469
9646
|
react: 19.2.8
|
|
8470
9647
|
react-dom: 19.2.8(react@19.2.8)
|
|
8471
9648
|
|
|
8472
|
-
'@
|
|
9649
|
+
'@valkey/valkey-glide-darwin-arm64@2.5.1':
|
|
9650
|
+
optional: true
|
|
9651
|
+
|
|
9652
|
+
'@valkey/valkey-glide-darwin-x64@2.5.1':
|
|
9653
|
+
optional: true
|
|
9654
|
+
|
|
9655
|
+
'@valkey/valkey-glide-linux-arm64-gnu@2.5.1':
|
|
9656
|
+
optional: true
|
|
9657
|
+
|
|
9658
|
+
'@valkey/valkey-glide-linux-arm64-musl@2.5.1':
|
|
9659
|
+
optional: true
|
|
9660
|
+
|
|
9661
|
+
'@valkey/valkey-glide-linux-x64-gnu@2.5.1':
|
|
9662
|
+
optional: true
|
|
9663
|
+
|
|
9664
|
+
'@valkey/valkey-glide-linux-x64-musl@2.5.1':
|
|
9665
|
+
optional: true
|
|
9666
|
+
|
|
9667
|
+
'@valkey/valkey-glide@2.5.1':
|
|
9668
|
+
dependencies:
|
|
9669
|
+
long: 5.3.2
|
|
9670
|
+
protobufjs: 7.6.5
|
|
9671
|
+
optionalDependencies:
|
|
9672
|
+
'@valkey/valkey-glide-darwin-arm64': 2.5.1
|
|
9673
|
+
'@valkey/valkey-glide-darwin-x64': 2.5.1
|
|
9674
|
+
'@valkey/valkey-glide-linux-arm64-gnu': 2.5.1
|
|
9675
|
+
'@valkey/valkey-glide-linux-arm64-musl': 2.5.1
|
|
9676
|
+
'@valkey/valkey-glide-linux-x64-gnu': 2.5.1
|
|
9677
|
+
'@valkey/valkey-glide-linux-x64-musl': 2.5.1
|
|
9678
|
+
|
|
9679
|
+
'@vendure-io/design-tokens@1.2.0(@types/node@24.13.3)(supports-color@7.2.0)(typescript@5.8.2)':
|
|
8473
9680
|
dependencies:
|
|
8474
9681
|
'@tailwindcss/typography': 0.5.20(tailwindcss@4.3.3)
|
|
8475
|
-
shadcn: 3.8.5(@types/node@
|
|
9682
|
+
shadcn: 3.8.5(@types/node@24.13.3)(supports-color@7.2.0)(typescript@5.8.2)
|
|
8476
9683
|
tailwindcss: 4.3.3
|
|
8477
9684
|
tw-animate-css: 1.4.0
|
|
8478
9685
|
transitivePeerDependencies:
|
|
@@ -8482,10 +9689,10 @@ snapshots:
|
|
|
8482
9689
|
- supports-color
|
|
8483
9690
|
- typescript
|
|
8484
9691
|
|
|
8485
|
-
'@vendure-io/ui@1.3.0(@date-fns/tz@1.5.0)(@types/node@
|
|
9692
|
+
'@vendure-io/ui@1.3.0(@date-fns/tz@1.5.0)(@types/node@24.13.3)(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(next-themes@0.4.6(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(next@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.4))(react-dom@19.2.8(react@19.2.8))(react-hook-form@7.84.0(react@19.2.8))(react@19.2.8)(supports-color@7.2.0)(typescript@5.8.2)':
|
|
8486
9693
|
dependencies:
|
|
8487
9694
|
'@base-ui/react': 1.7.0(@date-fns/tz@1.5.0)(@types/react@19.2.18)(date-fns@4.4.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8488
|
-
'@vendure-io/design-tokens': 1.2.0(@types/node@
|
|
9695
|
+
'@vendure-io/design-tokens': 1.2.0(@types/node@24.13.3)(supports-color@7.2.0)(typescript@5.8.2)
|
|
8489
9696
|
class-variance-authority: 0.7.1
|
|
8490
9697
|
clsx: 2.1.1
|
|
8491
9698
|
cmdk: 1.1.1(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
@@ -8503,6 +9710,7 @@ snapshots:
|
|
|
8503
9710
|
tailwind-merge: 3.6.0
|
|
8504
9711
|
vaul: 1.1.2(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8505
9712
|
optionalDependencies:
|
|
9713
|
+
next: 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.4)
|
|
8506
9714
|
next-themes: 0.4.6(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8507
9715
|
react-hook-form: 7.84.0(react@19.2.8)
|
|
8508
9716
|
transitivePeerDependencies:
|
|
@@ -8527,7 +9735,7 @@ snapshots:
|
|
|
8527
9735
|
transitivePeerDependencies:
|
|
8528
9736
|
- supports-color
|
|
8529
9737
|
|
|
8530
|
-
'@vendure/cli@3.7.1(@types/node@
|
|
9738
|
+
'@vendure/cli@3.7.1(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)':
|
|
8531
9739
|
dependencies:
|
|
8532
9740
|
'@clack/prompts': 0.7.0
|
|
8533
9741
|
'@vendure/common': 3.7.1
|
|
@@ -8540,10 +9748,10 @@ snapshots:
|
|
|
8540
9748
|
picocolors: 1.1.1
|
|
8541
9749
|
strip-json-comments: 5.0.3
|
|
8542
9750
|
ts-morph: 21.0.1
|
|
8543
|
-
ts-node: 10.9.2(@types/node@
|
|
9751
|
+
ts-node: 10.9.2(@types/node@24.13.3)(typescript@5.8.2)
|
|
8544
9752
|
tsconfig-paths: 4.2.0
|
|
8545
9753
|
typescript: 5.8.2
|
|
8546
|
-
vite: 7.3.6(@types/node@
|
|
9754
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
8547
9755
|
transitivePeerDependencies:
|
|
8548
9756
|
- '@swc/core'
|
|
8549
9757
|
- '@swc/wasm'
|
|
@@ -8561,16 +9769,16 @@ snapshots:
|
|
|
8561
9769
|
|
|
8562
9770
|
'@vendure/common@3.7.1': {}
|
|
8563
9771
|
|
|
8564
|
-
'@vendure/core@3.7.1(pg@8.22.0)(supports-color@7.2.0)(ts-morph@21.0.1)(ts-node@10.9.2(@types/node@
|
|
9772
|
+
'@vendure/core@3.7.1(pg@8.22.0)(supports-color@7.2.0)(ts-morph@21.0.1)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2))(typescript@5.8.2)':
|
|
8565
9773
|
dependencies:
|
|
8566
9774
|
'@apollo/server': 4.13.0(graphql@16.14.2)(supports-color@7.2.0)
|
|
8567
9775
|
'@graphql-tools/stitch': 10.2.2(graphql@16.14.2)
|
|
8568
9776
|
'@nestjs/apollo': 13.1.0(@apollo/server@4.13.0(graphql@16.14.2)(supports-color@7.2.0))(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(@nestjs/graphql@13.1.0(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(graphql@16.14.2)(reflect-metadata@0.2.2)(ts-morph@21.0.1))(graphql@16.14.2)
|
|
8569
9777
|
'@nestjs/common': 11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0)
|
|
8570
|
-
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
9778
|
+
'@nestjs/core': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/platform-express@11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0))(reflect-metadata@0.2.2)(rxjs@7.8.2)
|
|
8571
9779
|
'@nestjs/graphql': 13.1.0(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(graphql@16.14.2)(reflect-metadata@0.2.2)(ts-morph@21.0.1)
|
|
8572
9780
|
'@nestjs/platform-express': 11.1.28(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(supports-color@7.2.0)
|
|
8573
|
-
'@nestjs/typeorm': 11.0.3(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)(typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
9781
|
+
'@nestjs/typeorm': 11.0.3(@nestjs/common@11.1.28(reflect-metadata@0.2.2)(rxjs@7.8.2)(supports-color@7.2.0))(@nestjs/core@11.1.28)(reflect-metadata@0.2.2)(rxjs@7.8.2)(typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2)))
|
|
8574
9782
|
'@types/express': 5.0.6
|
|
8575
9783
|
'@vendure/common': 3.7.1
|
|
8576
9784
|
bcrypt: 6.0.0
|
|
@@ -8601,7 +9809,7 @@ snapshots:
|
|
|
8601
9809
|
reflect-metadata: 0.2.2
|
|
8602
9810
|
rxjs: 7.8.2
|
|
8603
9811
|
semver: 7.8.5
|
|
8604
|
-
typeorm: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
9812
|
+
typeorm: 0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2))
|
|
8605
9813
|
transitivePeerDependencies:
|
|
8606
9814
|
- '@apollo/gateway'
|
|
8607
9815
|
- '@apollo/subgraph'
|
|
@@ -8636,7 +9844,7 @@ snapshots:
|
|
|
8636
9844
|
- uWebSockets.js
|
|
8637
9845
|
- utf-8-validate
|
|
8638
9846
|
|
|
8639
|
-
'@vendure/dashboard@3.7.1(@date-fns/tz@1.5.0)(@floating-ui/dom@1.8.0)(@sinclair/typebox@0.27.12)(@tanstack/router-core@1.171.17)(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/extensions@3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2))(@types/node@
|
|
9847
|
+
'@vendure/dashboard@3.7.1(@date-fns/tz@1.5.0)(@floating-ui/dom@1.8.0)(@sinclair/typebox@0.27.12)(@standard-schema/spec@1.1.0)(@tanstack/router-core@1.171.17)(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/extensions@3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2))(@types/node@24.13.3)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(csstype@3.2.3)(esbuild@0.28.1)(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(express@5.2.1(supports-color@7.2.0))(jiti@2.7.0)(lightningcss@1.32.0)(next@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.4))(rollup@4.62.4)(supports-color@7.2.0)(tsx@4.20.3)(typescript@5.8.2)':
|
|
8640
9848
|
dependencies:
|
|
8641
9849
|
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
8642
9850
|
'@babel/preset-react': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)
|
|
@@ -8647,20 +9855,20 @@ snapshots:
|
|
|
8647
9855
|
'@fontsource-variable/geist-mono': 5.3.0
|
|
8648
9856
|
'@fontsource-variable/inter': 5.3.0
|
|
8649
9857
|
'@fontsource-variable/public-sans': 5.3.0
|
|
8650
|
-
'@hookform/resolvers': 5.7.1(@sinclair/typebox@0.27.12)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(react-hook-form@7.84.0(react@19.2.8))(zod@4.4.3)
|
|
9858
|
+
'@hookform/resolvers': 5.7.1(@sinclair/typebox@0.27.12)(@standard-schema/spec@1.1.0)(ajv-formats@2.1.1(ajv@8.20.0))(ajv@8.20.0)(react-hook-form@7.84.0(react@19.2.8))(zod@4.4.3)
|
|
8651
9859
|
'@lingui/babel-plugin-lingui-macro': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)
|
|
8652
9860
|
'@lingui/cli': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)
|
|
8653
9861
|
'@lingui/core': 5.9.5(@lingui/babel-plugin-lingui-macro@5.9.5(supports-color@7.2.0)(typescript@5.8.2))
|
|
8654
9862
|
'@lingui/react': 5.9.5(@lingui/babel-plugin-lingui-macro@5.9.5(supports-color@7.2.0)(typescript@5.8.2))(react@19.2.8)
|
|
8655
|
-
'@lingui/vite-plugin': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)(vite@7.3.6(@types/node@
|
|
8656
|
-
'@tailwindcss/vite': 4.3.3(vite@7.3.6(@types/node@
|
|
9863
|
+
'@lingui/vite-plugin': 5.9.5(supports-color@7.2.0)(typescript@5.8.2)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
9864
|
+
'@tailwindcss/vite': 4.3.3(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
8657
9865
|
'@tanstack/eslint-plugin-query': 5.101.4(eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@5.8.2)
|
|
8658
9866
|
'@tanstack/react-query': 5.101.4(react@19.2.8)
|
|
8659
9867
|
'@tanstack/react-query-devtools': 5.101.4(@tanstack/react-query@5.101.4(react@19.2.8))(react@19.2.8)
|
|
8660
9868
|
'@tanstack/react-router': 1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8661
9869
|
'@tanstack/react-table': 8.21.3(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8662
9870
|
'@tanstack/router-devtools': 1.167.1(@tanstack/react-router@1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(@tanstack/router-core@1.171.17)(csstype@3.2.3)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8663
|
-
'@tanstack/router-plugin': 1.168.25(@tanstack/react-router@1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(esbuild@0.28.1)(rollup@4.62.4)(supports-color@7.2.0)(vite@7.3.6(@types/node@
|
|
9871
|
+
'@tanstack/router-plugin': 1.168.25(@tanstack/react-router@1.170.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(esbuild@0.28.1)(rollup@4.62.4)(supports-color@7.2.0)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
8664
9872
|
'@tiptap/extension-floating-menu': 3.29.2(@floating-ui/dom@1.8.0)(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2)
|
|
8665
9873
|
'@tiptap/extension-image': 3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))
|
|
8666
9874
|
'@tiptap/extension-placeholder': 3.29.2(@tiptap/extensions@3.29.2(@tiptap/core@3.29.2(@tiptap/pm@3.29.2))(@tiptap/pm@3.29.2))
|
|
@@ -8672,9 +9880,9 @@ snapshots:
|
|
|
8672
9880
|
'@types/react': 19.2.18
|
|
8673
9881
|
'@types/react-dom': 19.2.4(@types/react@19.2.18)
|
|
8674
9882
|
'@uidotdev/usehooks': 2.4.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8675
|
-
'@vendure-io/design-tokens': 1.2.0(@types/node@
|
|
8676
|
-
'@vendure-io/ui': 1.3.0(@date-fns/tz@1.5.0)(@types/node@
|
|
8677
|
-
'@vitejs/plugin-react': 5.2.0(supports-color@7.2.0)(vite@7.3.6(@types/node@
|
|
9883
|
+
'@vendure-io/design-tokens': 1.2.0(@types/node@24.13.3)(supports-color@7.2.0)(typescript@5.8.2)
|
|
9884
|
+
'@vendure-io/ui': 1.3.0(@date-fns/tz@1.5.0)(@types/node@24.13.3)(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(next-themes@0.4.6(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(next@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.4))(react-dom@19.2.8(react@19.2.8))(react-hook-form@7.84.0(react@19.2.8))(react@19.2.8)(supports-color@7.2.0)(typescript@5.8.2)
|
|
9885
|
+
'@vitejs/plugin-react': 5.2.0(supports-color@7.2.0)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
8678
9886
|
acorn: 8.18.0
|
|
8679
9887
|
acorn-walk: 8.3.5
|
|
8680
9888
|
awesome-graphql-client: 3.0.0
|
|
@@ -8703,7 +9911,7 @@ snapshots:
|
|
|
8703
9911
|
tsconfig-paths: 4.2.0
|
|
8704
9912
|
tw-animate-css: 1.4.0
|
|
8705
9913
|
vaul: 1.1.2(@types/react-dom@19.2.4(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
|
8706
|
-
vite: 7.3.6(@types/node@
|
|
9914
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
8707
9915
|
zod: 4.4.3
|
|
8708
9916
|
optionalDependencies:
|
|
8709
9917
|
lightningcss-linux-arm64-musl: 1.33.0
|
|
@@ -8795,7 +10003,7 @@ snapshots:
|
|
|
8795
10003
|
transitivePeerDependencies:
|
|
8796
10004
|
- supports-color
|
|
8797
10005
|
|
|
8798
|
-
'@vitejs/plugin-react@5.2.0(supports-color@7.2.0)(vite@7.3.6(@types/node@
|
|
10006
|
+
'@vitejs/plugin-react@5.2.0(supports-color@7.2.0)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))':
|
|
8799
10007
|
dependencies:
|
|
8800
10008
|
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
8801
10009
|
'@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))
|
|
@@ -8803,10 +10011,52 @@ snapshots:
|
|
|
8803
10011
|
'@rolldown/pluginutils': 1.0.0-rc.3
|
|
8804
10012
|
'@types/babel__core': 7.20.5
|
|
8805
10013
|
react-refresh: 0.18.0
|
|
8806
|
-
vite: 7.3.6(@types/node@
|
|
10014
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
8807
10015
|
transitivePeerDependencies:
|
|
8808
10016
|
- supports-color
|
|
8809
10017
|
|
|
10018
|
+
'@vitest/expect@4.1.10':
|
|
10019
|
+
dependencies:
|
|
10020
|
+
'@standard-schema/spec': 1.1.0
|
|
10021
|
+
'@types/chai': 5.2.3
|
|
10022
|
+
'@vitest/spy': 4.1.10
|
|
10023
|
+
'@vitest/utils': 4.1.10
|
|
10024
|
+
chai: 6.2.2
|
|
10025
|
+
tinyrainbow: 3.1.1
|
|
10026
|
+
|
|
10027
|
+
'@vitest/mocker@4.1.10(msw@2.15.0(@types/node@24.13.3)(typescript@6.0.3))(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))':
|
|
10028
|
+
dependencies:
|
|
10029
|
+
'@vitest/spy': 4.1.10
|
|
10030
|
+
estree-walker: 3.0.3
|
|
10031
|
+
magic-string: 0.30.21
|
|
10032
|
+
optionalDependencies:
|
|
10033
|
+
msw: 2.15.0(@types/node@24.13.3)(typescript@6.0.3)
|
|
10034
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
10035
|
+
|
|
10036
|
+
'@vitest/pretty-format@4.1.10':
|
|
10037
|
+
dependencies:
|
|
10038
|
+
tinyrainbow: 3.1.1
|
|
10039
|
+
|
|
10040
|
+
'@vitest/runner@4.1.10':
|
|
10041
|
+
dependencies:
|
|
10042
|
+
'@vitest/utils': 4.1.10
|
|
10043
|
+
pathe: 2.0.3
|
|
10044
|
+
|
|
10045
|
+
'@vitest/snapshot@4.1.10':
|
|
10046
|
+
dependencies:
|
|
10047
|
+
'@vitest/pretty-format': 4.1.10
|
|
10048
|
+
'@vitest/utils': 4.1.10
|
|
10049
|
+
magic-string: 0.30.21
|
|
10050
|
+
pathe: 2.0.3
|
|
10051
|
+
|
|
10052
|
+
'@vitest/spy@4.1.10': {}
|
|
10053
|
+
|
|
10054
|
+
'@vitest/utils@4.1.10':
|
|
10055
|
+
dependencies:
|
|
10056
|
+
'@vitest/pretty-format': 4.1.10
|
|
10057
|
+
convert-source-map: 2.0.0
|
|
10058
|
+
tinyrainbow: 3.1.1
|
|
10059
|
+
|
|
8810
10060
|
'@whatwg-node/disposablestack@0.0.6':
|
|
8811
10061
|
dependencies:
|
|
8812
10062
|
'@whatwg-node/promise-helpers': 1.3.2
|
|
@@ -8895,12 +10145,87 @@ snapshots:
|
|
|
8895
10145
|
dependencies:
|
|
8896
10146
|
tslib: 2.8.1
|
|
8897
10147
|
|
|
10148
|
+
aria-query@5.3.2: {}
|
|
10149
|
+
|
|
10150
|
+
array-buffer-byte-length@1.0.2:
|
|
10151
|
+
dependencies:
|
|
10152
|
+
call-bound: 1.0.4
|
|
10153
|
+
is-array-buffer: 3.0.5
|
|
10154
|
+
|
|
8898
10155
|
array-flatten@1.1.1: {}
|
|
8899
10156
|
|
|
10157
|
+
array-includes@3.1.9:
|
|
10158
|
+
dependencies:
|
|
10159
|
+
call-bind: 1.0.9
|
|
10160
|
+
call-bound: 1.0.4
|
|
10161
|
+
define-properties: 1.2.1
|
|
10162
|
+
es-abstract: 1.24.2
|
|
10163
|
+
es-object-atoms: 1.1.2
|
|
10164
|
+
get-intrinsic: 1.3.0
|
|
10165
|
+
is-string: 1.1.1
|
|
10166
|
+
math-intrinsics: 1.1.0
|
|
10167
|
+
|
|
10168
|
+
array.prototype.findlast@1.2.5:
|
|
10169
|
+
dependencies:
|
|
10170
|
+
call-bind: 1.0.9
|
|
10171
|
+
define-properties: 1.2.1
|
|
10172
|
+
es-abstract: 1.24.2
|
|
10173
|
+
es-errors: 1.3.0
|
|
10174
|
+
es-object-atoms: 1.1.2
|
|
10175
|
+
es-shim-unscopables: 1.1.0
|
|
10176
|
+
|
|
10177
|
+
array.prototype.findlastindex@1.2.6:
|
|
10178
|
+
dependencies:
|
|
10179
|
+
call-bind: 1.0.9
|
|
10180
|
+
call-bound: 1.0.4
|
|
10181
|
+
define-properties: 1.2.1
|
|
10182
|
+
es-abstract: 1.24.2
|
|
10183
|
+
es-errors: 1.3.0
|
|
10184
|
+
es-object-atoms: 1.1.2
|
|
10185
|
+
es-shim-unscopables: 1.1.0
|
|
10186
|
+
|
|
10187
|
+
array.prototype.flat@1.3.3:
|
|
10188
|
+
dependencies:
|
|
10189
|
+
call-bind: 1.0.9
|
|
10190
|
+
define-properties: 1.2.1
|
|
10191
|
+
es-abstract: 1.24.2
|
|
10192
|
+
es-shim-unscopables: 1.1.0
|
|
10193
|
+
|
|
10194
|
+
array.prototype.flatmap@1.3.3:
|
|
10195
|
+
dependencies:
|
|
10196
|
+
call-bind: 1.0.9
|
|
10197
|
+
define-properties: 1.2.1
|
|
10198
|
+
es-abstract: 1.24.2
|
|
10199
|
+
es-shim-unscopables: 1.1.0
|
|
10200
|
+
|
|
10201
|
+
array.prototype.tosorted@1.1.4:
|
|
10202
|
+
dependencies:
|
|
10203
|
+
call-bind: 1.0.9
|
|
10204
|
+
define-properties: 1.2.1
|
|
10205
|
+
es-abstract: 1.24.2
|
|
10206
|
+
es-errors: 1.3.0
|
|
10207
|
+
es-shim-unscopables: 1.1.0
|
|
10208
|
+
|
|
10209
|
+
arraybuffer.prototype.slice@1.0.4:
|
|
10210
|
+
dependencies:
|
|
10211
|
+
array-buffer-byte-length: 1.0.2
|
|
10212
|
+
call-bind: 1.0.9
|
|
10213
|
+
define-properties: 1.2.1
|
|
10214
|
+
es-abstract: 1.24.2
|
|
10215
|
+
es-errors: 1.3.0
|
|
10216
|
+
get-intrinsic: 1.3.0
|
|
10217
|
+
is-array-buffer: 3.0.5
|
|
10218
|
+
|
|
10219
|
+
assertion-error@2.0.1: {}
|
|
10220
|
+
|
|
10221
|
+
ast-types-flow@0.0.8: {}
|
|
10222
|
+
|
|
8900
10223
|
ast-types@0.16.1:
|
|
8901
10224
|
dependencies:
|
|
8902
10225
|
tslib: 2.8.1
|
|
8903
10226
|
|
|
10227
|
+
async-function@1.0.0: {}
|
|
10228
|
+
|
|
8904
10229
|
async-retry@1.3.3:
|
|
8905
10230
|
dependencies:
|
|
8906
10231
|
retry: 0.13.1
|
|
@@ -8917,6 +10242,10 @@ snapshots:
|
|
|
8917
10242
|
|
|
8918
10243
|
awesome-graphql-client@3.0.0: {}
|
|
8919
10244
|
|
|
10245
|
+
axe-core@4.13.0: {}
|
|
10246
|
+
|
|
10247
|
+
axobject-query@4.1.0: {}
|
|
10248
|
+
|
|
8920
10249
|
babel-dead-code-elimination@1.0.12(supports-color@7.2.0):
|
|
8921
10250
|
dependencies:
|
|
8922
10251
|
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
@@ -8982,6 +10311,11 @@ snapshots:
|
|
|
8982
10311
|
|
|
8983
10312
|
boolbase@1.0.0: {}
|
|
8984
10313
|
|
|
10314
|
+
brace-expansion@1.1.18:
|
|
10315
|
+
dependencies:
|
|
10316
|
+
balanced-match: 1.0.2
|
|
10317
|
+
concat-map: 0.0.1
|
|
10318
|
+
|
|
8985
10319
|
brace-expansion@2.1.4:
|
|
8986
10320
|
dependencies:
|
|
8987
10321
|
balanced-match: 1.0.2
|
|
@@ -9065,6 +10399,8 @@ snapshots:
|
|
|
9065
10399
|
tslib: 2.8.1
|
|
9066
10400
|
upper-case-first: 2.0.2
|
|
9067
10401
|
|
|
10402
|
+
chai@6.2.2: {}
|
|
10403
|
+
|
|
9068
10404
|
chalk@4.1.2:
|
|
9069
10405
|
dependencies:
|
|
9070
10406
|
ansi-styles: 4.3.0
|
|
@@ -9162,6 +10498,8 @@ snapshots:
|
|
|
9162
10498
|
|
|
9163
10499
|
cli-width@4.1.0: {}
|
|
9164
10500
|
|
|
10501
|
+
client-only@0.0.1: {}
|
|
10502
|
+
|
|
9165
10503
|
cliui@8.0.1:
|
|
9166
10504
|
dependencies:
|
|
9167
10505
|
string-width: 4.2.3
|
|
@@ -9212,6 +10550,8 @@ snapshots:
|
|
|
9212
10550
|
|
|
9213
10551
|
commander@2.20.3: {}
|
|
9214
10552
|
|
|
10553
|
+
concat-map@0.0.1: {}
|
|
10554
|
+
|
|
9215
10555
|
concat-stream@2.0.0:
|
|
9216
10556
|
dependencies:
|
|
9217
10557
|
buffer-from: 1.1.2
|
|
@@ -9446,8 +10786,28 @@ snapshots:
|
|
|
9446
10786
|
|
|
9447
10787
|
d3-timer@3.0.1: {}
|
|
9448
10788
|
|
|
10789
|
+
damerau-levenshtein@1.0.8: {}
|
|
10790
|
+
|
|
9449
10791
|
data-uri-to-buffer@4.0.1: {}
|
|
9450
10792
|
|
|
10793
|
+
data-view-buffer@1.0.2:
|
|
10794
|
+
dependencies:
|
|
10795
|
+
call-bound: 1.0.4
|
|
10796
|
+
es-errors: 1.3.0
|
|
10797
|
+
is-data-view: 1.0.2
|
|
10798
|
+
|
|
10799
|
+
data-view-byte-length@1.0.2:
|
|
10800
|
+
dependencies:
|
|
10801
|
+
call-bound: 1.0.4
|
|
10802
|
+
es-errors: 1.3.0
|
|
10803
|
+
is-data-view: 1.0.2
|
|
10804
|
+
|
|
10805
|
+
data-view-byte-offset@1.0.1:
|
|
10806
|
+
dependencies:
|
|
10807
|
+
call-bound: 1.0.4
|
|
10808
|
+
es-errors: 1.3.0
|
|
10809
|
+
is-data-view: 1.0.2
|
|
10810
|
+
|
|
9451
10811
|
dataloader@2.2.3: {}
|
|
9452
10812
|
|
|
9453
10813
|
date-fns-jalali@4.1.0-0: {}
|
|
@@ -9513,6 +10873,12 @@ snapshots:
|
|
|
9513
10873
|
|
|
9514
10874
|
define-lazy-prop@3.0.0: {}
|
|
9515
10875
|
|
|
10876
|
+
define-properties@1.2.1:
|
|
10877
|
+
dependencies:
|
|
10878
|
+
define-data-property: 1.1.4
|
|
10879
|
+
has-property-descriptors: 1.0.2
|
|
10880
|
+
object-keys: 1.1.1
|
|
10881
|
+
|
|
9516
10882
|
delayed-stream@1.0.0: {}
|
|
9517
10883
|
|
|
9518
10884
|
depd@2.0.0: {}
|
|
@@ -9529,6 +10895,10 @@ snapshots:
|
|
|
9529
10895
|
|
|
9530
10896
|
diff@8.0.4: {}
|
|
9531
10897
|
|
|
10898
|
+
doctrine@2.1.0:
|
|
10899
|
+
dependencies:
|
|
10900
|
+
esutils: 2.0.3
|
|
10901
|
+
|
|
9532
10902
|
dom-helpers@5.2.1:
|
|
9533
10903
|
dependencies:
|
|
9534
10904
|
'@babel/runtime': 7.29.7
|
|
@@ -9653,10 +11023,95 @@ snapshots:
|
|
|
9653
11023
|
dependencies:
|
|
9654
11024
|
is-arrayish: 0.2.1
|
|
9655
11025
|
|
|
11026
|
+
es-abstract-get@1.0.0:
|
|
11027
|
+
dependencies:
|
|
11028
|
+
es-errors: 1.3.0
|
|
11029
|
+
es-object-atoms: 1.1.2
|
|
11030
|
+
is-callable: 1.2.7
|
|
11031
|
+
object-inspect: 1.13.4
|
|
11032
|
+
|
|
11033
|
+
es-abstract@1.24.2:
|
|
11034
|
+
dependencies:
|
|
11035
|
+
array-buffer-byte-length: 1.0.2
|
|
11036
|
+
arraybuffer.prototype.slice: 1.0.4
|
|
11037
|
+
available-typed-arrays: 1.0.7
|
|
11038
|
+
call-bind: 1.0.9
|
|
11039
|
+
call-bound: 1.0.4
|
|
11040
|
+
data-view-buffer: 1.0.2
|
|
11041
|
+
data-view-byte-length: 1.0.2
|
|
11042
|
+
data-view-byte-offset: 1.0.1
|
|
11043
|
+
es-define-property: 1.0.1
|
|
11044
|
+
es-errors: 1.3.0
|
|
11045
|
+
es-object-atoms: 1.1.2
|
|
11046
|
+
es-set-tostringtag: 2.1.0
|
|
11047
|
+
es-to-primitive: 1.3.4
|
|
11048
|
+
function.prototype.name: 1.2.0
|
|
11049
|
+
get-intrinsic: 1.3.0
|
|
11050
|
+
get-proto: 1.0.1
|
|
11051
|
+
get-symbol-description: 1.1.0
|
|
11052
|
+
globalthis: 1.0.4
|
|
11053
|
+
gopd: 1.2.0
|
|
11054
|
+
has-property-descriptors: 1.0.2
|
|
11055
|
+
has-proto: 1.2.0
|
|
11056
|
+
has-symbols: 1.1.0
|
|
11057
|
+
hasown: 2.0.4
|
|
11058
|
+
internal-slot: 1.1.0
|
|
11059
|
+
is-array-buffer: 3.0.5
|
|
11060
|
+
is-callable: 1.2.7
|
|
11061
|
+
is-data-view: 1.0.2
|
|
11062
|
+
is-negative-zero: 2.0.3
|
|
11063
|
+
is-regex: 1.2.1
|
|
11064
|
+
is-set: 2.0.3
|
|
11065
|
+
is-shared-array-buffer: 1.0.4
|
|
11066
|
+
is-string: 1.1.1
|
|
11067
|
+
is-typed-array: 1.1.15
|
|
11068
|
+
is-weakref: 1.1.1
|
|
11069
|
+
math-intrinsics: 1.1.0
|
|
11070
|
+
object-inspect: 1.13.4
|
|
11071
|
+
object-keys: 1.1.1
|
|
11072
|
+
object.assign: 4.1.7
|
|
11073
|
+
own-keys: 1.0.2
|
|
11074
|
+
regexp.prototype.flags: 1.5.4
|
|
11075
|
+
safe-array-concat: 1.1.4
|
|
11076
|
+
safe-push-apply: 1.0.0
|
|
11077
|
+
safe-regex-test: 1.1.0
|
|
11078
|
+
set-proto: 1.0.0
|
|
11079
|
+
stop-iteration-iterator: 1.1.0
|
|
11080
|
+
string.prototype.trim: 1.2.11
|
|
11081
|
+
string.prototype.trimend: 1.0.10
|
|
11082
|
+
string.prototype.trimstart: 1.0.8
|
|
11083
|
+
typed-array-buffer: 1.0.3
|
|
11084
|
+
typed-array-byte-length: 1.0.3
|
|
11085
|
+
typed-array-byte-offset: 1.0.4
|
|
11086
|
+
typed-array-length: 1.0.8
|
|
11087
|
+
unbox-primitive: 1.1.0
|
|
11088
|
+
which-typed-array: 1.1.22
|
|
11089
|
+
|
|
9656
11090
|
es-define-property@1.0.1: {}
|
|
9657
11091
|
|
|
9658
11092
|
es-errors@1.3.0: {}
|
|
9659
11093
|
|
|
11094
|
+
es-iterator-helpers@1.4.0:
|
|
11095
|
+
dependencies:
|
|
11096
|
+
call-bind: 1.0.9
|
|
11097
|
+
call-bound: 1.0.4
|
|
11098
|
+
define-properties: 1.2.1
|
|
11099
|
+
es-abstract: 1.24.2
|
|
11100
|
+
es-errors: 1.3.0
|
|
11101
|
+
es-set-tostringtag: 2.1.0
|
|
11102
|
+
function-bind: 1.1.2
|
|
11103
|
+
get-intrinsic: 1.3.0
|
|
11104
|
+
globalthis: 1.0.4
|
|
11105
|
+
gopd: 1.2.0
|
|
11106
|
+
has-property-descriptors: 1.0.2
|
|
11107
|
+
has-proto: 1.2.0
|
|
11108
|
+
has-symbols: 1.1.0
|
|
11109
|
+
internal-slot: 1.1.0
|
|
11110
|
+
iterator.prototype: 1.1.5
|
|
11111
|
+
math-intrinsics: 1.1.0
|
|
11112
|
+
|
|
11113
|
+
es-module-lexer@2.3.2: {}
|
|
11114
|
+
|
|
9660
11115
|
es-object-atoms@1.1.2:
|
|
9661
11116
|
dependencies:
|
|
9662
11117
|
es-errors: 1.3.0
|
|
@@ -9668,6 +11123,19 @@ snapshots:
|
|
|
9668
11123
|
has-tostringtag: 1.0.2
|
|
9669
11124
|
hasown: 2.0.4
|
|
9670
11125
|
|
|
11126
|
+
es-shim-unscopables@1.1.0:
|
|
11127
|
+
dependencies:
|
|
11128
|
+
hasown: 2.0.4
|
|
11129
|
+
|
|
11130
|
+
es-to-primitive@1.3.4:
|
|
11131
|
+
dependencies:
|
|
11132
|
+
es-abstract-get: 1.0.0
|
|
11133
|
+
es-define-property: 1.0.1
|
|
11134
|
+
es-errors: 1.3.0
|
|
11135
|
+
is-callable: 1.2.7
|
|
11136
|
+
is-date-object: 1.1.0
|
|
11137
|
+
is-symbol: 1.1.1
|
|
11138
|
+
|
|
9671
11139
|
esbuild@0.25.12:
|
|
9672
11140
|
optionalDependencies:
|
|
9673
11141
|
'@esbuild/aix-ppc64': 0.25.12
|
|
@@ -9734,6 +11202,146 @@ snapshots:
|
|
|
9734
11202
|
|
|
9735
11203
|
escape-string-regexp@4.0.0: {}
|
|
9736
11204
|
|
|
11205
|
+
eslint-config-next@16.2.12(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
|
|
11206
|
+
dependencies:
|
|
11207
|
+
'@next/eslint-plugin-next': 16.2.12
|
|
11208
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11209
|
+
eslint-import-resolver-node: 0.3.10(supports-color@7.2.0)
|
|
11210
|
+
eslint-import-resolver-typescript: 3.8.7(eslint-plugin-import@2.32.0)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11211
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-typescript@3.8.7)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11212
|
+
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))
|
|
11213
|
+
eslint-plugin-react: 7.37.5(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))
|
|
11214
|
+
eslint-plugin-react-hooks: 7.1.1(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11215
|
+
globals: 16.4.0
|
|
11216
|
+
typescript-eslint: 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
11217
|
+
optionalDependencies:
|
|
11218
|
+
typescript: 6.0.3
|
|
11219
|
+
transitivePeerDependencies:
|
|
11220
|
+
- '@typescript-eslint/parser'
|
|
11221
|
+
- eslint-import-resolver-webpack
|
|
11222
|
+
- eslint-plugin-import-x
|
|
11223
|
+
- supports-color
|
|
11224
|
+
|
|
11225
|
+
eslint-import-resolver-node@0.3.10(supports-color@7.2.0):
|
|
11226
|
+
dependencies:
|
|
11227
|
+
debug: 3.2.7(supports-color@7.2.0)
|
|
11228
|
+
is-core-module: 2.16.2
|
|
11229
|
+
resolve: 2.0.0-next.7
|
|
11230
|
+
transitivePeerDependencies:
|
|
11231
|
+
- supports-color
|
|
11232
|
+
|
|
11233
|
+
eslint-import-resolver-typescript@3.8.7(eslint-plugin-import@2.32.0)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
|
|
11234
|
+
dependencies:
|
|
11235
|
+
'@nolyfill/is-core-module': 1.0.39
|
|
11236
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
11237
|
+
enhanced-resolve: 5.24.5
|
|
11238
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11239
|
+
get-tsconfig: 4.14.1
|
|
11240
|
+
is-bun-module: 1.3.0
|
|
11241
|
+
stable-hash: 0.0.4
|
|
11242
|
+
tinyglobby: 0.2.17
|
|
11243
|
+
optionalDependencies:
|
|
11244
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-typescript@3.8.7)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11245
|
+
transitivePeerDependencies:
|
|
11246
|
+
- supports-color
|
|
11247
|
+
|
|
11248
|
+
eslint-module-utils@2.14.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-node@0.3.10(supports-color@7.2.0))(eslint-import-resolver-typescript@3.8.7)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
|
|
11249
|
+
dependencies:
|
|
11250
|
+
debug: 3.2.7(supports-color@7.2.0)
|
|
11251
|
+
optionalDependencies:
|
|
11252
|
+
'@typescript-eslint/parser': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
11253
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11254
|
+
eslint-import-resolver-node: 0.3.10(supports-color@7.2.0)
|
|
11255
|
+
eslint-import-resolver-typescript: 3.8.7(eslint-plugin-import@2.32.0)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11256
|
+
transitivePeerDependencies:
|
|
11257
|
+
- supports-color
|
|
11258
|
+
|
|
11259
|
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-typescript@3.8.7)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
|
|
11260
|
+
dependencies:
|
|
11261
|
+
'@rtsao/scc': 1.1.0
|
|
11262
|
+
array-includes: 3.1.9
|
|
11263
|
+
array.prototype.findlastindex: 1.2.6
|
|
11264
|
+
array.prototype.flat: 1.3.3
|
|
11265
|
+
array.prototype.flatmap: 1.3.3
|
|
11266
|
+
debug: 3.2.7(supports-color@7.2.0)
|
|
11267
|
+
doctrine: 2.1.0
|
|
11268
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11269
|
+
eslint-import-resolver-node: 0.3.10(supports-color@7.2.0)
|
|
11270
|
+
eslint-module-utils: 2.14.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-node@0.3.10(supports-color@7.2.0))(eslint-import-resolver-typescript@3.8.7)(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)
|
|
11271
|
+
hasown: 2.0.4
|
|
11272
|
+
is-core-module: 2.16.2
|
|
11273
|
+
is-glob: 4.0.3
|
|
11274
|
+
minimatch: 3.1.5
|
|
11275
|
+
object.fromentries: 2.0.8
|
|
11276
|
+
object.groupby: 1.0.3
|
|
11277
|
+
object.values: 1.2.1
|
|
11278
|
+
semver: 6.3.1
|
|
11279
|
+
string.prototype.trimend: 1.0.10
|
|
11280
|
+
tsconfig-paths: 3.15.0
|
|
11281
|
+
optionalDependencies:
|
|
11282
|
+
'@typescript-eslint/parser': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
11283
|
+
transitivePeerDependencies:
|
|
11284
|
+
- eslint-import-resolver-typescript
|
|
11285
|
+
- eslint-import-resolver-webpack
|
|
11286
|
+
- supports-color
|
|
11287
|
+
|
|
11288
|
+
eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0)):
|
|
11289
|
+
dependencies:
|
|
11290
|
+
aria-query: 5.3.2
|
|
11291
|
+
array-includes: 3.1.9
|
|
11292
|
+
array.prototype.flatmap: 1.3.3
|
|
11293
|
+
ast-types-flow: 0.0.8
|
|
11294
|
+
axe-core: 4.13.0
|
|
11295
|
+
axobject-query: 4.1.0
|
|
11296
|
+
damerau-levenshtein: 1.0.8
|
|
11297
|
+
emoji-regex: 9.2.2
|
|
11298
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11299
|
+
hasown: 2.0.4
|
|
11300
|
+
jsx-ast-utils: 3.3.5
|
|
11301
|
+
language-tags: 1.0.9
|
|
11302
|
+
minimatch: 3.1.5
|
|
11303
|
+
object.fromentries: 2.0.8
|
|
11304
|
+
safe-regex-test: 1.1.0
|
|
11305
|
+
string.prototype.includes: 2.0.1
|
|
11306
|
+
|
|
11307
|
+
eslint-plugin-react-hooks@7.1.1(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0):
|
|
11308
|
+
dependencies:
|
|
11309
|
+
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
11310
|
+
'@babel/parser': 7.29.8
|
|
11311
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11312
|
+
hermes-parser: 0.25.1
|
|
11313
|
+
zod: 4.4.3
|
|
11314
|
+
zod-validation-error: 4.0.2(zod@4.4.3)
|
|
11315
|
+
transitivePeerDependencies:
|
|
11316
|
+
- supports-color
|
|
11317
|
+
|
|
11318
|
+
eslint-plugin-react@7.37.5(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0)):
|
|
11319
|
+
dependencies:
|
|
11320
|
+
array-includes: 3.1.9
|
|
11321
|
+
array.prototype.findlast: 1.2.5
|
|
11322
|
+
array.prototype.flatmap: 1.3.3
|
|
11323
|
+
array.prototype.tosorted: 1.1.4
|
|
11324
|
+
doctrine: 2.1.0
|
|
11325
|
+
es-iterator-helpers: 1.4.0
|
|
11326
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
11327
|
+
estraverse: 5.3.0
|
|
11328
|
+
hasown: 2.0.4
|
|
11329
|
+
jsx-ast-utils: 3.3.5
|
|
11330
|
+
minimatch: 3.1.5
|
|
11331
|
+
object.entries: 1.1.9
|
|
11332
|
+
object.fromentries: 2.0.8
|
|
11333
|
+
object.values: 1.2.1
|
|
11334
|
+
prop-types: 15.8.1
|
|
11335
|
+
resolve: 2.0.0-next.7
|
|
11336
|
+
semver: 6.3.1
|
|
11337
|
+
string.prototype.matchall: 4.0.12
|
|
11338
|
+
string.prototype.repeat: 1.0.0
|
|
11339
|
+
|
|
11340
|
+
eslint-scope@8.4.0:
|
|
11341
|
+
dependencies:
|
|
11342
|
+
esrecurse: 4.3.0
|
|
11343
|
+
estraverse: 5.3.0
|
|
11344
|
+
|
|
9737
11345
|
eslint-scope@9.1.2:
|
|
9738
11346
|
dependencies:
|
|
9739
11347
|
'@types/esrecurse': 4.3.1
|
|
@@ -9743,6 +11351,8 @@ snapshots:
|
|
|
9743
11351
|
|
|
9744
11352
|
eslint-visitor-keys@3.4.3: {}
|
|
9745
11353
|
|
|
11354
|
+
eslint-visitor-keys@4.2.1: {}
|
|
11355
|
+
|
|
9746
11356
|
eslint-visitor-keys@5.0.1: {}
|
|
9747
11357
|
|
|
9748
11358
|
eslint@10.8.0(jiti@2.7.0)(supports-color@7.2.0):
|
|
@@ -9782,9 +11392,56 @@ snapshots:
|
|
|
9782
11392
|
transitivePeerDependencies:
|
|
9783
11393
|
- supports-color
|
|
9784
11394
|
|
|
11395
|
+
eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0):
|
|
11396
|
+
dependencies:
|
|
11397
|
+
'@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))
|
|
11398
|
+
'@eslint-community/regexpp': 4.12.2
|
|
11399
|
+
'@eslint/config-array': 0.21.2(supports-color@7.2.0)
|
|
11400
|
+
'@eslint/config-helpers': 0.4.2
|
|
11401
|
+
'@eslint/core': 0.17.0
|
|
11402
|
+
'@eslint/eslintrc': 3.3.6(supports-color@7.2.0)
|
|
11403
|
+
'@eslint/js': 9.39.5
|
|
11404
|
+
'@eslint/plugin-kit': 0.4.1
|
|
11405
|
+
'@humanfs/node': 0.16.8
|
|
11406
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
11407
|
+
'@humanwhocodes/retry': 0.4.3
|
|
11408
|
+
'@types/estree': 1.0.9
|
|
11409
|
+
ajv: 6.15.0
|
|
11410
|
+
chalk: 4.1.2
|
|
11411
|
+
cross-spawn: 7.0.6
|
|
11412
|
+
debug: 4.4.3(supports-color@7.2.0)
|
|
11413
|
+
escape-string-regexp: 4.0.0
|
|
11414
|
+
eslint-scope: 8.4.0
|
|
11415
|
+
eslint-visitor-keys: 4.2.1
|
|
11416
|
+
espree: 10.4.0
|
|
11417
|
+
esquery: 1.7.0
|
|
11418
|
+
esutils: 2.0.3
|
|
11419
|
+
fast-deep-equal: 3.1.3
|
|
11420
|
+
file-entry-cache: 8.0.0
|
|
11421
|
+
find-up: 5.0.0
|
|
11422
|
+
glob-parent: 6.0.2
|
|
11423
|
+
ignore: 5.3.2
|
|
11424
|
+
imurmurhash: 0.1.4
|
|
11425
|
+
is-glob: 4.0.3
|
|
11426
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
11427
|
+
lodash.merge: 4.6.2
|
|
11428
|
+
minimatch: 3.1.5
|
|
11429
|
+
natural-compare: 1.4.0
|
|
11430
|
+
optionator: 0.9.4
|
|
11431
|
+
optionalDependencies:
|
|
11432
|
+
jiti: 2.7.0
|
|
11433
|
+
transitivePeerDependencies:
|
|
11434
|
+
- supports-color
|
|
11435
|
+
|
|
9785
11436
|
esm@3.2.25:
|
|
9786
11437
|
optional: true
|
|
9787
11438
|
|
|
11439
|
+
espree@10.4.0:
|
|
11440
|
+
dependencies:
|
|
11441
|
+
acorn: 8.18.0
|
|
11442
|
+
acorn-jsx: 5.3.2(acorn@8.18.0)
|
|
11443
|
+
eslint-visitor-keys: 4.2.1
|
|
11444
|
+
|
|
9788
11445
|
espree@11.2.0:
|
|
9789
11446
|
dependencies:
|
|
9790
11447
|
acorn: 8.18.0
|
|
@@ -9803,6 +11460,10 @@ snapshots:
|
|
|
9803
11460
|
|
|
9804
11461
|
estraverse@5.3.0: {}
|
|
9805
11462
|
|
|
11463
|
+
estree-walker@3.0.3:
|
|
11464
|
+
dependencies:
|
|
11465
|
+
'@types/estree': 1.0.9
|
|
11466
|
+
|
|
9806
11467
|
esutils@2.0.3: {}
|
|
9807
11468
|
|
|
9808
11469
|
etag@1.8.1: {}
|
|
@@ -9844,6 +11505,8 @@ snapshots:
|
|
|
9844
11505
|
strip-final-newline: 4.0.0
|
|
9845
11506
|
yoctocolors: 2.2.0
|
|
9846
11507
|
|
|
11508
|
+
expect-type@1.4.0: {}
|
|
11509
|
+
|
|
9847
11510
|
express-rate-limit@7.5.1(express@5.2.1(supports-color@7.2.0)):
|
|
9848
11511
|
dependencies:
|
|
9849
11512
|
express: 5.2.1(supports-color@7.2.0)
|
|
@@ -9929,6 +11592,14 @@ snapshots:
|
|
|
9929
11592
|
|
|
9930
11593
|
fast-equals@5.4.1: {}
|
|
9931
11594
|
|
|
11595
|
+
fast-glob@3.3.1:
|
|
11596
|
+
dependencies:
|
|
11597
|
+
'@nodelib/fs.stat': 2.0.5
|
|
11598
|
+
'@nodelib/fs.walk': 1.2.8
|
|
11599
|
+
glob-parent: 5.1.2
|
|
11600
|
+
merge2: 1.4.1
|
|
11601
|
+
micromatch: 4.0.8
|
|
11602
|
+
|
|
9932
11603
|
fast-glob@3.3.3:
|
|
9933
11604
|
dependencies:
|
|
9934
11605
|
'@nodelib/fs.stat': 2.0.5
|
|
@@ -10092,10 +11763,26 @@ snapshots:
|
|
|
10092
11763
|
|
|
10093
11764
|
function-bind@1.1.2: {}
|
|
10094
11765
|
|
|
11766
|
+
function.prototype.name@1.2.0:
|
|
11767
|
+
dependencies:
|
|
11768
|
+
call-bind: 1.0.9
|
|
11769
|
+
call-bound: 1.0.4
|
|
11770
|
+
es-define-property: 1.0.1
|
|
11771
|
+
es-errors: 1.3.0
|
|
11772
|
+
functions-have-names: 1.2.3
|
|
11773
|
+
has-property-descriptors: 1.0.2
|
|
11774
|
+
hasown: 2.0.4
|
|
11775
|
+
is-callable: 1.2.7
|
|
11776
|
+
is-document.all: 1.0.0
|
|
11777
|
+
|
|
11778
|
+
functions-have-names@1.2.3: {}
|
|
11779
|
+
|
|
10095
11780
|
fuzzysort@3.1.0: {}
|
|
10096
11781
|
|
|
10097
11782
|
fzf@0.5.2: {}
|
|
10098
11783
|
|
|
11784
|
+
generator-function@2.0.1: {}
|
|
11785
|
+
|
|
10099
11786
|
gensync@1.0.0-beta.2: {}
|
|
10100
11787
|
|
|
10101
11788
|
get-caller-file@2.0.5: {}
|
|
@@ -10131,6 +11818,12 @@ snapshots:
|
|
|
10131
11818
|
'@sec-ant/readable-stream': 0.4.1
|
|
10132
11819
|
is-stream: 4.0.1
|
|
10133
11820
|
|
|
11821
|
+
get-symbol-description@1.1.0:
|
|
11822
|
+
dependencies:
|
|
11823
|
+
call-bound: 1.0.4
|
|
11824
|
+
es-errors: 1.3.0
|
|
11825
|
+
get-intrinsic: 1.3.0
|
|
11826
|
+
|
|
10134
11827
|
get-tsconfig@4.14.1:
|
|
10135
11828
|
dependencies:
|
|
10136
11829
|
resolve-pkg-maps: 1.0.0
|
|
@@ -10161,6 +11854,15 @@ snapshots:
|
|
|
10161
11854
|
package-json-from-dist: 1.0.1
|
|
10162
11855
|
path-scurry: 2.0.2
|
|
10163
11856
|
|
|
11857
|
+
globals@14.0.0: {}
|
|
11858
|
+
|
|
11859
|
+
globals@16.4.0: {}
|
|
11860
|
+
|
|
11861
|
+
globalthis@1.0.4:
|
|
11862
|
+
dependencies:
|
|
11863
|
+
define-properties: 1.2.1
|
|
11864
|
+
gopd: 1.2.0
|
|
11865
|
+
|
|
10164
11866
|
goober@2.1.19(csstype@3.2.3):
|
|
10165
11867
|
dependencies:
|
|
10166
11868
|
csstype: 3.2.3
|
|
@@ -10199,7 +11901,7 @@ snapshots:
|
|
|
10199
11901
|
graphql-upload@17.1.0(@types/express@5.0.6)(graphql@16.14.2):
|
|
10200
11902
|
dependencies:
|
|
10201
11903
|
'@types/busboy': 1.5.4
|
|
10202
|
-
'@types/node':
|
|
11904
|
+
'@types/node': 24.13.3
|
|
10203
11905
|
'@types/object-path': 0.11.4
|
|
10204
11906
|
busboy: 1.6.0
|
|
10205
11907
|
fs-capacitor: 8.0.0
|
|
@@ -10226,12 +11928,18 @@ snapshots:
|
|
|
10226
11928
|
optionalDependencies:
|
|
10227
11929
|
uglify-js: 3.19.3
|
|
10228
11930
|
|
|
11931
|
+
has-bigints@1.1.0: {}
|
|
11932
|
+
|
|
10229
11933
|
has-flag@4.0.0: {}
|
|
10230
11934
|
|
|
10231
11935
|
has-property-descriptors@1.0.2:
|
|
10232
11936
|
dependencies:
|
|
10233
11937
|
es-define-property: 1.0.1
|
|
10234
11938
|
|
|
11939
|
+
has-proto@1.2.0:
|
|
11940
|
+
dependencies:
|
|
11941
|
+
dunder-proto: 1.0.1
|
|
11942
|
+
|
|
10235
11943
|
has-symbols@1.1.0: {}
|
|
10236
11944
|
|
|
10237
11945
|
has-tostringtag@1.0.2:
|
|
@@ -10252,6 +11960,12 @@ snapshots:
|
|
|
10252
11960
|
'@types/set-cookie-parser': 2.4.10
|
|
10253
11961
|
set-cookie-parser: 3.1.2
|
|
10254
11962
|
|
|
11963
|
+
hermes-estree@0.25.1: {}
|
|
11964
|
+
|
|
11965
|
+
hermes-parser@0.25.1:
|
|
11966
|
+
dependencies:
|
|
11967
|
+
hermes-estree: 0.25.1
|
|
11968
|
+
|
|
10255
11969
|
hono@4.13.0: {}
|
|
10256
11970
|
|
|
10257
11971
|
htmlnano@3.4.0(cssnano@7.1.9(postcss@8.5.25))(postcss@8.5.25)(svgo@4.0.2)(typescript@5.8.2):
|
|
@@ -10348,6 +12062,8 @@ snapshots:
|
|
|
10348
12062
|
|
|
10349
12063
|
ignore@5.3.2: {}
|
|
10350
12064
|
|
|
12065
|
+
ignore@7.0.6: {}
|
|
12066
|
+
|
|
10351
12067
|
image-size@2.0.2: {}
|
|
10352
12068
|
|
|
10353
12069
|
import-fresh@3.3.1:
|
|
@@ -10366,6 +12082,12 @@ snapshots:
|
|
|
10366
12082
|
react: 19.2.8
|
|
10367
12083
|
react-dom: 19.2.8(react@19.2.8)
|
|
10368
12084
|
|
|
12085
|
+
internal-slot@1.1.0:
|
|
12086
|
+
dependencies:
|
|
12087
|
+
es-errors: 1.3.0
|
|
12088
|
+
hasown: 2.0.4
|
|
12089
|
+
side-channel: 1.1.1
|
|
12090
|
+
|
|
10369
12091
|
internmap@2.0.3: {}
|
|
10370
12092
|
|
|
10371
12093
|
intl-messageformat@10.7.18:
|
|
@@ -10379,22 +12101,80 @@ snapshots:
|
|
|
10379
12101
|
|
|
10380
12102
|
ipaddr.js@1.9.1: {}
|
|
10381
12103
|
|
|
12104
|
+
is-array-buffer@3.0.5:
|
|
12105
|
+
dependencies:
|
|
12106
|
+
call-bind: 1.0.9
|
|
12107
|
+
call-bound: 1.0.4
|
|
12108
|
+
get-intrinsic: 1.3.0
|
|
12109
|
+
|
|
10382
12110
|
is-arrayish@0.2.1: {}
|
|
10383
12111
|
|
|
12112
|
+
is-async-function@2.1.1:
|
|
12113
|
+
dependencies:
|
|
12114
|
+
async-function: 1.0.0
|
|
12115
|
+
call-bound: 1.0.4
|
|
12116
|
+
get-proto: 1.0.1
|
|
12117
|
+
has-tostringtag: 1.0.2
|
|
12118
|
+
safe-regex-test: 1.1.0
|
|
12119
|
+
|
|
12120
|
+
is-bigint@1.1.0:
|
|
12121
|
+
dependencies:
|
|
12122
|
+
has-bigints: 1.1.0
|
|
12123
|
+
|
|
10384
12124
|
is-binary-path@2.1.0:
|
|
10385
12125
|
dependencies:
|
|
10386
12126
|
binary-extensions: 2.3.0
|
|
10387
12127
|
|
|
12128
|
+
is-boolean-object@1.2.2:
|
|
12129
|
+
dependencies:
|
|
12130
|
+
call-bound: 1.0.4
|
|
12131
|
+
has-tostringtag: 1.0.2
|
|
12132
|
+
|
|
12133
|
+
is-bun-module@1.3.0:
|
|
12134
|
+
dependencies:
|
|
12135
|
+
semver: 7.8.5
|
|
12136
|
+
|
|
10388
12137
|
is-callable@1.2.7: {}
|
|
10389
12138
|
|
|
12139
|
+
is-core-module@2.16.2:
|
|
12140
|
+
dependencies:
|
|
12141
|
+
hasown: 2.0.4
|
|
12142
|
+
|
|
12143
|
+
is-data-view@1.0.2:
|
|
12144
|
+
dependencies:
|
|
12145
|
+
call-bound: 1.0.4
|
|
12146
|
+
get-intrinsic: 1.3.0
|
|
12147
|
+
is-typed-array: 1.1.15
|
|
12148
|
+
|
|
12149
|
+
is-date-object@1.1.0:
|
|
12150
|
+
dependencies:
|
|
12151
|
+
call-bound: 1.0.4
|
|
12152
|
+
has-tostringtag: 1.0.2
|
|
12153
|
+
|
|
10390
12154
|
is-docker@2.2.1: {}
|
|
10391
12155
|
|
|
10392
12156
|
is-docker@3.0.0: {}
|
|
10393
12157
|
|
|
12158
|
+
is-document.all@1.0.0:
|
|
12159
|
+
dependencies:
|
|
12160
|
+
call-bound: 1.0.4
|
|
12161
|
+
|
|
10394
12162
|
is-extglob@2.1.1: {}
|
|
10395
12163
|
|
|
12164
|
+
is-finalizationregistry@1.1.1:
|
|
12165
|
+
dependencies:
|
|
12166
|
+
call-bound: 1.0.4
|
|
12167
|
+
|
|
10396
12168
|
is-fullwidth-code-point@3.0.0: {}
|
|
10397
12169
|
|
|
12170
|
+
is-generator-function@1.1.2:
|
|
12171
|
+
dependencies:
|
|
12172
|
+
call-bound: 1.0.4
|
|
12173
|
+
generator-function: 2.0.1
|
|
12174
|
+
get-proto: 1.0.1
|
|
12175
|
+
has-tostringtag: 1.0.2
|
|
12176
|
+
safe-regex-test: 1.1.0
|
|
12177
|
+
|
|
10398
12178
|
is-glob@4.0.3:
|
|
10399
12179
|
dependencies:
|
|
10400
12180
|
is-extglob: 2.1.1
|
|
@@ -10411,8 +12191,17 @@ snapshots:
|
|
|
10411
12191
|
|
|
10412
12192
|
is-json@2.0.1: {}
|
|
10413
12193
|
|
|
12194
|
+
is-map@2.0.3: {}
|
|
12195
|
+
|
|
12196
|
+
is-negative-zero@2.0.3: {}
|
|
12197
|
+
|
|
10414
12198
|
is-node-process@1.2.0: {}
|
|
10415
12199
|
|
|
12200
|
+
is-number-object@1.1.1:
|
|
12201
|
+
dependencies:
|
|
12202
|
+
call-bound: 1.0.4
|
|
12203
|
+
has-tostringtag: 1.0.2
|
|
12204
|
+
|
|
10416
12205
|
is-number@7.0.0: {}
|
|
10417
12206
|
|
|
10418
12207
|
is-obj@2.0.0: {}
|
|
@@ -10427,12 +12216,36 @@ snapshots:
|
|
|
10427
12216
|
|
|
10428
12217
|
is-promise@4.0.0: {}
|
|
10429
12218
|
|
|
12219
|
+
is-regex@1.2.1:
|
|
12220
|
+
dependencies:
|
|
12221
|
+
call-bound: 1.0.4
|
|
12222
|
+
gopd: 1.2.0
|
|
12223
|
+
has-tostringtag: 1.0.2
|
|
12224
|
+
hasown: 2.0.4
|
|
12225
|
+
|
|
10430
12226
|
is-regexp@3.1.0: {}
|
|
10431
12227
|
|
|
12228
|
+
is-set@2.0.3: {}
|
|
12229
|
+
|
|
12230
|
+
is-shared-array-buffer@1.0.4:
|
|
12231
|
+
dependencies:
|
|
12232
|
+
call-bound: 1.0.4
|
|
12233
|
+
|
|
10432
12234
|
is-stream@2.0.1: {}
|
|
10433
12235
|
|
|
10434
12236
|
is-stream@4.0.1: {}
|
|
10435
12237
|
|
|
12238
|
+
is-string@1.1.1:
|
|
12239
|
+
dependencies:
|
|
12240
|
+
call-bound: 1.0.4
|
|
12241
|
+
has-tostringtag: 1.0.2
|
|
12242
|
+
|
|
12243
|
+
is-symbol@1.1.1:
|
|
12244
|
+
dependencies:
|
|
12245
|
+
call-bound: 1.0.4
|
|
12246
|
+
has-symbols: 1.1.0
|
|
12247
|
+
safe-regex-test: 1.1.0
|
|
12248
|
+
|
|
10436
12249
|
is-typed-array@1.1.15:
|
|
10437
12250
|
dependencies:
|
|
10438
12251
|
which-typed-array: 1.1.22
|
|
@@ -10443,6 +12256,17 @@ snapshots:
|
|
|
10443
12256
|
|
|
10444
12257
|
is-unicode-supported@2.1.0: {}
|
|
10445
12258
|
|
|
12259
|
+
is-weakmap@2.0.2: {}
|
|
12260
|
+
|
|
12261
|
+
is-weakref@1.1.1:
|
|
12262
|
+
dependencies:
|
|
12263
|
+
call-bound: 1.0.4
|
|
12264
|
+
|
|
12265
|
+
is-weakset@2.0.4:
|
|
12266
|
+
dependencies:
|
|
12267
|
+
call-bound: 1.0.4
|
|
12268
|
+
get-intrinsic: 1.3.0
|
|
12269
|
+
|
|
10446
12270
|
is-wsl@2.2.0:
|
|
10447
12271
|
dependencies:
|
|
10448
12272
|
is-docker: 2.2.1
|
|
@@ -10463,6 +12287,15 @@ snapshots:
|
|
|
10463
12287
|
|
|
10464
12288
|
iterare@1.2.1: {}
|
|
10465
12289
|
|
|
12290
|
+
iterator.prototype@1.1.5:
|
|
12291
|
+
dependencies:
|
|
12292
|
+
define-data-property: 1.1.4
|
|
12293
|
+
es-object-atoms: 1.1.2
|
|
12294
|
+
get-intrinsic: 1.3.0
|
|
12295
|
+
get-proto: 1.0.1
|
|
12296
|
+
has-symbols: 1.1.0
|
|
12297
|
+
set-function-name: 2.0.2
|
|
12298
|
+
|
|
10466
12299
|
jackspeak@3.4.3:
|
|
10467
12300
|
dependencies:
|
|
10468
12301
|
'@isaacs/cliui': 8.0.2
|
|
@@ -10516,6 +12349,11 @@ snapshots:
|
|
|
10516
12349
|
|
|
10517
12350
|
json-parse-even-better-errors@2.3.1: {}
|
|
10518
12351
|
|
|
12352
|
+
json-schema-to-ts@3.1.1:
|
|
12353
|
+
dependencies:
|
|
12354
|
+
'@babel/runtime': 7.29.7
|
|
12355
|
+
ts-algebra: 2.0.0
|
|
12356
|
+
|
|
10519
12357
|
json-schema-traverse@0.4.1: {}
|
|
10520
12358
|
|
|
10521
12359
|
json-schema-traverse@1.0.0: {}
|
|
@@ -10526,6 +12364,10 @@ snapshots:
|
|
|
10526
12364
|
|
|
10527
12365
|
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
10528
12366
|
|
|
12367
|
+
json5@1.0.2:
|
|
12368
|
+
dependencies:
|
|
12369
|
+
minimist: 1.2.8
|
|
12370
|
+
|
|
10529
12371
|
json5@2.2.3: {}
|
|
10530
12372
|
|
|
10531
12373
|
jsonfile@6.2.1:
|
|
@@ -10534,6 +12376,13 @@ snapshots:
|
|
|
10534
12376
|
optionalDependencies:
|
|
10535
12377
|
graceful-fs: 4.2.11
|
|
10536
12378
|
|
|
12379
|
+
jsx-ast-utils@3.3.5:
|
|
12380
|
+
dependencies:
|
|
12381
|
+
array-includes: 3.1.9
|
|
12382
|
+
array.prototype.flat: 1.3.3
|
|
12383
|
+
object.assign: 4.1.7
|
|
12384
|
+
object.values: 1.2.1
|
|
12385
|
+
|
|
10537
12386
|
juice@11.1.1:
|
|
10538
12387
|
dependencies:
|
|
10539
12388
|
cheerio: 1.0.0
|
|
@@ -10555,6 +12404,12 @@ snapshots:
|
|
|
10555
12404
|
|
|
10556
12405
|
kleur@4.1.5: {}
|
|
10557
12406
|
|
|
12407
|
+
language-subtag-registry@0.3.23: {}
|
|
12408
|
+
|
|
12409
|
+
language-tags@1.0.9:
|
|
12410
|
+
dependencies:
|
|
12411
|
+
language-subtag-registry: 0.3.23
|
|
12412
|
+
|
|
10558
12413
|
leven@3.1.0: {}
|
|
10559
12414
|
|
|
10560
12415
|
levn@0.4.1:
|
|
@@ -10636,6 +12491,8 @@ snapshots:
|
|
|
10636
12491
|
|
|
10637
12492
|
lodash.memoize@4.1.2: {}
|
|
10638
12493
|
|
|
12494
|
+
lodash.merge@4.6.2: {}
|
|
12495
|
+
|
|
10639
12496
|
lodash.omit@4.5.0: {}
|
|
10640
12497
|
|
|
10641
12498
|
lodash.sortby@4.7.0: {}
|
|
@@ -10660,6 +12517,8 @@ snapshots:
|
|
|
10660
12517
|
|
|
10661
12518
|
long@4.0.0: {}
|
|
10662
12519
|
|
|
12520
|
+
long@5.3.2: {}
|
|
12521
|
+
|
|
10663
12522
|
loose-envify@1.4.0:
|
|
10664
12523
|
dependencies:
|
|
10665
12524
|
js-tokens: 4.0.0
|
|
@@ -10745,6 +12604,10 @@ snapshots:
|
|
|
10745
12604
|
dependencies:
|
|
10746
12605
|
brace-expansion: 5.0.9
|
|
10747
12606
|
|
|
12607
|
+
minimatch@3.1.5:
|
|
12608
|
+
dependencies:
|
|
12609
|
+
brace-expansion: 1.1.18
|
|
12610
|
+
|
|
10748
12611
|
minimatch@9.0.9:
|
|
10749
12612
|
dependencies:
|
|
10750
12613
|
brace-expansion: 2.1.4
|
|
@@ -11234,9 +13097,9 @@ snapshots:
|
|
|
11234
13097
|
|
|
11235
13098
|
ms@2.1.3: {}
|
|
11236
13099
|
|
|
11237
|
-
msw@2.15.0(@types/node@
|
|
13100
|
+
msw@2.15.0(@types/node@24.13.3)(typescript@5.8.2):
|
|
11238
13101
|
dependencies:
|
|
11239
|
-
'@inquirer/confirm': 6.1.1(@types/node@
|
|
13102
|
+
'@inquirer/confirm': 6.1.1(@types/node@24.13.3)
|
|
11240
13103
|
'@mswjs/interceptors': 0.41.9
|
|
11241
13104
|
'@open-draft/deferred-promise': 3.0.0
|
|
11242
13105
|
'@types/statuses': 2.0.6
|
|
@@ -11259,6 +13122,32 @@ snapshots:
|
|
|
11259
13122
|
transitivePeerDependencies:
|
|
11260
13123
|
- '@types/node'
|
|
11261
13124
|
|
|
13125
|
+
msw@2.15.0(@types/node@24.13.3)(typescript@6.0.3):
|
|
13126
|
+
dependencies:
|
|
13127
|
+
'@inquirer/confirm': 6.1.1(@types/node@24.13.3)
|
|
13128
|
+
'@mswjs/interceptors': 0.41.9
|
|
13129
|
+
'@open-draft/deferred-promise': 3.0.0
|
|
13130
|
+
'@types/statuses': 2.0.6
|
|
13131
|
+
cookie: 1.1.1
|
|
13132
|
+
graphql: 16.14.2
|
|
13133
|
+
headers-polyfill: 5.0.1
|
|
13134
|
+
is-node-process: 1.2.0
|
|
13135
|
+
outvariant: 1.4.3
|
|
13136
|
+
path-to-regexp: 6.3.0
|
|
13137
|
+
picocolors: 1.1.1
|
|
13138
|
+
rettime: 0.11.11
|
|
13139
|
+
statuses: 2.0.2
|
|
13140
|
+
strict-event-emitter: 0.5.1
|
|
13141
|
+
tough-cookie: 6.0.2
|
|
13142
|
+
type-fest: 5.8.0
|
|
13143
|
+
until-async: 3.0.2
|
|
13144
|
+
yargs: 17.7.3
|
|
13145
|
+
optionalDependencies:
|
|
13146
|
+
typescript: 6.0.3
|
|
13147
|
+
transitivePeerDependencies:
|
|
13148
|
+
- '@types/node'
|
|
13149
|
+
optional: true
|
|
13150
|
+
|
|
11262
13151
|
multer@2.2.0:
|
|
11263
13152
|
dependencies:
|
|
11264
13153
|
append-field: 1.0.0
|
|
@@ -11285,6 +13174,55 @@ snapshots:
|
|
|
11285
13174
|
react: 19.2.8
|
|
11286
13175
|
react-dom: 19.2.8(react@19.2.8)
|
|
11287
13176
|
|
|
13177
|
+
next@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.4):
|
|
13178
|
+
dependencies:
|
|
13179
|
+
'@next/env': 16.2.12
|
|
13180
|
+
'@swc/helpers': 0.5.15
|
|
13181
|
+
baseline-browser-mapping: 2.11.12
|
|
13182
|
+
caniuse-lite: 1.0.30001806
|
|
13183
|
+
postcss: 8.4.31
|
|
13184
|
+
react: 19.2.4
|
|
13185
|
+
react-dom: 19.2.8(react@19.2.8)
|
|
13186
|
+
styled-jsx: 5.1.6(@babel/core@7.29.7(supports-color@7.2.0))(react@19.2.4)
|
|
13187
|
+
optionalDependencies:
|
|
13188
|
+
'@next/swc-darwin-arm64': 16.2.12
|
|
13189
|
+
'@next/swc-darwin-x64': 16.2.12
|
|
13190
|
+
'@next/swc-linux-arm64-gnu': 16.2.12
|
|
13191
|
+
'@next/swc-linux-arm64-musl': 16.2.12
|
|
13192
|
+
'@next/swc-linux-x64-gnu': 16.2.12
|
|
13193
|
+
'@next/swc-linux-x64-musl': 16.2.12
|
|
13194
|
+
'@next/swc-win32-arm64-msvc': 16.2.12
|
|
13195
|
+
'@next/swc-win32-x64-msvc': 16.2.12
|
|
13196
|
+
sharp: 0.34.5
|
|
13197
|
+
transitivePeerDependencies:
|
|
13198
|
+
- '@babel/core'
|
|
13199
|
+
- babel-plugin-macros
|
|
13200
|
+
optional: true
|
|
13201
|
+
|
|
13202
|
+
next@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):
|
|
13203
|
+
dependencies:
|
|
13204
|
+
'@next/env': 16.2.12
|
|
13205
|
+
'@swc/helpers': 0.5.15
|
|
13206
|
+
baseline-browser-mapping: 2.11.12
|
|
13207
|
+
caniuse-lite: 1.0.30001806
|
|
13208
|
+
postcss: 8.4.31
|
|
13209
|
+
react: 19.2.8
|
|
13210
|
+
react-dom: 19.2.8(react@19.2.8)
|
|
13211
|
+
styled-jsx: 5.1.6(@babel/core@7.29.7(supports-color@7.2.0))(react@19.2.8)
|
|
13212
|
+
optionalDependencies:
|
|
13213
|
+
'@next/swc-darwin-arm64': 16.2.12
|
|
13214
|
+
'@next/swc-darwin-x64': 16.2.12
|
|
13215
|
+
'@next/swc-linux-arm64-gnu': 16.2.12
|
|
13216
|
+
'@next/swc-linux-arm64-musl': 16.2.12
|
|
13217
|
+
'@next/swc-linux-x64-gnu': 16.2.12
|
|
13218
|
+
'@next/swc-linux-x64-musl': 16.2.12
|
|
13219
|
+
'@next/swc-win32-arm64-msvc': 16.2.12
|
|
13220
|
+
'@next/swc-win32-x64-msvc': 16.2.12
|
|
13221
|
+
sharp: 0.34.5
|
|
13222
|
+
transitivePeerDependencies:
|
|
13223
|
+
- '@babel/core'
|
|
13224
|
+
- babel-plugin-macros
|
|
13225
|
+
|
|
11288
13226
|
no-case@3.0.4:
|
|
11289
13227
|
dependencies:
|
|
11290
13228
|
lower-case: 2.0.2
|
|
@@ -11296,6 +13234,13 @@ snapshots:
|
|
|
11296
13234
|
|
|
11297
13235
|
node-domexception@1.0.0: {}
|
|
11298
13236
|
|
|
13237
|
+
node-exports-info@1.6.2:
|
|
13238
|
+
dependencies:
|
|
13239
|
+
array.prototype.flatmap: 1.3.3
|
|
13240
|
+
es-errors: 1.3.0
|
|
13241
|
+
object.entries: 1.1.9
|
|
13242
|
+
semver: 6.3.1
|
|
13243
|
+
|
|
11299
13244
|
node-fetch@2.7.0:
|
|
11300
13245
|
dependencies:
|
|
11301
13246
|
whatwg-url: 5.0.0
|
|
@@ -11335,12 +13280,52 @@ snapshots:
|
|
|
11335
13280
|
|
|
11336
13281
|
object-inspect@1.13.4: {}
|
|
11337
13282
|
|
|
13283
|
+
object-keys@1.1.1: {}
|
|
13284
|
+
|
|
11338
13285
|
object-path@0.11.8: {}
|
|
11339
13286
|
|
|
11340
13287
|
object-treeify@1.1.33: {}
|
|
11341
13288
|
|
|
13289
|
+
object.assign@4.1.7:
|
|
13290
|
+
dependencies:
|
|
13291
|
+
call-bind: 1.0.9
|
|
13292
|
+
call-bound: 1.0.4
|
|
13293
|
+
define-properties: 1.2.1
|
|
13294
|
+
es-object-atoms: 1.1.2
|
|
13295
|
+
has-symbols: 1.1.0
|
|
13296
|
+
object-keys: 1.1.1
|
|
13297
|
+
|
|
13298
|
+
object.entries@1.1.9:
|
|
13299
|
+
dependencies:
|
|
13300
|
+
call-bind: 1.0.9
|
|
13301
|
+
call-bound: 1.0.4
|
|
13302
|
+
define-properties: 1.2.1
|
|
13303
|
+
es-object-atoms: 1.1.2
|
|
13304
|
+
|
|
13305
|
+
object.fromentries@2.0.8:
|
|
13306
|
+
dependencies:
|
|
13307
|
+
call-bind: 1.0.9
|
|
13308
|
+
define-properties: 1.2.1
|
|
13309
|
+
es-abstract: 1.24.2
|
|
13310
|
+
es-object-atoms: 1.1.2
|
|
13311
|
+
|
|
13312
|
+
object.groupby@1.0.3:
|
|
13313
|
+
dependencies:
|
|
13314
|
+
call-bind: 1.0.9
|
|
13315
|
+
define-properties: 1.2.1
|
|
13316
|
+
es-abstract: 1.24.2
|
|
13317
|
+
|
|
13318
|
+
object.values@1.2.1:
|
|
13319
|
+
dependencies:
|
|
13320
|
+
call-bind: 1.0.9
|
|
13321
|
+
call-bound: 1.0.4
|
|
13322
|
+
define-properties: 1.2.1
|
|
13323
|
+
es-object-atoms: 1.1.2
|
|
13324
|
+
|
|
11342
13325
|
observable-fns@0.6.1: {}
|
|
11343
13326
|
|
|
13327
|
+
obug@2.1.4: {}
|
|
13328
|
+
|
|
11344
13329
|
on-finished@2.4.1:
|
|
11345
13330
|
dependencies:
|
|
11346
13331
|
ee-first: 1.1.1
|
|
@@ -11411,6 +13396,13 @@ snapshots:
|
|
|
11411
13396
|
|
|
11412
13397
|
outvariant@1.4.3: {}
|
|
11413
13398
|
|
|
13399
|
+
own-keys@1.0.2:
|
|
13400
|
+
dependencies:
|
|
13401
|
+
call-bound: 1.0.4
|
|
13402
|
+
get-intrinsic: 1.3.0
|
|
13403
|
+
object-keys: 1.1.1
|
|
13404
|
+
safe-push-apply: 1.0.0
|
|
13405
|
+
|
|
11414
13406
|
p-limit@2.3.0:
|
|
11415
13407
|
dependencies:
|
|
11416
13408
|
p-try: 2.2.0
|
|
@@ -11486,6 +13478,8 @@ snapshots:
|
|
|
11486
13478
|
|
|
11487
13479
|
path-key@4.0.0: {}
|
|
11488
13480
|
|
|
13481
|
+
path-parse@1.0.7: {}
|
|
13482
|
+
|
|
11489
13483
|
path-scurry@1.11.1:
|
|
11490
13484
|
dependencies:
|
|
11491
13485
|
lru-cache: 10.4.3
|
|
@@ -11722,6 +13716,12 @@ snapshots:
|
|
|
11722
13716
|
|
|
11723
13717
|
postcss-value-parser@4.2.0: {}
|
|
11724
13718
|
|
|
13719
|
+
postcss@8.4.31:
|
|
13720
|
+
dependencies:
|
|
13721
|
+
nanoid: 3.3.17
|
|
13722
|
+
picocolors: 1.1.1
|
|
13723
|
+
source-map-js: 1.2.1
|
|
13724
|
+
|
|
11725
13725
|
postcss@8.5.25:
|
|
11726
13726
|
dependencies:
|
|
11727
13727
|
nanoid: 3.3.17
|
|
@@ -11854,6 +13854,20 @@ snapshots:
|
|
|
11854
13854
|
|
|
11855
13855
|
proto-list@1.2.4: {}
|
|
11856
13856
|
|
|
13857
|
+
protobufjs@7.6.5:
|
|
13858
|
+
dependencies:
|
|
13859
|
+
'@protobufjs/aspromise': 1.1.2
|
|
13860
|
+
'@protobufjs/base64': 1.1.2
|
|
13861
|
+
'@protobufjs/codegen': 2.0.5
|
|
13862
|
+
'@protobufjs/eventemitter': 1.1.1
|
|
13863
|
+
'@protobufjs/fetch': 1.1.1
|
|
13864
|
+
'@protobufjs/float': 1.0.2
|
|
13865
|
+
'@protobufjs/path': 1.1.2
|
|
13866
|
+
'@protobufjs/pool': 1.1.0
|
|
13867
|
+
'@protobufjs/utf8': 1.1.2
|
|
13868
|
+
'@types/node': 24.13.3
|
|
13869
|
+
long: 5.3.2
|
|
13870
|
+
|
|
11857
13871
|
proxy-addr@2.0.7:
|
|
11858
13872
|
dependencies:
|
|
11859
13873
|
forwarded: 0.2.0
|
|
@@ -11969,6 +13983,8 @@ snapshots:
|
|
|
11969
13983
|
react: 19.2.8
|
|
11970
13984
|
react-dom: 19.2.8(react@19.2.8)
|
|
11971
13985
|
|
|
13986
|
+
react@19.2.4: {}
|
|
13987
|
+
|
|
11972
13988
|
react@19.2.8: {}
|
|
11973
13989
|
|
|
11974
13990
|
readable-stream@3.6.2:
|
|
@@ -12016,6 +14032,26 @@ snapshots:
|
|
|
12016
14032
|
|
|
12017
14033
|
reflect-metadata@0.2.2: {}
|
|
12018
14034
|
|
|
14035
|
+
reflect.getprototypeof@1.0.10:
|
|
14036
|
+
dependencies:
|
|
14037
|
+
call-bind: 1.0.9
|
|
14038
|
+
define-properties: 1.2.1
|
|
14039
|
+
es-abstract: 1.24.2
|
|
14040
|
+
es-errors: 1.3.0
|
|
14041
|
+
es-object-atoms: 1.1.2
|
|
14042
|
+
get-intrinsic: 1.3.0
|
|
14043
|
+
get-proto: 1.0.1
|
|
14044
|
+
which-builtin-type: 1.2.1
|
|
14045
|
+
|
|
14046
|
+
regexp.prototype.flags@1.5.4:
|
|
14047
|
+
dependencies:
|
|
14048
|
+
call-bind: 1.0.9
|
|
14049
|
+
define-properties: 1.2.1
|
|
14050
|
+
es-errors: 1.3.0
|
|
14051
|
+
get-proto: 1.0.1
|
|
14052
|
+
gopd: 1.2.0
|
|
14053
|
+
set-function-name: 2.0.2
|
|
14054
|
+
|
|
12019
14055
|
require-directory@2.1.1: {}
|
|
12020
14056
|
|
|
12021
14057
|
require-from-string@2.0.2: {}
|
|
@@ -12028,6 +14064,15 @@ snapshots:
|
|
|
12028
14064
|
|
|
12029
14065
|
resolve-pkg-maps@1.0.0: {}
|
|
12030
14066
|
|
|
14067
|
+
resolve@2.0.0-next.7:
|
|
14068
|
+
dependencies:
|
|
14069
|
+
es-errors: 1.3.0
|
|
14070
|
+
is-core-module: 2.16.2
|
|
14071
|
+
node-exports-info: 1.6.2
|
|
14072
|
+
object-keys: 1.1.1
|
|
14073
|
+
path-parse: 1.0.7
|
|
14074
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
14075
|
+
|
|
12031
14076
|
restore-cursor@3.1.0:
|
|
12032
14077
|
dependencies:
|
|
12033
14078
|
onetime: 5.1.2
|
|
@@ -12098,8 +14143,27 @@ snapshots:
|
|
|
12098
14143
|
dependencies:
|
|
12099
14144
|
tslib: 2.8.1
|
|
12100
14145
|
|
|
14146
|
+
safe-array-concat@1.1.4:
|
|
14147
|
+
dependencies:
|
|
14148
|
+
call-bind: 1.0.9
|
|
14149
|
+
call-bound: 1.0.4
|
|
14150
|
+
get-intrinsic: 1.3.0
|
|
14151
|
+
has-symbols: 1.1.0
|
|
14152
|
+
isarray: 2.0.5
|
|
14153
|
+
|
|
12101
14154
|
safe-buffer@5.2.1: {}
|
|
12102
14155
|
|
|
14156
|
+
safe-push-apply@1.0.0:
|
|
14157
|
+
dependencies:
|
|
14158
|
+
es-errors: 1.3.0
|
|
14159
|
+
isarray: 2.0.5
|
|
14160
|
+
|
|
14161
|
+
safe-regex-test@1.1.0:
|
|
14162
|
+
dependencies:
|
|
14163
|
+
call-bound: 1.0.4
|
|
14164
|
+
es-errors: 1.3.0
|
|
14165
|
+
is-regex: 1.2.1
|
|
14166
|
+
|
|
12103
14167
|
safer-buffer@2.1.2: {}
|
|
12104
14168
|
|
|
12105
14169
|
sax@1.6.1: {}
|
|
@@ -12185,6 +14249,19 @@ snapshots:
|
|
|
12185
14249
|
gopd: 1.2.0
|
|
12186
14250
|
has-property-descriptors: 1.0.2
|
|
12187
14251
|
|
|
14252
|
+
set-function-name@2.0.2:
|
|
14253
|
+
dependencies:
|
|
14254
|
+
define-data-property: 1.1.4
|
|
14255
|
+
es-errors: 1.3.0
|
|
14256
|
+
functions-have-names: 1.2.3
|
|
14257
|
+
has-property-descriptors: 1.0.2
|
|
14258
|
+
|
|
14259
|
+
set-proto@1.0.0:
|
|
14260
|
+
dependencies:
|
|
14261
|
+
dunder-proto: 1.0.1
|
|
14262
|
+
es-errors: 1.3.0
|
|
14263
|
+
es-object-atoms: 1.1.2
|
|
14264
|
+
|
|
12188
14265
|
setprototypeof@1.2.0: {}
|
|
12189
14266
|
|
|
12190
14267
|
sha.js@2.4.12:
|
|
@@ -12193,7 +14270,7 @@ snapshots:
|
|
|
12193
14270
|
safe-buffer: 5.2.1
|
|
12194
14271
|
to-buffer: 1.2.2
|
|
12195
14272
|
|
|
12196
|
-
shadcn@3.8.5(@types/node@
|
|
14273
|
+
shadcn@3.8.5(@types/node@24.13.3)(supports-color@7.2.0)(typescript@5.8.2):
|
|
12197
14274
|
dependencies:
|
|
12198
14275
|
'@antfu/ni': 25.0.0
|
|
12199
14276
|
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
@@ -12215,7 +14292,7 @@ snapshots:
|
|
|
12215
14292
|
fuzzysort: 3.1.0
|
|
12216
14293
|
https-proxy-agent: 7.0.6(supports-color@7.2.0)
|
|
12217
14294
|
kleur: 4.1.5
|
|
12218
|
-
msw: 2.15.0(@types/node@
|
|
14295
|
+
msw: 2.15.0(@types/node@24.13.3)(typescript@5.8.2)
|
|
12219
14296
|
node-fetch: 3.3.2
|
|
12220
14297
|
open: 11.0.0
|
|
12221
14298
|
ora: 8.2.0
|
|
@@ -12302,6 +14379,8 @@ snapshots:
|
|
|
12302
14379
|
side-channel-map: 1.0.1
|
|
12303
14380
|
side-channel-weakmap: 1.0.2
|
|
12304
14381
|
|
|
14382
|
+
siginfo@2.0.0: {}
|
|
14383
|
+
|
|
12305
14384
|
signal-exit@3.0.7: {}
|
|
12306
14385
|
|
|
12307
14386
|
signal-exit@4.1.0: {}
|
|
@@ -12330,10 +14409,21 @@ snapshots:
|
|
|
12330
14409
|
|
|
12331
14410
|
sql-highlight@6.1.0: {}
|
|
12332
14411
|
|
|
14412
|
+
stable-hash@0.0.4: {}
|
|
14413
|
+
|
|
14414
|
+
stackback@0.0.2: {}
|
|
14415
|
+
|
|
12333
14416
|
statuses@2.0.2: {}
|
|
12334
14417
|
|
|
14418
|
+
std-env@4.2.0: {}
|
|
14419
|
+
|
|
12335
14420
|
stdin-discarder@0.2.2: {}
|
|
12336
14421
|
|
|
14422
|
+
stop-iteration-iterator@1.1.0:
|
|
14423
|
+
dependencies:
|
|
14424
|
+
es-errors: 1.3.0
|
|
14425
|
+
internal-slot: 1.1.0
|
|
14426
|
+
|
|
12337
14427
|
streamsearch@1.1.0: {}
|
|
12338
14428
|
|
|
12339
14429
|
strict-event-emitter@0.5.1: {}
|
|
@@ -12356,6 +14446,57 @@ snapshots:
|
|
|
12356
14446
|
get-east-asian-width: 1.6.0
|
|
12357
14447
|
strip-ansi: 7.2.0
|
|
12358
14448
|
|
|
14449
|
+
string.prototype.includes@2.0.1:
|
|
14450
|
+
dependencies:
|
|
14451
|
+
call-bind: 1.0.9
|
|
14452
|
+
define-properties: 1.2.1
|
|
14453
|
+
es-abstract: 1.24.2
|
|
14454
|
+
|
|
14455
|
+
string.prototype.matchall@4.0.12:
|
|
14456
|
+
dependencies:
|
|
14457
|
+
call-bind: 1.0.9
|
|
14458
|
+
call-bound: 1.0.4
|
|
14459
|
+
define-properties: 1.2.1
|
|
14460
|
+
es-abstract: 1.24.2
|
|
14461
|
+
es-errors: 1.3.0
|
|
14462
|
+
es-object-atoms: 1.1.2
|
|
14463
|
+
get-intrinsic: 1.3.0
|
|
14464
|
+
gopd: 1.2.0
|
|
14465
|
+
has-symbols: 1.1.0
|
|
14466
|
+
internal-slot: 1.1.0
|
|
14467
|
+
regexp.prototype.flags: 1.5.4
|
|
14468
|
+
set-function-name: 2.0.2
|
|
14469
|
+
side-channel: 1.1.1
|
|
14470
|
+
|
|
14471
|
+
string.prototype.repeat@1.0.0:
|
|
14472
|
+
dependencies:
|
|
14473
|
+
define-properties: 1.2.1
|
|
14474
|
+
es-abstract: 1.24.2
|
|
14475
|
+
|
|
14476
|
+
string.prototype.trim@1.2.11:
|
|
14477
|
+
dependencies:
|
|
14478
|
+
call-bind: 1.0.9
|
|
14479
|
+
call-bound: 1.0.4
|
|
14480
|
+
define-data-property: 1.1.4
|
|
14481
|
+
define-properties: 1.2.1
|
|
14482
|
+
es-abstract: 1.24.2
|
|
14483
|
+
es-object-atoms: 1.1.2
|
|
14484
|
+
has-property-descriptors: 1.0.2
|
|
14485
|
+
safe-regex-test: 1.1.0
|
|
14486
|
+
|
|
14487
|
+
string.prototype.trimend@1.0.10:
|
|
14488
|
+
dependencies:
|
|
14489
|
+
call-bind: 1.0.9
|
|
14490
|
+
call-bound: 1.0.4
|
|
14491
|
+
define-properties: 1.2.1
|
|
14492
|
+
es-object-atoms: 1.1.2
|
|
14493
|
+
|
|
14494
|
+
string.prototype.trimstart@1.0.8:
|
|
14495
|
+
dependencies:
|
|
14496
|
+
call-bind: 1.0.9
|
|
14497
|
+
define-properties: 1.2.1
|
|
14498
|
+
es-object-atoms: 1.1.2
|
|
14499
|
+
|
|
12359
14500
|
string_decoder@1.3.0:
|
|
12360
14501
|
dependencies:
|
|
12361
14502
|
safe-buffer: 5.2.1
|
|
@@ -12380,6 +14521,8 @@ snapshots:
|
|
|
12380
14521
|
|
|
12381
14522
|
strip-final-newline@4.0.0: {}
|
|
12382
14523
|
|
|
14524
|
+
strip-json-comments@3.1.1: {}
|
|
14525
|
+
|
|
12383
14526
|
strip-json-comments@5.0.3: {}
|
|
12384
14527
|
|
|
12385
14528
|
strtok3@10.3.5:
|
|
@@ -12391,6 +14534,21 @@ snapshots:
|
|
|
12391
14534
|
'@tokenizer/token': 0.3.0
|
|
12392
14535
|
peek-readable: 5.4.2
|
|
12393
14536
|
|
|
14537
|
+
styled-jsx@5.1.6(@babel/core@7.29.7(supports-color@7.2.0))(react@19.2.4):
|
|
14538
|
+
dependencies:
|
|
14539
|
+
client-only: 0.0.1
|
|
14540
|
+
react: 19.2.4
|
|
14541
|
+
optionalDependencies:
|
|
14542
|
+
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
14543
|
+
optional: true
|
|
14544
|
+
|
|
14545
|
+
styled-jsx@5.1.6(@babel/core@7.29.7(supports-color@7.2.0))(react@19.2.8):
|
|
14546
|
+
dependencies:
|
|
14547
|
+
client-only: 0.0.1
|
|
14548
|
+
react: 19.2.8
|
|
14549
|
+
optionalDependencies:
|
|
14550
|
+
'@babel/core': 7.29.7(supports-color@7.2.0)
|
|
14551
|
+
|
|
12394
14552
|
stylehacks@7.0.11(postcss@8.5.25):
|
|
12395
14553
|
dependencies:
|
|
12396
14554
|
browserslist: 4.28.7
|
|
@@ -12413,6 +14571,8 @@ snapshots:
|
|
|
12413
14571
|
dependencies:
|
|
12414
14572
|
has-flag: 4.0.0
|
|
12415
14573
|
|
|
14574
|
+
supports-preserve-symlinks-flag@1.0.0: {}
|
|
14575
|
+
|
|
12416
14576
|
svgo@4.0.2:
|
|
12417
14577
|
dependencies:
|
|
12418
14578
|
commander: 11.1.0
|
|
@@ -12453,6 +14613,8 @@ snapshots:
|
|
|
12453
14613
|
esm: 3.2.25
|
|
12454
14614
|
optional: true
|
|
12455
14615
|
|
|
14616
|
+
tinybench@2.9.0: {}
|
|
14617
|
+
|
|
12456
14618
|
tinyexec@1.3.0: {}
|
|
12457
14619
|
|
|
12458
14620
|
tinyglobby@0.2.17:
|
|
@@ -12460,6 +14622,8 @@ snapshots:
|
|
|
12460
14622
|
fdir: 6.5.0(picomatch@4.0.5)
|
|
12461
14623
|
picomatch: 4.0.5
|
|
12462
14624
|
|
|
14625
|
+
tinyrainbow@3.1.1: {}
|
|
14626
|
+
|
|
12463
14627
|
tldts-core@7.4.10: {}
|
|
12464
14628
|
|
|
12465
14629
|
tldts@7.4.10:
|
|
@@ -12490,10 +14654,16 @@ snapshots:
|
|
|
12490
14654
|
|
|
12491
14655
|
tr46@0.0.3: {}
|
|
12492
14656
|
|
|
14657
|
+
ts-algebra@2.0.0: {}
|
|
14658
|
+
|
|
12493
14659
|
ts-api-utils@2.5.0(typescript@5.8.2):
|
|
12494
14660
|
dependencies:
|
|
12495
14661
|
typescript: 5.8.2
|
|
12496
14662
|
|
|
14663
|
+
ts-api-utils@2.5.0(typescript@6.0.3):
|
|
14664
|
+
dependencies:
|
|
14665
|
+
typescript: 6.0.3
|
|
14666
|
+
|
|
12497
14667
|
ts-morph@21.0.1:
|
|
12498
14668
|
dependencies:
|
|
12499
14669
|
'@ts-morph/common': 0.22.0
|
|
@@ -12504,14 +14674,14 @@ snapshots:
|
|
|
12504
14674
|
'@ts-morph/common': 0.27.0
|
|
12505
14675
|
code-block-writer: 13.0.3
|
|
12506
14676
|
|
|
12507
|
-
ts-node@10.9.2(@types/node@
|
|
14677
|
+
ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2):
|
|
12508
14678
|
dependencies:
|
|
12509
14679
|
'@cspotcode/source-map-support': 0.8.1
|
|
12510
14680
|
'@tsconfig/node10': 1.0.12
|
|
12511
14681
|
'@tsconfig/node12': 1.0.11
|
|
12512
14682
|
'@tsconfig/node14': 1.0.3
|
|
12513
14683
|
'@tsconfig/node16': 1.0.4
|
|
12514
|
-
'@types/node':
|
|
14684
|
+
'@types/node': 24.13.3
|
|
12515
14685
|
acorn: 8.18.0
|
|
12516
14686
|
acorn-walk: 8.3.5
|
|
12517
14687
|
arg: 4.1.3
|
|
@@ -12522,6 +14692,13 @@ snapshots:
|
|
|
12522
14692
|
v8-compile-cache-lib: 3.0.1
|
|
12523
14693
|
yn: 3.1.1
|
|
12524
14694
|
|
|
14695
|
+
tsconfig-paths@3.15.0:
|
|
14696
|
+
dependencies:
|
|
14697
|
+
'@types/json5': 0.0.29
|
|
14698
|
+
json5: 1.0.2
|
|
14699
|
+
minimist: 1.2.8
|
|
14700
|
+
strip-bom: 3.0.0
|
|
14701
|
+
|
|
12525
14702
|
tsconfig-paths@4.2.0:
|
|
12526
14703
|
dependencies:
|
|
12527
14704
|
json5: 2.2.3
|
|
@@ -12575,9 +14752,36 @@ snapshots:
|
|
|
12575
14752
|
es-errors: 1.3.0
|
|
12576
14753
|
is-typed-array: 1.1.15
|
|
12577
14754
|
|
|
14755
|
+
typed-array-byte-length@1.0.3:
|
|
14756
|
+
dependencies:
|
|
14757
|
+
call-bind: 1.0.9
|
|
14758
|
+
for-each: 0.3.5
|
|
14759
|
+
gopd: 1.2.0
|
|
14760
|
+
has-proto: 1.2.0
|
|
14761
|
+
is-typed-array: 1.1.15
|
|
14762
|
+
|
|
14763
|
+
typed-array-byte-offset@1.0.4:
|
|
14764
|
+
dependencies:
|
|
14765
|
+
available-typed-arrays: 1.0.7
|
|
14766
|
+
call-bind: 1.0.9
|
|
14767
|
+
for-each: 0.3.5
|
|
14768
|
+
gopd: 1.2.0
|
|
14769
|
+
has-proto: 1.2.0
|
|
14770
|
+
is-typed-array: 1.1.15
|
|
14771
|
+
reflect.getprototypeof: 1.0.10
|
|
14772
|
+
|
|
14773
|
+
typed-array-length@1.0.8:
|
|
14774
|
+
dependencies:
|
|
14775
|
+
call-bind: 1.0.9
|
|
14776
|
+
for-each: 0.3.5
|
|
14777
|
+
gopd: 1.2.0
|
|
14778
|
+
is-typed-array: 1.1.15
|
|
14779
|
+
possible-typed-array-names: 1.1.0
|
|
14780
|
+
reflect.getprototypeof: 1.0.10
|
|
14781
|
+
|
|
12578
14782
|
typedarray@0.0.6: {}
|
|
12579
14783
|
|
|
12580
|
-
typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@
|
|
14784
|
+
typeorm@0.3.31(pg@8.22.0)(supports-color@7.2.0)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.8.2)):
|
|
12581
14785
|
dependencies:
|
|
12582
14786
|
'@sqltools/formatter': 1.2.5
|
|
12583
14787
|
ansis: 4.3.1
|
|
@@ -12596,13 +14800,26 @@ snapshots:
|
|
|
12596
14800
|
yargs: 17.7.3
|
|
12597
14801
|
optionalDependencies:
|
|
12598
14802
|
pg: 8.22.0
|
|
12599
|
-
ts-node: 10.9.2(@types/node@
|
|
14803
|
+
ts-node: 10.9.2(@types/node@24.13.3)(typescript@5.8.2)
|
|
12600
14804
|
transitivePeerDependencies:
|
|
12601
14805
|
- babel-plugin-macros
|
|
12602
14806
|
- supports-color
|
|
12603
14807
|
|
|
14808
|
+
typescript-eslint@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3):
|
|
14809
|
+
dependencies:
|
|
14810
|
+
'@typescript-eslint/eslint-plugin': 8.65.0(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
14811
|
+
'@typescript-eslint/parser': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
14812
|
+
'@typescript-eslint/typescript-estree': 8.65.0(supports-color@7.2.0)(typescript@6.0.3)
|
|
14813
|
+
'@typescript-eslint/utils': 8.65.0(eslint@9.39.5(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)
|
|
14814
|
+
eslint: 9.39.5(jiti@2.7.0)(supports-color@7.2.0)
|
|
14815
|
+
typescript: 6.0.3
|
|
14816
|
+
transitivePeerDependencies:
|
|
14817
|
+
- supports-color
|
|
14818
|
+
|
|
12604
14819
|
typescript@5.8.2: {}
|
|
12605
14820
|
|
|
14821
|
+
typescript@6.0.3: {}
|
|
14822
|
+
|
|
12606
14823
|
uglify-js@3.19.3:
|
|
12607
14824
|
optional: true
|
|
12608
14825
|
|
|
@@ -12612,7 +14829,14 @@ snapshots:
|
|
|
12612
14829
|
|
|
12613
14830
|
uint8array-extras@1.5.0: {}
|
|
12614
14831
|
|
|
12615
|
-
|
|
14832
|
+
unbox-primitive@1.1.0:
|
|
14833
|
+
dependencies:
|
|
14834
|
+
call-bound: 1.0.4
|
|
14835
|
+
has-bigints: 1.1.0
|
|
14836
|
+
has-symbols: 1.1.0
|
|
14837
|
+
which-boxed-primitive: 1.1.1
|
|
14838
|
+
|
|
14839
|
+
undici-types@7.18.2: {}
|
|
12616
14840
|
|
|
12617
14841
|
undici@6.28.0: {}
|
|
12618
14842
|
|
|
@@ -12624,7 +14848,7 @@ snapshots:
|
|
|
12624
14848
|
|
|
12625
14849
|
unpipe@1.0.0: {}
|
|
12626
14850
|
|
|
12627
|
-
unplugin@3.3.0(esbuild@0.28.1)(rollup@4.62.4)(vite@7.3.6(@types/node@
|
|
14851
|
+
unplugin@3.3.0(esbuild@0.28.1)(rollup@4.62.4)(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)):
|
|
12628
14852
|
dependencies:
|
|
12629
14853
|
'@jridgewell/remapping': 2.3.5
|
|
12630
14854
|
picomatch: 4.0.5
|
|
@@ -12632,7 +14856,7 @@ snapshots:
|
|
|
12632
14856
|
optionalDependencies:
|
|
12633
14857
|
esbuild: 0.28.1
|
|
12634
14858
|
rollup: 4.62.4
|
|
12635
|
-
vite: 7.3.6(@types/node@
|
|
14859
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
12636
14860
|
|
|
12637
14861
|
until-async@3.0.2: {}
|
|
12638
14862
|
|
|
@@ -12717,7 +14941,7 @@ snapshots:
|
|
|
12717
14941
|
d3-time: 3.1.0
|
|
12718
14942
|
d3-timer: 3.0.1
|
|
12719
14943
|
|
|
12720
|
-
vite@7.3.6(@types/node@
|
|
14944
|
+
vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3):
|
|
12721
14945
|
dependencies:
|
|
12722
14946
|
esbuild: 0.28.1
|
|
12723
14947
|
fdir: 6.5.0(picomatch@4.0.5)
|
|
@@ -12726,12 +14950,39 @@ snapshots:
|
|
|
12726
14950
|
rollup: 4.62.4
|
|
12727
14951
|
tinyglobby: 0.2.17
|
|
12728
14952
|
optionalDependencies:
|
|
12729
|
-
'@types/node':
|
|
14953
|
+
'@types/node': 24.13.3
|
|
12730
14954
|
fsevents: 2.3.3
|
|
12731
14955
|
jiti: 2.7.0
|
|
12732
14956
|
lightningcss: 1.32.0
|
|
12733
14957
|
tsx: 4.20.3
|
|
12734
14958
|
|
|
14959
|
+
vitest@4.1.10(@types/node@24.13.3)(msw@2.15.0(@types/node@24.13.3)(typescript@6.0.3))(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)):
|
|
14960
|
+
dependencies:
|
|
14961
|
+
'@vitest/expect': 4.1.10
|
|
14962
|
+
'@vitest/mocker': 4.1.10(msw@2.15.0(@types/node@24.13.3)(typescript@6.0.3))(vite@7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3))
|
|
14963
|
+
'@vitest/pretty-format': 4.1.10
|
|
14964
|
+
'@vitest/runner': 4.1.10
|
|
14965
|
+
'@vitest/snapshot': 4.1.10
|
|
14966
|
+
'@vitest/spy': 4.1.10
|
|
14967
|
+
'@vitest/utils': 4.1.10
|
|
14968
|
+
es-module-lexer: 2.3.2
|
|
14969
|
+
expect-type: 1.4.0
|
|
14970
|
+
magic-string: 0.30.21
|
|
14971
|
+
obug: 2.1.4
|
|
14972
|
+
pathe: 2.0.3
|
|
14973
|
+
picomatch: 4.0.5
|
|
14974
|
+
std-env: 4.2.0
|
|
14975
|
+
tinybench: 2.9.0
|
|
14976
|
+
tinyexec: 1.3.0
|
|
14977
|
+
tinyglobby: 0.2.17
|
|
14978
|
+
tinyrainbow: 3.1.1
|
|
14979
|
+
vite: 7.3.6(@types/node@24.13.3)(jiti@2.7.0)(lightningcss@1.32.0)(tsx@4.20.3)
|
|
14980
|
+
why-is-node-running: 2.3.0
|
|
14981
|
+
optionalDependencies:
|
|
14982
|
+
'@types/node': 24.13.3
|
|
14983
|
+
transitivePeerDependencies:
|
|
14984
|
+
- msw
|
|
14985
|
+
|
|
12735
14986
|
w3c-keyname@2.2.8: {}
|
|
12736
14987
|
|
|
12737
14988
|
wcwidth@1.0.1:
|
|
@@ -12765,6 +15016,37 @@ snapshots:
|
|
|
12765
15016
|
tr46: 0.0.3
|
|
12766
15017
|
webidl-conversions: 3.0.1
|
|
12767
15018
|
|
|
15019
|
+
which-boxed-primitive@1.1.1:
|
|
15020
|
+
dependencies:
|
|
15021
|
+
is-bigint: 1.1.0
|
|
15022
|
+
is-boolean-object: 1.2.2
|
|
15023
|
+
is-number-object: 1.1.1
|
|
15024
|
+
is-string: 1.1.1
|
|
15025
|
+
is-symbol: 1.1.1
|
|
15026
|
+
|
|
15027
|
+
which-builtin-type@1.2.1:
|
|
15028
|
+
dependencies:
|
|
15029
|
+
call-bound: 1.0.4
|
|
15030
|
+
function.prototype.name: 1.2.0
|
|
15031
|
+
has-tostringtag: 1.0.2
|
|
15032
|
+
is-async-function: 2.1.1
|
|
15033
|
+
is-date-object: 1.1.0
|
|
15034
|
+
is-finalizationregistry: 1.1.1
|
|
15035
|
+
is-generator-function: 1.1.2
|
|
15036
|
+
is-regex: 1.2.1
|
|
15037
|
+
is-weakref: 1.1.1
|
|
15038
|
+
isarray: 2.0.5
|
|
15039
|
+
which-boxed-primitive: 1.1.1
|
|
15040
|
+
which-collection: 1.0.2
|
|
15041
|
+
which-typed-array: 1.1.22
|
|
15042
|
+
|
|
15043
|
+
which-collection@1.0.2:
|
|
15044
|
+
dependencies:
|
|
15045
|
+
is-map: 2.0.3
|
|
15046
|
+
is-set: 2.0.3
|
|
15047
|
+
is-weakmap: 2.0.2
|
|
15048
|
+
is-weakset: 2.0.4
|
|
15049
|
+
|
|
12768
15050
|
which-typed-array@1.1.22:
|
|
12769
15051
|
dependencies:
|
|
12770
15052
|
available-typed-arrays: 1.0.7
|
|
@@ -12783,6 +15065,11 @@ snapshots:
|
|
|
12783
15065
|
dependencies:
|
|
12784
15066
|
isexe: 3.1.5
|
|
12785
15067
|
|
|
15068
|
+
why-is-node-running@2.3.0:
|
|
15069
|
+
dependencies:
|
|
15070
|
+
siginfo: 2.0.0
|
|
15071
|
+
stackback: 0.0.2
|
|
15072
|
+
|
|
12786
15073
|
word-wrap@1.2.5: {}
|
|
12787
15074
|
|
|
12788
15075
|
wordwrap@1.0.0: {}
|
|
@@ -12847,6 +15134,10 @@ snapshots:
|
|
|
12847
15134
|
dependencies:
|
|
12848
15135
|
zod: 3.25.76
|
|
12849
15136
|
|
|
15137
|
+
zod-validation-error@4.0.2(zod@4.4.3):
|
|
15138
|
+
dependencies:
|
|
15139
|
+
zod: 4.4.3
|
|
15140
|
+
|
|
12850
15141
|
zod@3.25.76: {}
|
|
12851
15142
|
|
|
12852
15143
|
zod@4.4.3: {}
|