@cogito.ai/cli 0.4.2 → 0.4.4
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 +29 -22
- package/dist/index.js +9 -15
- package/dist/templates/web-nextjs/.github/copilot-instructions.md +5 -6
- package/dist/templates/web-nextjs/README.md +25 -24
- package/dist/templates/web-nextjs/apps/docs/.source/browser.ts +1 -1
- package/dist/templates/web-nextjs/apps/docs/.source/server.ts +6 -6
- package/dist/templates/web-nextjs/apps/docs/app/docs/[[...slug]]/page.tsx +1 -6
- package/dist/templates/web-nextjs/apps/docs/app/docs/layout.tsx +1 -4
- package/dist/templates/web-nextjs/apps/docs/app/llms-full.txt/route.ts +3 -1
- package/dist/templates/web-nextjs/apps/docs/next-env.d.ts +1 -1
- package/dist/templates/web-nextjs/apps/web/.env.example +35 -0
- package/dist/templates/web-nextjs/apps/web/.github/copilot-instructions.md +53 -6
- package/dist/templates/web-nextjs/apps/web/.github/skills/impeccable/SKILL.md +55 -0
- package/dist/templates/web-nextjs/apps/web/DESIGN.md +65 -0
- package/dist/templates/web-nextjs/apps/web/messages/en.json +151 -5
- package/dist/templates/web-nextjs/apps/web/messages/zh.json +151 -5
- package/dist/templates/web-nextjs/apps/web/next-env.d.ts +1 -1
- package/dist/templates/web-nextjs/apps/web/next.config.ts +3 -3
- package/dist/templates/web-nextjs/apps/web/package.json +4 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/forgot-password/page.tsx +167 -38
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/login/page.tsx +13 -3
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/reset-password/page.tsx +4 -1
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/signup/page.tsx +18 -17
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/dashboard/page.tsx +1 -5
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/payment/[paymentId]/page.tsx +88 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/payment/checkout/page.tsx +170 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/pricing/page.tsx +120 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/settings/layout.tsx +45 -2
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/settings/profile/page.tsx +2 -8
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/settings/subscription/page.tsx +128 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/about/page.tsx +3 -6
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/globals.css +17 -5
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/help/page.tsx +1 -5
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/layout.tsx +10 -8
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/page.tsx +22 -6
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/privacy/page.tsx +3 -6
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/terms/page.tsx +1 -5
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/alipay/create/route.ts +43 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/alipay/notify/route.ts +105 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/alipay/query/route.ts +54 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/alipay/return/route.ts +20 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/create/route.ts +52 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/wechat/create/route.ts +58 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/wechat/notify/route.ts +92 -0
- package/dist/templates/web-nextjs/apps/web/src/app/api/payments/wechat/query/route.ts +54 -0
- package/dist/templates/web-nextjs/apps/web/src/app/auth/callback/route.ts +2 -3
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/app-sidebar.tsx +13 -16
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/chart-area-interactive.tsx +122 -146
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/data-table.tsx +84 -149
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-documents.tsx +7 -16
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-main.tsx +4 -4
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-secondary.tsx +4 -4
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-user.tsx +12 -21
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/page.tsx +10 -13
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/section-cards.tsx +5 -9
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/site-header.tsx +6 -7
- package/dist/templates/web-nextjs/apps/web/src/components/landing/features.tsx +63 -0
- package/dist/templates/web-nextjs/apps/web/src/components/landing/footer.tsx +48 -0
- package/dist/templates/web-nextjs/apps/web/src/components/landing/header.tsx +97 -0
- package/dist/templates/web-nextjs/apps/web/src/components/landing/hero.tsx +45 -0
- package/dist/templates/web-nextjs/apps/web/src/components/landing/how-it-works.tsx +35 -0
- package/dist/templates/web-nextjs/apps/web/src/components/landing/pricing-teaser.tsx +23 -0
- package/dist/templates/web-nextjs/apps/web/src/components/profile/profile-form.tsx +6 -4
- package/dist/templates/web-nextjs/apps/web/src/components/providers/theme-provider.tsx +16 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/alert-dialog.tsx +32 -49
- package/dist/templates/web-nextjs/apps/web/src/components/ui/alert.tsx +16 -23
- package/dist/templates/web-nextjs/apps/web/src/components/ui/avatar.tsx +25 -38
- package/dist/templates/web-nextjs/apps/web/src/components/ui/badge.tsx +16 -18
- package/dist/templates/web-nextjs/apps/web/src/components/ui/breadcrumb.tsx +19 -26
- package/dist/templates/web-nextjs/apps/web/src/components/ui/button.tsx +23 -24
- package/dist/templates/web-nextjs/apps/web/src/components/ui/card.tsx +19 -36
- package/dist/templates/web-nextjs/apps/web/src/components/ui/chart.tsx +60 -94
- package/dist/templates/web-nextjs/apps/web/src/components/ui/checkbox.tsx +8 -11
- package/dist/templates/web-nextjs/apps/web/src/components/ui/collapsible.tsx +5 -17
- package/dist/templates/web-nextjs/apps/web/src/components/ui/command.tsx +25 -48
- package/dist/templates/web-nextjs/apps/web/src/components/ui/dialog.tsx +21 -35
- package/dist/templates/web-nextjs/apps/web/src/components/ui/drawer.tsx +24 -35
- package/dist/templates/web-nextjs/apps/web/src/components/ui/dropdown-menu.tsx +26 -55
- package/dist/templates/web-nextjs/apps/web/src/components/ui/field.tsx +62 -76
- package/dist/templates/web-nextjs/apps/web/src/components/ui/form.tsx +19 -34
- package/dist/templates/web-nextjs/apps/web/src/components/ui/input-otp.tsx +13 -20
- package/dist/templates/web-nextjs/apps/web/src/components/ui/input.tsx +6 -6
- package/dist/templates/web-nextjs/apps/web/src/components/ui/label.tsx +6 -6
- package/dist/templates/web-nextjs/apps/web/src/components/ui/pagination.tsx +21 -42
- package/dist/templates/web-nextjs/apps/web/src/components/ui/popover.tsx +16 -31
- package/dist/templates/web-nextjs/apps/web/src/components/ui/progress.tsx +5 -8
- package/dist/templates/web-nextjs/apps/web/src/components/ui/radio-group.tsx +8 -8
- package/dist/templates/web-nextjs/apps/web/src/components/ui/scroll-area.tsx +10 -12
- package/dist/templates/web-nextjs/apps/web/src/components/ui/select.tsx +26 -41
- package/dist/templates/web-nextjs/apps/web/src/components/ui/separator.tsx +7 -7
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sheet.tsx +29 -38
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sidebar.tsx +157 -189
- package/dist/templates/web-nextjs/apps/web/src/components/ui/skeleton.tsx +3 -3
- package/dist/templates/web-nextjs/apps/web/src/components/ui/slider.tsx +10 -15
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sonner.tsx +13 -7
- package/dist/templates/web-nextjs/apps/web/src/components/ui/switch.tsx +9 -9
- package/dist/templates/web-nextjs/apps/web/src/components/ui/table.tsx +24 -48
- package/dist/templates/web-nextjs/apps/web/src/components/ui/tabs.tsx +21 -31
- package/dist/templates/web-nextjs/apps/web/src/components/ui/textarea.tsx +5 -5
- package/dist/templates/web-nextjs/apps/web/src/components/ui/theme-toggle.tsx +23 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/toggle-group.tsx +15 -16
- package/dist/templates/web-nextjs/apps/web/src/components/ui/toggle.tsx +14 -15
- package/dist/templates/web-nextjs/apps/web/src/components/ui/tooltip.tsx +8 -12
- package/dist/templates/web-nextjs/apps/web/src/core/repositories/IAuthRepository.ts +2 -0
- package/dist/templates/web-nextjs/apps/web/src/core/types/auth.ts +1 -3
- package/dist/templates/web-nextjs/apps/web/src/features/auth/actions.ts +57 -1
- package/dist/templates/web-nextjs/apps/web/src/features/auth/index.ts +2 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/alipay/client.ts +36 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/alipay/server.ts +83 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/components/index.ts +4 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/components/pro-badge.tsx +9 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/components/pro-feature-comparison.tsx +70 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/components/quota-warning-banner.tsx +37 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/components/upgrade-button.tsx +42 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/hooks.ts +141 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/payment-helpers.ts +27 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/payment-service.ts +56 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/service.ts +55 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/types.ts +73 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/wechat/client.ts +33 -0
- package/dist/templates/web-nextjs/apps/web/src/features/subscription/wechat/server.ts +147 -0
- package/dist/templates/web-nextjs/apps/web/src/hooks/use-mobile.ts +4 -4
- package/dist/templates/web-nextjs/apps/web/src/i18n/config.ts +1 -1
- package/dist/templates/web-nextjs/apps/web/src/infra/db/SupabaseAuthRepository.ts +48 -4
- package/dist/templates/web-nextjs/apps/web/src/infra/db/client.ts +1 -4
- package/dist/templates/web-nextjs/apps/web/src/lib/supabase/admin.ts +23 -0
- package/dist/templates/web-nextjs/apps/web/src/lib/utils.ts +2 -2
- package/dist/templates/web-nextjs/apps/web/src/lib/validations/auth.ts +13 -0
- package/dist/templates/web-nextjs/apps/web/src/lib/wechat-pay/client.ts +66 -0
- package/dist/templates/web-nextjs/apps/web/src/lib/wechat-pay/crypto.ts +99 -0
- package/dist/templates/web-nextjs/apps/web/src/lib/wechat-pay/types.ts +10 -0
- package/dist/templates/web-nextjs/apps/web/src/styles/tokens.css +58 -0
- package/dist/templates/web-nextjs/pnpm-lock.yaml +319 -0
- package/dist/templates/web-nextjs/supabase/migrations/20250608_add_subscription_tables.sql +125 -0
- package/package.json +1 -1
|
@@ -147,15 +147,24 @@ importers:
|
|
|
147
147
|
'@supabase/ssr':
|
|
148
148
|
specifier: ^0.10.3
|
|
149
149
|
version: 0.10.3(@supabase/supabase-js@2.107.0)
|
|
150
|
+
'@supabase/supabase-js':
|
|
151
|
+
specifier: ^2.107.0
|
|
152
|
+
version: 2.107.0
|
|
150
153
|
'@tabler/icons-react':
|
|
151
154
|
specifier: ^3.44.0
|
|
152
155
|
version: 3.44.0(react@19.2.7)
|
|
153
156
|
'@tailwindcss/postcss':
|
|
154
157
|
specifier: ^4.3.0
|
|
155
158
|
version: 4.3.0
|
|
159
|
+
'@tanstack/react-query':
|
|
160
|
+
specifier: ^5.101.0
|
|
161
|
+
version: 5.101.0(react@19.2.7)
|
|
156
162
|
'@tanstack/react-table':
|
|
157
163
|
specifier: ^8.21.3
|
|
158
164
|
version: 8.21.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
165
|
+
alipay-sdk:
|
|
166
|
+
specifier: ^4.14.0
|
|
167
|
+
version: 4.14.0
|
|
159
168
|
class-variance-authority:
|
|
160
169
|
specifier: ^0.7.1
|
|
161
170
|
version: 0.7.1
|
|
@@ -180,6 +189,9 @@ importers:
|
|
|
180
189
|
next-themes:
|
|
181
190
|
specifier: ^0.4.6
|
|
182
191
|
version: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
192
|
+
qrcode.react:
|
|
193
|
+
specifier: ^4.2.0
|
|
194
|
+
version: 4.2.0(react@19.2.7)
|
|
183
195
|
radix-ui:
|
|
184
196
|
specifier: ^1.4.3
|
|
185
197
|
version: 1.4.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
@@ -691,6 +703,14 @@ packages:
|
|
|
691
703
|
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
692
704
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
693
705
|
|
|
706
|
+
'@fidm/asn1@1.0.4':
|
|
707
|
+
resolution: {integrity: sha512-esd1jyNvRb2HVaQGq2Gg8Z0kbQPXzV9Tq5Z14KNIov6KfFD6PTaRIO8UpcsYiTNzOqJpmyzWgVTrUwFV3UF4TQ==}
|
|
708
|
+
engines: {node: '>= 8'}
|
|
709
|
+
|
|
710
|
+
'@fidm/x509@1.2.1':
|
|
711
|
+
resolution: {integrity: sha512-nwc2iesjyc9hkuzcrMCBXQRn653XuAUKorfWM8PZyJawiy1QzLj4vahwzaI25+pfpwOLvMzbJ0uKpWLDNmo16w==}
|
|
712
|
+
engines: {node: '>= 8'}
|
|
713
|
+
|
|
694
714
|
'@fission-ai/openspec@1.4.0':
|
|
695
715
|
resolution: {integrity: sha512-AjOoLVoBjBCyYZ1gUm5GzO5WAsjiF/V1pOSZuGzKVidSI0Xva2SkFYwtQJ4/Rp4rd7gTRhgDoh4Th3uScwflOg==}
|
|
696
716
|
engines: {node: '>=20.19.0'}
|
|
@@ -2462,6 +2482,14 @@ packages:
|
|
|
2462
2482
|
'@tailwindcss/postcss@4.3.0':
|
|
2463
2483
|
resolution: {integrity: sha512-Jm05Tjx+9yCLGv5qw1c+84Psds8MnyrEQYCB+FFk2lgGiUjlRqdxke4mVTuYrj2xnVZqKim2Apr5ySuQRYAw/w==}
|
|
2464
2484
|
|
|
2485
|
+
'@tanstack/query-core@5.101.0':
|
|
2486
|
+
resolution: {integrity: sha512-cQetA74EB+seWySv1TTKr828TnP0u39m6LykwDXIo84SNortpDkp30TMEjkqtYCNP9c40uT/iwl6MLiufEt0Ow==}
|
|
2487
|
+
|
|
2488
|
+
'@tanstack/react-query@5.101.0':
|
|
2489
|
+
resolution: {integrity: sha512-rLlJXSpkqfizLWgkR5+eLeIk0MvTx/meEIR7LRjxic+qxiQP8zVjq7BqQkiCMNLQBlLfuOLqqr6KO5GtrDlmSg==}
|
|
2490
|
+
peerDependencies:
|
|
2491
|
+
react: ^18 || ^19
|
|
2492
|
+
|
|
2465
2493
|
'@tanstack/react-table@8.21.3':
|
|
2466
2494
|
resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==}
|
|
2467
2495
|
engines: {node: '>=12'}
|
|
@@ -2737,6 +2765,10 @@ packages:
|
|
|
2737
2765
|
ajv@8.20.0:
|
|
2738
2766
|
resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
|
|
2739
2767
|
|
|
2768
|
+
alipay-sdk@4.14.0:
|
|
2769
|
+
resolution: {integrity: sha512-oiD/VP5Ei0RRacHHmE+N0uqgOj2xzce7c0fHrtyyh1P04O+o9I1r65LdGPzU8960J56xOxS/d3c+R/9lsPUH7g==}
|
|
2770
|
+
engines: {node: '>=18.0.0'}
|
|
2771
|
+
|
|
2740
2772
|
ansi-colors@4.1.3:
|
|
2741
2773
|
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
|
|
2742
2774
|
engines: {node: '>=6'}
|
|
@@ -2775,6 +2807,9 @@ packages:
|
|
|
2775
2807
|
resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
|
|
2776
2808
|
hasBin: true
|
|
2777
2809
|
|
|
2810
|
+
asynckit@0.4.0:
|
|
2811
|
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
2812
|
+
|
|
2778
2813
|
bail@2.0.2:
|
|
2779
2814
|
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
|
|
2780
2815
|
|
|
@@ -2790,6 +2825,9 @@ packages:
|
|
|
2790
2825
|
engines: {node: '>=6.0.0'}
|
|
2791
2826
|
hasBin: true
|
|
2792
2827
|
|
|
2828
|
+
bignumber.js@9.3.1:
|
|
2829
|
+
resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
|
|
2830
|
+
|
|
2793
2831
|
body-parser@2.2.2:
|
|
2794
2832
|
resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
|
|
2795
2833
|
engines: {node: '>=18'}
|
|
@@ -2830,6 +2868,14 @@ packages:
|
|
|
2830
2868
|
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
2831
2869
|
engines: {node: '>=6'}
|
|
2832
2870
|
|
|
2871
|
+
camelcase-keys@7.0.2:
|
|
2872
|
+
resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==}
|
|
2873
|
+
engines: {node: '>=12'}
|
|
2874
|
+
|
|
2875
|
+
camelcase@6.3.0:
|
|
2876
|
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
2877
|
+
engines: {node: '>=10'}
|
|
2878
|
+
|
|
2833
2879
|
caniuse-lite@1.0.30001793:
|
|
2834
2880
|
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
|
2835
2881
|
|
|
@@ -2912,6 +2958,10 @@ packages:
|
|
|
2912
2958
|
color-name@1.1.4:
|
|
2913
2959
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
2914
2960
|
|
|
2961
|
+
combined-stream@1.0.8:
|
|
2962
|
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
2963
|
+
engines: {node: '>= 0.8'}
|
|
2964
|
+
|
|
2915
2965
|
comma-separated-tokens@2.0.3:
|
|
2916
2966
|
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
|
|
2917
2967
|
|
|
@@ -2973,6 +3023,9 @@ packages:
|
|
|
2973
3023
|
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
2974
3024
|
engines: {node: '>= 8'}
|
|
2975
3025
|
|
|
3026
|
+
crypto-js@4.2.0:
|
|
3027
|
+
resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
|
|
3028
|
+
|
|
2976
3029
|
cssesc@3.0.0:
|
|
2977
3030
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
2978
3031
|
engines: {node: '>=4'}
|
|
@@ -3071,6 +3124,10 @@ packages:
|
|
|
3071
3124
|
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
|
|
3072
3125
|
engines: {node: '>=12'}
|
|
3073
3126
|
|
|
3127
|
+
delayed-stream@1.0.0:
|
|
3128
|
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
3129
|
+
engines: {node: '>=0.4.0'}
|
|
3130
|
+
|
|
3074
3131
|
depd@2.0.0:
|
|
3075
3132
|
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
3076
3133
|
engines: {node: '>= 0.8'}
|
|
@@ -3079,6 +3136,10 @@ packages:
|
|
|
3079
3136
|
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
3080
3137
|
engines: {node: '>=6'}
|
|
3081
3138
|
|
|
3139
|
+
destroy@1.2.0:
|
|
3140
|
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
|
3141
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
3142
|
+
|
|
3082
3143
|
detect-libc@2.1.2:
|
|
3083
3144
|
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
3084
3145
|
engines: {node: '>=8'}
|
|
@@ -3093,6 +3154,9 @@ packages:
|
|
|
3093
3154
|
resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==}
|
|
3094
3155
|
engines: {node: '>=0.3.1'}
|
|
3095
3156
|
|
|
3157
|
+
dot-case@3.0.4:
|
|
3158
|
+
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
|
|
3159
|
+
|
|
3096
3160
|
dotenv@17.4.2:
|
|
3097
3161
|
resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
|
|
3098
3162
|
engines: {node: '>=12'}
|
|
@@ -3155,6 +3219,10 @@ packages:
|
|
|
3155
3219
|
resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
|
|
3156
3220
|
engines: {node: '>= 0.4'}
|
|
3157
3221
|
|
|
3222
|
+
es-set-tostringtag@2.1.0:
|
|
3223
|
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
3224
|
+
engines: {node: '>= 0.4'}
|
|
3225
|
+
|
|
3158
3226
|
es-toolkit@1.47.0:
|
|
3159
3227
|
resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==}
|
|
3160
3228
|
|
|
@@ -3371,10 +3439,17 @@ packages:
|
|
|
3371
3439
|
flatted@3.4.2:
|
|
3372
3440
|
resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
|
|
3373
3441
|
|
|
3442
|
+
form-data@4.0.5:
|
|
3443
|
+
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
|
|
3444
|
+
engines: {node: '>= 6'}
|
|
3445
|
+
|
|
3374
3446
|
formdata-polyfill@4.0.10:
|
|
3375
3447
|
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
|
|
3376
3448
|
engines: {node: '>=12.20.0'}
|
|
3377
3449
|
|
|
3450
|
+
formstream@1.5.2:
|
|
3451
|
+
resolution: {integrity: sha512-NASf0lgxC1AyKNXQIrXTEYkiX99LhCEXTkiGObXAkpBui86a4u8FjH1o2bGb3PpqI3kafC+yw4zWeK6l6VHTgg==}
|
|
3452
|
+
|
|
3378
3453
|
forwarded@0.2.0:
|
|
3379
3454
|
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
|
3380
3455
|
engines: {node: '>= 0.6'}
|
|
@@ -3596,6 +3671,10 @@ packages:
|
|
|
3596
3671
|
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
3597
3672
|
engines: {node: '>= 0.4'}
|
|
3598
3673
|
|
|
3674
|
+
has-tostringtag@1.0.2:
|
|
3675
|
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
3676
|
+
engines: {node: '>= 0.4'}
|
|
3677
|
+
|
|
3599
3678
|
hasown@2.0.4:
|
|
3600
3679
|
resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
|
|
3601
3680
|
engines: {node: '>= 0.4'}
|
|
@@ -3970,6 +4049,9 @@ packages:
|
|
|
3970
4049
|
longest-streak@3.1.0:
|
|
3971
4050
|
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
|
|
3972
4051
|
|
|
4052
|
+
lower-case@2.0.2:
|
|
4053
|
+
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
|
|
4054
|
+
|
|
3973
4055
|
lru-cache@5.1.1:
|
|
3974
4056
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
3975
4057
|
|
|
@@ -3981,6 +4063,10 @@ packages:
|
|
|
3981
4063
|
magic-string@0.30.21:
|
|
3982
4064
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
3983
4065
|
|
|
4066
|
+
map-obj@4.3.0:
|
|
4067
|
+
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
|
|
4068
|
+
engines: {node: '>=8'}
|
|
4069
|
+
|
|
3984
4070
|
markdown-extensions@2.0.0:
|
|
3985
4071
|
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
|
|
3986
4072
|
engines: {node: '>=16'}
|
|
@@ -4164,14 +4250,27 @@ packages:
|
|
|
4164
4250
|
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
4165
4251
|
engines: {node: '>=8.6'}
|
|
4166
4252
|
|
|
4253
|
+
mime-db@1.52.0:
|
|
4254
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
4255
|
+
engines: {node: '>= 0.6'}
|
|
4256
|
+
|
|
4167
4257
|
mime-db@1.54.0:
|
|
4168
4258
|
resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
|
|
4169
4259
|
engines: {node: '>= 0.6'}
|
|
4170
4260
|
|
|
4261
|
+
mime-types@2.1.35:
|
|
4262
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
4263
|
+
engines: {node: '>= 0.6'}
|
|
4264
|
+
|
|
4171
4265
|
mime-types@3.0.2:
|
|
4172
4266
|
resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
|
|
4173
4267
|
engines: {node: '>=18'}
|
|
4174
4268
|
|
|
4269
|
+
mime@2.6.0:
|
|
4270
|
+
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
|
|
4271
|
+
engines: {node: '>=4.0.0'}
|
|
4272
|
+
hasBin: true
|
|
4273
|
+
|
|
4175
4274
|
mimic-fn@2.1.0:
|
|
4176
4275
|
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
|
4177
4276
|
engines: {node: '>=6'}
|
|
@@ -4283,6 +4382,9 @@ packages:
|
|
|
4283
4382
|
sass:
|
|
4284
4383
|
optional: true
|
|
4285
4384
|
|
|
4385
|
+
no-case@3.0.4:
|
|
4386
|
+
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
|
|
4387
|
+
|
|
4286
4388
|
node-addon-api@7.1.1:
|
|
4287
4389
|
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
|
|
4288
4390
|
|
|
@@ -4295,6 +4397,10 @@ packages:
|
|
|
4295
4397
|
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
|
|
4296
4398
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
4297
4399
|
|
|
4400
|
+
node-hex@1.0.1:
|
|
4401
|
+
resolution: {integrity: sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ==}
|
|
4402
|
+
engines: {node: '>=8.0.0'}
|
|
4403
|
+
|
|
4298
4404
|
node-releases@2.0.47:
|
|
4299
4405
|
resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
|
|
4300
4406
|
engines: {node: '>=18'}
|
|
@@ -4412,6 +4518,9 @@ packages:
|
|
|
4412
4518
|
pathe@2.0.3:
|
|
4413
4519
|
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
4414
4520
|
|
|
4521
|
+
pause-stream@0.0.11:
|
|
4522
|
+
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
|
|
4523
|
+
|
|
4415
4524
|
picocolors@1.1.1:
|
|
4416
4525
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
4417
4526
|
|
|
@@ -4478,6 +4587,11 @@ packages:
|
|
|
4478
4587
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
4479
4588
|
engines: {node: '>=6'}
|
|
4480
4589
|
|
|
4590
|
+
qrcode.react@4.2.0:
|
|
4591
|
+
resolution: {integrity: sha512-QpgqWi8rD9DsS9EP3z7BT+5lY5SFhsqGjpgW5DY/i3mK4M9DTBNz3ErMi8BWYEfI3L0d8GIbGmcdFAS1uIRGjA==}
|
|
4592
|
+
peerDependencies:
|
|
4593
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
4594
|
+
|
|
4481
4595
|
qs@6.15.2:
|
|
4482
4596
|
resolution: {integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==}
|
|
4483
4597
|
engines: {node: '>=0.6'}
|
|
@@ -4485,6 +4599,10 @@ packages:
|
|
|
4485
4599
|
queue-microtask@1.2.3:
|
|
4486
4600
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
4487
4601
|
|
|
4602
|
+
quick-lru@5.1.1:
|
|
4603
|
+
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
|
|
4604
|
+
engines: {node: '>=10'}
|
|
4605
|
+
|
|
4488
4606
|
radix-ui@1.4.3:
|
|
4489
4607
|
resolution: {integrity: sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==}
|
|
4490
4608
|
peerDependencies:
|
|
@@ -4767,6 +4885,13 @@ packages:
|
|
|
4767
4885
|
sisteransi@1.0.5:
|
|
4768
4886
|
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
|
4769
4887
|
|
|
4888
|
+
snake-case@3.0.4:
|
|
4889
|
+
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
|
|
4890
|
+
|
|
4891
|
+
snakecase-keys@8.1.0:
|
|
4892
|
+
resolution: {integrity: sha512-9/Eug2btrCiOi+9+vIXJnxUcKVfcbLy5Uwff4BrO6PQf3Oq/2iYQ/1zkmnrpIIjfel/DAasAlux7OvAmCa+Xnw==}
|
|
4893
|
+
engines: {node: '>=18'}
|
|
4894
|
+
|
|
4770
4895
|
sonner@2.0.7:
|
|
4771
4896
|
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
|
|
4772
4897
|
peerDependencies:
|
|
@@ -4791,6 +4916,10 @@ packages:
|
|
|
4791
4916
|
sprintf-js@1.0.3:
|
|
4792
4917
|
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
|
|
4793
4918
|
|
|
4919
|
+
sse-decoder@1.0.0:
|
|
4920
|
+
resolution: {integrity: sha512-JPopy3jfNmPcUz5Ru6skKhHNRJbsvcEW6Z4SirKkucLS8Jya1Bmf4FVX8giOkLm8xQJ7kK68P6GXoVSTkbedUA==}
|
|
4921
|
+
engines: {node: '>= 14.19.3'}
|
|
4922
|
+
|
|
4794
4923
|
stackback@0.0.2:
|
|
4795
4924
|
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
4796
4925
|
|
|
@@ -4888,6 +5017,9 @@ packages:
|
|
|
4888
5017
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
4889
5018
|
engines: {node: '>=6'}
|
|
4890
5019
|
|
|
5020
|
+
through@2.3.8:
|
|
5021
|
+
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
|
|
5022
|
+
|
|
4891
5023
|
tiny-invariant@1.3.3:
|
|
4892
5024
|
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
4893
5025
|
|
|
@@ -4954,10 +5086,21 @@ packages:
|
|
|
4954
5086
|
tw-animate-css@1.4.0:
|
|
4955
5087
|
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
4956
5088
|
|
|
5089
|
+
tweetnacl@1.0.3:
|
|
5090
|
+
resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
|
|
5091
|
+
|
|
4957
5092
|
type-check@0.4.0:
|
|
4958
5093
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
4959
5094
|
engines: {node: '>= 0.8.0'}
|
|
4960
5095
|
|
|
5096
|
+
type-fest@1.4.0:
|
|
5097
|
+
resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
|
|
5098
|
+
engines: {node: '>=10'}
|
|
5099
|
+
|
|
5100
|
+
type-fest@4.41.0:
|
|
5101
|
+
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
|
|
5102
|
+
engines: {node: '>=16'}
|
|
5103
|
+
|
|
4961
5104
|
type-fest@5.7.0:
|
|
4962
5105
|
resolution: {integrity: sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg==}
|
|
4963
5106
|
engines: {node: '>=20'}
|
|
@@ -4982,6 +5125,14 @@ packages:
|
|
|
4982
5125
|
undici-types@7.24.6:
|
|
4983
5126
|
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
4984
5127
|
|
|
5128
|
+
undici@7.27.2:
|
|
5129
|
+
resolution: {integrity: sha512-uZsKNuzQxDMUY6M3pIMvy5tvlGmtq8XJ2oLAkfRKGNu+1VQAIvLy2xIVG5ATZl5wDXl/tddByAWCizRbOme+TA==}
|
|
5130
|
+
engines: {node: '>=20.18.1'}
|
|
5131
|
+
|
|
5132
|
+
unescape@1.0.1:
|
|
5133
|
+
resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==}
|
|
5134
|
+
engines: {node: '>=0.10.0'}
|
|
5135
|
+
|
|
4985
5136
|
unicorn-magic@0.3.0:
|
|
4986
5137
|
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
|
|
4987
5138
|
engines: {node: '>=18'}
|
|
@@ -5030,6 +5181,10 @@ packages:
|
|
|
5030
5181
|
uri-js@4.4.1:
|
|
5031
5182
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
5032
5183
|
|
|
5184
|
+
urllib@4.9.0:
|
|
5185
|
+
resolution: {integrity: sha512-Rp3DBvVqy9arSTMH6oN5N7OAN01U3dQ2xc19AadP86MzC4j67MDeqOup5shpWnjkDVGWfLfWPOd8CyqOtd6u3w==}
|
|
5186
|
+
engines: {node: '>= 18.19.0'}
|
|
5187
|
+
|
|
5033
5188
|
use-callback-ref@1.3.3:
|
|
5034
5189
|
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
|
|
5035
5190
|
engines: {node: '>=10'}
|
|
@@ -5063,6 +5218,10 @@ packages:
|
|
|
5063
5218
|
util-deprecate@1.0.2:
|
|
5064
5219
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
5065
5220
|
|
|
5221
|
+
utility@2.5.0:
|
|
5222
|
+
resolution: {integrity: sha512-lDbOVde5UAKgtxrSyZNhqrTA7f7anba6DTqbsDWgUFk6PZlmr7djqPYw0FnL5a6TbJvRt38VmYqt07zVLzXG2A==}
|
|
5223
|
+
engines: {node: '>= 16.0.0'}
|
|
5224
|
+
|
|
5066
5225
|
validate-npm-package-name@7.0.2:
|
|
5067
5226
|
resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==}
|
|
5068
5227
|
engines: {node: ^20.17.0 || >=22.9.0}
|
|
@@ -5234,6 +5393,10 @@ packages:
|
|
|
5234
5393
|
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
5235
5394
|
engines: {node: '>=12'}
|
|
5236
5395
|
|
|
5396
|
+
ylru@2.0.0:
|
|
5397
|
+
resolution: {integrity: sha512-T6hTrKcr9lKeUG0MQ/tO72D3UGptWVohgzpHG8ljU1jeBt2RCjcWxvsTPD8ZzUq1t1FvwROAw1kxg2euvg/THg==}
|
|
5398
|
+
engines: {node: '>= 18.19.0'}
|
|
5399
|
+
|
|
5237
5400
|
yocto-queue@0.1.0:
|
|
5238
5401
|
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
5239
5402
|
engines: {node: '>=10'}
|
|
@@ -5669,6 +5832,13 @@ snapshots:
|
|
|
5669
5832
|
'@eslint/core': 0.17.0
|
|
5670
5833
|
levn: 0.4.1
|
|
5671
5834
|
|
|
5835
|
+
'@fidm/asn1@1.0.4': {}
|
|
5836
|
+
|
|
5837
|
+
'@fidm/x509@1.2.1':
|
|
5838
|
+
dependencies:
|
|
5839
|
+
'@fidm/asn1': 1.0.4
|
|
5840
|
+
tweetnacl: 1.0.3
|
|
5841
|
+
|
|
5672
5842
|
'@fission-ai/openspec@1.4.0(@types/node@25.9.1)':
|
|
5673
5843
|
dependencies:
|
|
5674
5844
|
'@inquirer/core': 10.3.2(@types/node@25.9.1)
|
|
@@ -7298,6 +7468,13 @@ snapshots:
|
|
|
7298
7468
|
postcss: 8.5.15
|
|
7299
7469
|
tailwindcss: 4.3.0
|
|
7300
7470
|
|
|
7471
|
+
'@tanstack/query-core@5.101.0': {}
|
|
7472
|
+
|
|
7473
|
+
'@tanstack/react-query@5.101.0(react@19.2.7)':
|
|
7474
|
+
dependencies:
|
|
7475
|
+
'@tanstack/query-core': 5.101.0
|
|
7476
|
+
react: 19.2.7
|
|
7477
|
+
|
|
7301
7478
|
'@tanstack/react-table@8.21.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
7302
7479
|
dependencies:
|
|
7303
7480
|
'@tanstack/table-core': 8.21.3
|
|
@@ -7593,6 +7770,18 @@ snapshots:
|
|
|
7593
7770
|
json-schema-traverse: 1.0.0
|
|
7594
7771
|
require-from-string: 2.0.2
|
|
7595
7772
|
|
|
7773
|
+
alipay-sdk@4.14.0:
|
|
7774
|
+
dependencies:
|
|
7775
|
+
'@fidm/x509': 1.2.1
|
|
7776
|
+
bignumber.js: 9.3.1
|
|
7777
|
+
camelcase-keys: 7.0.2
|
|
7778
|
+
crypto-js: 4.2.0
|
|
7779
|
+
formstream: 1.5.2
|
|
7780
|
+
snakecase-keys: 8.1.0
|
|
7781
|
+
sse-decoder: 1.0.0
|
|
7782
|
+
urllib: 4.9.0
|
|
7783
|
+
utility: 2.5.0
|
|
7784
|
+
|
|
7596
7785
|
ansi-colors@4.1.3: {}
|
|
7597
7786
|
|
|
7598
7787
|
ansi-regex@5.0.1: {}
|
|
@@ -7621,6 +7810,8 @@ snapshots:
|
|
|
7621
7810
|
|
|
7622
7811
|
astring@1.9.0: {}
|
|
7623
7812
|
|
|
7813
|
+
asynckit@0.4.0: {}
|
|
7814
|
+
|
|
7624
7815
|
bail@2.0.2: {}
|
|
7625
7816
|
|
|
7626
7817
|
balanced-match@1.0.2: {}
|
|
@@ -7629,6 +7820,8 @@ snapshots:
|
|
|
7629
7820
|
|
|
7630
7821
|
baseline-browser-mapping@2.10.33: {}
|
|
7631
7822
|
|
|
7823
|
+
bignumber.js@9.3.1: {}
|
|
7824
|
+
|
|
7632
7825
|
body-parser@2.2.2:
|
|
7633
7826
|
dependencies:
|
|
7634
7827
|
bytes: 3.1.2
|
|
@@ -7682,6 +7875,15 @@ snapshots:
|
|
|
7682
7875
|
|
|
7683
7876
|
callsites@3.1.0: {}
|
|
7684
7877
|
|
|
7878
|
+
camelcase-keys@7.0.2:
|
|
7879
|
+
dependencies:
|
|
7880
|
+
camelcase: 6.3.0
|
|
7881
|
+
map-obj: 4.3.0
|
|
7882
|
+
quick-lru: 5.1.1
|
|
7883
|
+
type-fest: 1.4.0
|
|
7884
|
+
|
|
7885
|
+
camelcase@6.3.0: {}
|
|
7886
|
+
|
|
7685
7887
|
caniuse-lite@1.0.30001793: {}
|
|
7686
7888
|
|
|
7687
7889
|
ccount@2.0.1: {}
|
|
@@ -7753,6 +7955,10 @@ snapshots:
|
|
|
7753
7955
|
|
|
7754
7956
|
color-name@1.1.4: {}
|
|
7755
7957
|
|
|
7958
|
+
combined-stream@1.0.8:
|
|
7959
|
+
dependencies:
|
|
7960
|
+
delayed-stream: 1.0.0
|
|
7961
|
+
|
|
7756
7962
|
comma-separated-tokens@2.0.3: {}
|
|
7757
7963
|
|
|
7758
7964
|
commander@11.1.0: {}
|
|
@@ -7797,6 +8003,8 @@ snapshots:
|
|
|
7797
8003
|
shebang-command: 2.0.0
|
|
7798
8004
|
which: 2.0.2
|
|
7799
8005
|
|
|
8006
|
+
crypto-js@4.2.0: {}
|
|
8007
|
+
|
|
7800
8008
|
cssesc@3.0.0: {}
|
|
7801
8009
|
|
|
7802
8010
|
csstype@3.2.3: {}
|
|
@@ -7866,10 +8074,14 @@ snapshots:
|
|
|
7866
8074
|
|
|
7867
8075
|
define-lazy-prop@3.0.0: {}
|
|
7868
8076
|
|
|
8077
|
+
delayed-stream@1.0.0: {}
|
|
8078
|
+
|
|
7869
8079
|
depd@2.0.0: {}
|
|
7870
8080
|
|
|
7871
8081
|
dequal@2.0.3: {}
|
|
7872
8082
|
|
|
8083
|
+
destroy@1.2.0: {}
|
|
8084
|
+
|
|
7873
8085
|
detect-libc@2.1.2: {}
|
|
7874
8086
|
|
|
7875
8087
|
detect-node-es@1.1.0: {}
|
|
@@ -7880,6 +8092,11 @@ snapshots:
|
|
|
7880
8092
|
|
|
7881
8093
|
diff@8.0.4: {}
|
|
7882
8094
|
|
|
8095
|
+
dot-case@3.0.4:
|
|
8096
|
+
dependencies:
|
|
8097
|
+
no-case: 3.0.4
|
|
8098
|
+
tslib: 2.8.1
|
|
8099
|
+
|
|
7883
8100
|
dotenv@17.4.2: {}
|
|
7884
8101
|
|
|
7885
8102
|
dunder-proto@1.0.1:
|
|
@@ -7933,6 +8150,13 @@ snapshots:
|
|
|
7933
8150
|
dependencies:
|
|
7934
8151
|
es-errors: 1.3.0
|
|
7935
8152
|
|
|
8153
|
+
es-set-tostringtag@2.1.0:
|
|
8154
|
+
dependencies:
|
|
8155
|
+
es-errors: 1.3.0
|
|
8156
|
+
get-intrinsic: 1.3.0
|
|
8157
|
+
has-tostringtag: 1.0.2
|
|
8158
|
+
hasown: 2.0.4
|
|
8159
|
+
|
|
7936
8160
|
es-toolkit@1.47.0: {}
|
|
7937
8161
|
|
|
7938
8162
|
esast-util-from-estree@2.0.0:
|
|
@@ -8252,10 +8476,25 @@ snapshots:
|
|
|
8252
8476
|
|
|
8253
8477
|
flatted@3.4.2: {}
|
|
8254
8478
|
|
|
8479
|
+
form-data@4.0.5:
|
|
8480
|
+
dependencies:
|
|
8481
|
+
asynckit: 0.4.0
|
|
8482
|
+
combined-stream: 1.0.8
|
|
8483
|
+
es-set-tostringtag: 2.1.0
|
|
8484
|
+
hasown: 2.0.4
|
|
8485
|
+
mime-types: 2.1.35
|
|
8486
|
+
|
|
8255
8487
|
formdata-polyfill@4.0.10:
|
|
8256
8488
|
dependencies:
|
|
8257
8489
|
fetch-blob: 3.2.0
|
|
8258
8490
|
|
|
8491
|
+
formstream@1.5.2:
|
|
8492
|
+
dependencies:
|
|
8493
|
+
destroy: 1.2.0
|
|
8494
|
+
mime: 2.6.0
|
|
8495
|
+
node-hex: 1.0.1
|
|
8496
|
+
pause-stream: 0.0.11
|
|
8497
|
+
|
|
8259
8498
|
forwarded@0.2.0: {}
|
|
8260
8499
|
|
|
8261
8500
|
framer-motion@12.40.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
@@ -8445,6 +8684,10 @@ snapshots:
|
|
|
8445
8684
|
|
|
8446
8685
|
has-symbols@1.1.0: {}
|
|
8447
8686
|
|
|
8687
|
+
has-tostringtag@1.0.2:
|
|
8688
|
+
dependencies:
|
|
8689
|
+
has-symbols: 1.1.0
|
|
8690
|
+
|
|
8448
8691
|
hasown@2.0.4:
|
|
8449
8692
|
dependencies:
|
|
8450
8693
|
function-bind: 1.1.2
|
|
@@ -8807,6 +9050,10 @@ snapshots:
|
|
|
8807
9050
|
|
|
8808
9051
|
longest-streak@3.1.0: {}
|
|
8809
9052
|
|
|
9053
|
+
lower-case@2.0.2:
|
|
9054
|
+
dependencies:
|
|
9055
|
+
tslib: 2.8.1
|
|
9056
|
+
|
|
8810
9057
|
lru-cache@5.1.1:
|
|
8811
9058
|
dependencies:
|
|
8812
9059
|
yallist: 3.1.1
|
|
@@ -8819,6 +9066,8 @@ snapshots:
|
|
|
8819
9066
|
dependencies:
|
|
8820
9067
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
8821
9068
|
|
|
9069
|
+
map-obj@4.3.0: {}
|
|
9070
|
+
|
|
8822
9071
|
markdown-extensions@2.0.0: {}
|
|
8823
9072
|
|
|
8824
9073
|
markdown-table@3.0.4: {}
|
|
@@ -9265,12 +9514,20 @@ snapshots:
|
|
|
9265
9514
|
braces: 3.0.3
|
|
9266
9515
|
picomatch: 2.3.2
|
|
9267
9516
|
|
|
9517
|
+
mime-db@1.52.0: {}
|
|
9518
|
+
|
|
9268
9519
|
mime-db@1.54.0: {}
|
|
9269
9520
|
|
|
9521
|
+
mime-types@2.1.35:
|
|
9522
|
+
dependencies:
|
|
9523
|
+
mime-db: 1.52.0
|
|
9524
|
+
|
|
9270
9525
|
mime-types@3.0.2:
|
|
9271
9526
|
dependencies:
|
|
9272
9527
|
mime-db: 1.54.0
|
|
9273
9528
|
|
|
9529
|
+
mime@2.6.0: {}
|
|
9530
|
+
|
|
9274
9531
|
mimic-fn@2.1.0: {}
|
|
9275
9532
|
|
|
9276
9533
|
mimic-function@5.0.1: {}
|
|
@@ -9384,6 +9641,11 @@ snapshots:
|
|
|
9384
9641
|
- '@babel/core'
|
|
9385
9642
|
- babel-plugin-macros
|
|
9386
9643
|
|
|
9644
|
+
no-case@3.0.4:
|
|
9645
|
+
dependencies:
|
|
9646
|
+
lower-case: 2.0.2
|
|
9647
|
+
tslib: 2.8.1
|
|
9648
|
+
|
|
9387
9649
|
node-addon-api@7.1.1: {}
|
|
9388
9650
|
|
|
9389
9651
|
node-domexception@1.0.0: {}
|
|
@@ -9394,6 +9656,8 @@ snapshots:
|
|
|
9394
9656
|
fetch-blob: 3.2.0
|
|
9395
9657
|
formdata-polyfill: 4.0.10
|
|
9396
9658
|
|
|
9659
|
+
node-hex@1.0.1: {}
|
|
9660
|
+
|
|
9397
9661
|
node-releases@2.0.47: {}
|
|
9398
9662
|
|
|
9399
9663
|
npm-run-path@4.0.1:
|
|
@@ -9520,6 +9784,10 @@ snapshots:
|
|
|
9520
9784
|
|
|
9521
9785
|
pathe@2.0.3: {}
|
|
9522
9786
|
|
|
9787
|
+
pause-stream@0.0.11:
|
|
9788
|
+
dependencies:
|
|
9789
|
+
through: 2.3.8
|
|
9790
|
+
|
|
9523
9791
|
picocolors@1.1.1: {}
|
|
9524
9792
|
|
|
9525
9793
|
picomatch@2.3.2: {}
|
|
@@ -9573,12 +9841,18 @@ snapshots:
|
|
|
9573
9841
|
|
|
9574
9842
|
punycode@2.3.1: {}
|
|
9575
9843
|
|
|
9844
|
+
qrcode.react@4.2.0(react@19.2.7):
|
|
9845
|
+
dependencies:
|
|
9846
|
+
react: 19.2.7
|
|
9847
|
+
|
|
9576
9848
|
qs@6.15.2:
|
|
9577
9849
|
dependencies:
|
|
9578
9850
|
side-channel: 1.1.0
|
|
9579
9851
|
|
|
9580
9852
|
queue-microtask@1.2.3: {}
|
|
9581
9853
|
|
|
9854
|
+
quick-lru@5.1.1: {}
|
|
9855
|
+
|
|
9582
9856
|
radix-ui@1.4.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
9583
9857
|
dependencies:
|
|
9584
9858
|
'@radix-ui/primitive': 1.1.3
|
|
@@ -10069,6 +10343,17 @@ snapshots:
|
|
|
10069
10343
|
|
|
10070
10344
|
sisteransi@1.0.5: {}
|
|
10071
10345
|
|
|
10346
|
+
snake-case@3.0.4:
|
|
10347
|
+
dependencies:
|
|
10348
|
+
dot-case: 3.0.4
|
|
10349
|
+
tslib: 2.8.1
|
|
10350
|
+
|
|
10351
|
+
snakecase-keys@8.1.0:
|
|
10352
|
+
dependencies:
|
|
10353
|
+
map-obj: 4.3.0
|
|
10354
|
+
snake-case: 3.0.4
|
|
10355
|
+
type-fest: 4.41.0
|
|
10356
|
+
|
|
10072
10357
|
sonner@2.0.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
10073
10358
|
dependencies:
|
|
10074
10359
|
react: 19.2.7
|
|
@@ -10084,6 +10369,8 @@ snapshots:
|
|
|
10084
10369
|
|
|
10085
10370
|
sprintf-js@1.0.3: {}
|
|
10086
10371
|
|
|
10372
|
+
sse-decoder@1.0.0: {}
|
|
10373
|
+
|
|
10087
10374
|
stackback@0.0.2: {}
|
|
10088
10375
|
|
|
10089
10376
|
statuses@2.0.2: {}
|
|
@@ -10162,6 +10449,8 @@ snapshots:
|
|
|
10162
10449
|
|
|
10163
10450
|
tapable@2.3.3: {}
|
|
10164
10451
|
|
|
10452
|
+
through@2.3.8: {}
|
|
10453
|
+
|
|
10165
10454
|
tiny-invariant@1.3.3: {}
|
|
10166
10455
|
|
|
10167
10456
|
tinybench@2.9.0: {}
|
|
@@ -10223,10 +10512,16 @@ snapshots:
|
|
|
10223
10512
|
|
|
10224
10513
|
tw-animate-css@1.4.0: {}
|
|
10225
10514
|
|
|
10515
|
+
tweetnacl@1.0.3: {}
|
|
10516
|
+
|
|
10226
10517
|
type-check@0.4.0:
|
|
10227
10518
|
dependencies:
|
|
10228
10519
|
prelude-ls: 1.2.1
|
|
10229
10520
|
|
|
10521
|
+
type-fest@1.4.0: {}
|
|
10522
|
+
|
|
10523
|
+
type-fest@4.41.0: {}
|
|
10524
|
+
|
|
10230
10525
|
type-fest@5.7.0:
|
|
10231
10526
|
dependencies:
|
|
10232
10527
|
tagged-tag: 1.0.0
|
|
@@ -10245,6 +10540,12 @@ snapshots:
|
|
|
10245
10540
|
|
|
10246
10541
|
undici-types@7.24.6: {}
|
|
10247
10542
|
|
|
10543
|
+
undici@7.27.2: {}
|
|
10544
|
+
|
|
10545
|
+
unescape@1.0.1:
|
|
10546
|
+
dependencies:
|
|
10547
|
+
extend-shallow: 2.0.1
|
|
10548
|
+
|
|
10248
10549
|
unicorn-magic@0.3.0: {}
|
|
10249
10550
|
|
|
10250
10551
|
unified@11.0.5:
|
|
@@ -10305,6 +10606,16 @@ snapshots:
|
|
|
10305
10606
|
dependencies:
|
|
10306
10607
|
punycode: 2.3.1
|
|
10307
10608
|
|
|
10609
|
+
urllib@4.9.0:
|
|
10610
|
+
dependencies:
|
|
10611
|
+
form-data: 4.0.5
|
|
10612
|
+
formstream: 1.5.2
|
|
10613
|
+
mime-types: 2.1.35
|
|
10614
|
+
qs: 6.15.2
|
|
10615
|
+
type-fest: 4.41.0
|
|
10616
|
+
undici: 7.27.2
|
|
10617
|
+
ylru: 2.0.0
|
|
10618
|
+
|
|
10308
10619
|
use-callback-ref@1.3.3(@types/react@19.2.16)(react@19.2.7):
|
|
10309
10620
|
dependencies:
|
|
10310
10621
|
react: 19.2.7
|
|
@@ -10334,6 +10645,12 @@ snapshots:
|
|
|
10334
10645
|
|
|
10335
10646
|
util-deprecate@1.0.2: {}
|
|
10336
10647
|
|
|
10648
|
+
utility@2.5.0:
|
|
10649
|
+
dependencies:
|
|
10650
|
+
escape-html: 1.0.3
|
|
10651
|
+
unescape: 1.0.1
|
|
10652
|
+
ylru: 2.0.0
|
|
10653
|
+
|
|
10337
10654
|
validate-npm-package-name@7.0.2: {}
|
|
10338
10655
|
|
|
10339
10656
|
vary@1.1.2: {}
|
|
@@ -10476,6 +10793,8 @@ snapshots:
|
|
|
10476
10793
|
y18n: 5.0.8
|
|
10477
10794
|
yargs-parser: 21.1.1
|
|
10478
10795
|
|
|
10796
|
+
ylru@2.0.0: {}
|
|
10797
|
+
|
|
10479
10798
|
yocto-queue@0.1.0: {}
|
|
10480
10799
|
|
|
10481
10800
|
yocto-spinner@1.2.0:
|