@coze-arch/cli 0.0.1-alpha.e9ff73 → 0.0.1-alpha.eaa612

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.
Files changed (80) hide show
  1. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  2. package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
  3. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  4. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  5. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  6. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  7. package/lib/__templates__/nextjs/README.md +5 -0
  8. package/lib/__templates__/nextjs/_gitignore +0 -3
  9. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  10. package/lib/__templates__/nextjs/next.config.ts +1 -2
  11. package/lib/__templates__/nextjs/package.json +1 -5
  12. package/lib/__templates__/nextjs/pnpm-lock.yaml +1012 -12
  13. package/lib/__templates__/nextjs/scripts/build.sh +2 -2
  14. package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
  15. package/lib/__templates__/nextjs/scripts/start.sh +3 -3
  16. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  17. package/lib/__templates__/nextjs/{server.ts → src/server.ts} +14 -14
  18. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  19. package/lib/__templates__/nuxt-app/README.md +5 -15
  20. package/lib/__templates__/nuxt-app/app/app.vue +1 -188
  21. package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
  22. package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
  23. package/lib/__templates__/nuxt-app/nuxt.config.ts +63 -3
  24. package/lib/__templates__/nuxt-app/package.json +7 -0
  25. package/lib/__templates__/nuxt-app/pnpm-lock.yaml +1610 -53
  26. package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
  27. package/lib/__templates__/nuxt-app/scripts/dev.sh +2 -3
  28. package/lib/__templates__/nuxt-app/scripts/start.sh +3 -3
  29. package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
  30. package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
  31. package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
  32. package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
  33. package/lib/__templates__/nuxt-app/template.config.js +9 -0
  34. package/lib/__templates__/templates.json +7 -0
  35. package/lib/__templates__/vite/README.md +189 -11
  36. package/lib/__templates__/vite/_gitignore +1 -0
  37. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  38. package/lib/__templates__/vite/package.json +15 -3
  39. package/lib/__templates__/vite/pnpm-lock.yaml +750 -15
  40. package/lib/__templates__/vite/scripts/build-server.js +70 -0
  41. package/lib/__templates__/vite/scripts/build.sh +4 -1
  42. package/lib/__templates__/vite/scripts/dev.sh +4 -4
  43. package/lib/__templates__/vite/scripts/start.sh +5 -5
  44. package/lib/__templates__/vite/server/index.ts +57 -0
  45. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  46. package/lib/__templates__/vite/server/vite.ts +79 -0
  47. package/lib/__templates__/vite/tsconfig.json +4 -3
  48. package/lib/cli.js +89 -100
  49. package/package.json +4 -1
  50. package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +0 -21
  51. package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +0 -64
  52. package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +0 -31
  53. package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +0 -1
  54. package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +0 -19
  55. package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +0 -14
  56. package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +0 -6
  57. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +0 -17
  58. package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +0 -3
  59. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +0 -201
  60. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +0 -203
  61. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +0 -110
  62. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +0 -140
  63. package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +0 -152
  64. package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +0 -35
  65. package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +0 -24
  66. package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +0 -1
  67. package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +0 -69
  68. package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +0 -360
  69. package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +0 -11
  70. package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +0 -79
  71. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +0 -14
  72. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +0 -151
  73. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +0 -17
  74. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +0 -64
  75. package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +0 -17
  76. package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +0 -3
  77. package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +0 -30
  78. package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +0 -32
  79. package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +0 -10
  80. package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
@@ -4,9 +4,6 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
- overrides:
8
- esbuild: ^0.25.12
9
-
10
7
  importers:
11
8
 
12
9
  .:
@@ -219,6 +216,9 @@ importers:
219
216
  tailwindcss:
220
217
  specifier: ^4
221
218
  version: 4.1.18
219
+ tsup:
220
+ specifier: ^8.3.5
221
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@1.10.2)
222
222
  tsx:
223
223
  specifier: ^4.19.2
224
224
  version: 4.21.0
@@ -604,156 +604,444 @@ packages:
604
604
  cpu: [ppc64]
605
605
  os: [aix]
606
606
 
607
+ '@esbuild/aix-ppc64@0.27.3':
608
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
609
+ engines: {node: '>=18'}
610
+ cpu: [ppc64]
611
+ os: [aix]
612
+
613
+ '@esbuild/android-arm64@0.18.20':
614
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
615
+ engines: {node: '>=12'}
616
+ cpu: [arm64]
617
+ os: [android]
618
+
607
619
  '@esbuild/android-arm64@0.25.12':
608
620
  resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
609
621
  engines: {node: '>=18'}
610
622
  cpu: [arm64]
611
623
  os: [android]
612
624
 
625
+ '@esbuild/android-arm64@0.27.3':
626
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
627
+ engines: {node: '>=18'}
628
+ cpu: [arm64]
629
+ os: [android]
630
+
631
+ '@esbuild/android-arm@0.18.20':
632
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
633
+ engines: {node: '>=12'}
634
+ cpu: [arm]
635
+ os: [android]
636
+
613
637
  '@esbuild/android-arm@0.25.12':
614
638
  resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
615
639
  engines: {node: '>=18'}
616
640
  cpu: [arm]
617
641
  os: [android]
618
642
 
643
+ '@esbuild/android-arm@0.27.3':
644
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
645
+ engines: {node: '>=18'}
646
+ cpu: [arm]
647
+ os: [android]
648
+
649
+ '@esbuild/android-x64@0.18.20':
650
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
651
+ engines: {node: '>=12'}
652
+ cpu: [x64]
653
+ os: [android]
654
+
619
655
  '@esbuild/android-x64@0.25.12':
620
656
  resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
621
657
  engines: {node: '>=18'}
622
658
  cpu: [x64]
623
659
  os: [android]
624
660
 
661
+ '@esbuild/android-x64@0.27.3':
662
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
663
+ engines: {node: '>=18'}
664
+ cpu: [x64]
665
+ os: [android]
666
+
667
+ '@esbuild/darwin-arm64@0.18.20':
668
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
669
+ engines: {node: '>=12'}
670
+ cpu: [arm64]
671
+ os: [darwin]
672
+
625
673
  '@esbuild/darwin-arm64@0.25.12':
626
674
  resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
627
675
  engines: {node: '>=18'}
628
676
  cpu: [arm64]
629
677
  os: [darwin]
630
678
 
679
+ '@esbuild/darwin-arm64@0.27.3':
680
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
681
+ engines: {node: '>=18'}
682
+ cpu: [arm64]
683
+ os: [darwin]
684
+
685
+ '@esbuild/darwin-x64@0.18.20':
686
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
687
+ engines: {node: '>=12'}
688
+ cpu: [x64]
689
+ os: [darwin]
690
+
631
691
  '@esbuild/darwin-x64@0.25.12':
632
692
  resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
633
693
  engines: {node: '>=18'}
634
694
  cpu: [x64]
635
695
  os: [darwin]
636
696
 
697
+ '@esbuild/darwin-x64@0.27.3':
698
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
699
+ engines: {node: '>=18'}
700
+ cpu: [x64]
701
+ os: [darwin]
702
+
703
+ '@esbuild/freebsd-arm64@0.18.20':
704
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
705
+ engines: {node: '>=12'}
706
+ cpu: [arm64]
707
+ os: [freebsd]
708
+
637
709
  '@esbuild/freebsd-arm64@0.25.12':
638
710
  resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
639
711
  engines: {node: '>=18'}
640
712
  cpu: [arm64]
641
713
  os: [freebsd]
642
714
 
715
+ '@esbuild/freebsd-arm64@0.27.3':
716
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
717
+ engines: {node: '>=18'}
718
+ cpu: [arm64]
719
+ os: [freebsd]
720
+
721
+ '@esbuild/freebsd-x64@0.18.20':
722
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
723
+ engines: {node: '>=12'}
724
+ cpu: [x64]
725
+ os: [freebsd]
726
+
643
727
  '@esbuild/freebsd-x64@0.25.12':
644
728
  resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
645
729
  engines: {node: '>=18'}
646
730
  cpu: [x64]
647
731
  os: [freebsd]
648
732
 
733
+ '@esbuild/freebsd-x64@0.27.3':
734
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
735
+ engines: {node: '>=18'}
736
+ cpu: [x64]
737
+ os: [freebsd]
738
+
739
+ '@esbuild/linux-arm64@0.18.20':
740
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
741
+ engines: {node: '>=12'}
742
+ cpu: [arm64]
743
+ os: [linux]
744
+
649
745
  '@esbuild/linux-arm64@0.25.12':
650
746
  resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
651
747
  engines: {node: '>=18'}
652
748
  cpu: [arm64]
653
749
  os: [linux]
654
750
 
751
+ '@esbuild/linux-arm64@0.27.3':
752
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
753
+ engines: {node: '>=18'}
754
+ cpu: [arm64]
755
+ os: [linux]
756
+
757
+ '@esbuild/linux-arm@0.18.20':
758
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
759
+ engines: {node: '>=12'}
760
+ cpu: [arm]
761
+ os: [linux]
762
+
655
763
  '@esbuild/linux-arm@0.25.12':
656
764
  resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
657
765
  engines: {node: '>=18'}
658
766
  cpu: [arm]
659
767
  os: [linux]
660
768
 
769
+ '@esbuild/linux-arm@0.27.3':
770
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
771
+ engines: {node: '>=18'}
772
+ cpu: [arm]
773
+ os: [linux]
774
+
775
+ '@esbuild/linux-ia32@0.18.20':
776
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
777
+ engines: {node: '>=12'}
778
+ cpu: [ia32]
779
+ os: [linux]
780
+
661
781
  '@esbuild/linux-ia32@0.25.12':
662
782
  resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
663
783
  engines: {node: '>=18'}
664
784
  cpu: [ia32]
665
785
  os: [linux]
666
786
 
787
+ '@esbuild/linux-ia32@0.27.3':
788
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
789
+ engines: {node: '>=18'}
790
+ cpu: [ia32]
791
+ os: [linux]
792
+
793
+ '@esbuild/linux-loong64@0.18.20':
794
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
795
+ engines: {node: '>=12'}
796
+ cpu: [loong64]
797
+ os: [linux]
798
+
667
799
  '@esbuild/linux-loong64@0.25.12':
668
800
  resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
669
801
  engines: {node: '>=18'}
670
802
  cpu: [loong64]
671
803
  os: [linux]
672
804
 
805
+ '@esbuild/linux-loong64@0.27.3':
806
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
807
+ engines: {node: '>=18'}
808
+ cpu: [loong64]
809
+ os: [linux]
810
+
811
+ '@esbuild/linux-mips64el@0.18.20':
812
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
813
+ engines: {node: '>=12'}
814
+ cpu: [mips64el]
815
+ os: [linux]
816
+
673
817
  '@esbuild/linux-mips64el@0.25.12':
674
818
  resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
675
819
  engines: {node: '>=18'}
676
820
  cpu: [mips64el]
677
821
  os: [linux]
678
822
 
823
+ '@esbuild/linux-mips64el@0.27.3':
824
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
825
+ engines: {node: '>=18'}
826
+ cpu: [mips64el]
827
+ os: [linux]
828
+
829
+ '@esbuild/linux-ppc64@0.18.20':
830
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
831
+ engines: {node: '>=12'}
832
+ cpu: [ppc64]
833
+ os: [linux]
834
+
679
835
  '@esbuild/linux-ppc64@0.25.12':
680
836
  resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
681
837
  engines: {node: '>=18'}
682
838
  cpu: [ppc64]
683
839
  os: [linux]
684
840
 
841
+ '@esbuild/linux-ppc64@0.27.3':
842
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
843
+ engines: {node: '>=18'}
844
+ cpu: [ppc64]
845
+ os: [linux]
846
+
847
+ '@esbuild/linux-riscv64@0.18.20':
848
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
849
+ engines: {node: '>=12'}
850
+ cpu: [riscv64]
851
+ os: [linux]
852
+
685
853
  '@esbuild/linux-riscv64@0.25.12':
686
854
  resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
687
855
  engines: {node: '>=18'}
688
856
  cpu: [riscv64]
689
857
  os: [linux]
690
858
 
859
+ '@esbuild/linux-riscv64@0.27.3':
860
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
861
+ engines: {node: '>=18'}
862
+ cpu: [riscv64]
863
+ os: [linux]
864
+
865
+ '@esbuild/linux-s390x@0.18.20':
866
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
867
+ engines: {node: '>=12'}
868
+ cpu: [s390x]
869
+ os: [linux]
870
+
691
871
  '@esbuild/linux-s390x@0.25.12':
692
872
  resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
693
873
  engines: {node: '>=18'}
694
874
  cpu: [s390x]
695
875
  os: [linux]
696
876
 
877
+ '@esbuild/linux-s390x@0.27.3':
878
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
879
+ engines: {node: '>=18'}
880
+ cpu: [s390x]
881
+ os: [linux]
882
+
883
+ '@esbuild/linux-x64@0.18.20':
884
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
885
+ engines: {node: '>=12'}
886
+ cpu: [x64]
887
+ os: [linux]
888
+
697
889
  '@esbuild/linux-x64@0.25.12':
698
890
  resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
699
891
  engines: {node: '>=18'}
700
892
  cpu: [x64]
701
893
  os: [linux]
702
894
 
895
+ '@esbuild/linux-x64@0.27.3':
896
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
897
+ engines: {node: '>=18'}
898
+ cpu: [x64]
899
+ os: [linux]
900
+
703
901
  '@esbuild/netbsd-arm64@0.25.12':
704
902
  resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
705
903
  engines: {node: '>=18'}
706
904
  cpu: [arm64]
707
905
  os: [netbsd]
708
906
 
907
+ '@esbuild/netbsd-arm64@0.27.3':
908
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
909
+ engines: {node: '>=18'}
910
+ cpu: [arm64]
911
+ os: [netbsd]
912
+
913
+ '@esbuild/netbsd-x64@0.18.20':
914
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
915
+ engines: {node: '>=12'}
916
+ cpu: [x64]
917
+ os: [netbsd]
918
+
709
919
  '@esbuild/netbsd-x64@0.25.12':
710
920
  resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
711
921
  engines: {node: '>=18'}
712
922
  cpu: [x64]
713
923
  os: [netbsd]
714
924
 
925
+ '@esbuild/netbsd-x64@0.27.3':
926
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
927
+ engines: {node: '>=18'}
928
+ cpu: [x64]
929
+ os: [netbsd]
930
+
715
931
  '@esbuild/openbsd-arm64@0.25.12':
716
932
  resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
717
933
  engines: {node: '>=18'}
718
934
  cpu: [arm64]
719
935
  os: [openbsd]
720
936
 
937
+ '@esbuild/openbsd-arm64@0.27.3':
938
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
939
+ engines: {node: '>=18'}
940
+ cpu: [arm64]
941
+ os: [openbsd]
942
+
943
+ '@esbuild/openbsd-x64@0.18.20':
944
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
945
+ engines: {node: '>=12'}
946
+ cpu: [x64]
947
+ os: [openbsd]
948
+
721
949
  '@esbuild/openbsd-x64@0.25.12':
722
950
  resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
723
951
  engines: {node: '>=18'}
724
952
  cpu: [x64]
725
953
  os: [openbsd]
726
954
 
955
+ '@esbuild/openbsd-x64@0.27.3':
956
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
957
+ engines: {node: '>=18'}
958
+ cpu: [x64]
959
+ os: [openbsd]
960
+
727
961
  '@esbuild/openharmony-arm64@0.25.12':
728
962
  resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
729
963
  engines: {node: '>=18'}
730
964
  cpu: [arm64]
731
965
  os: [openharmony]
732
966
 
967
+ '@esbuild/openharmony-arm64@0.27.3':
968
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
969
+ engines: {node: '>=18'}
970
+ cpu: [arm64]
971
+ os: [openharmony]
972
+
973
+ '@esbuild/sunos-x64@0.18.20':
974
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
975
+ engines: {node: '>=12'}
976
+ cpu: [x64]
977
+ os: [sunos]
978
+
733
979
  '@esbuild/sunos-x64@0.25.12':
734
980
  resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
735
981
  engines: {node: '>=18'}
736
982
  cpu: [x64]
737
983
  os: [sunos]
738
984
 
985
+ '@esbuild/sunos-x64@0.27.3':
986
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
987
+ engines: {node: '>=18'}
988
+ cpu: [x64]
989
+ os: [sunos]
990
+
991
+ '@esbuild/win32-arm64@0.18.20':
992
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
993
+ engines: {node: '>=12'}
994
+ cpu: [arm64]
995
+ os: [win32]
996
+
739
997
  '@esbuild/win32-arm64@0.25.12':
740
998
  resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
741
999
  engines: {node: '>=18'}
742
1000
  cpu: [arm64]
743
1001
  os: [win32]
744
1002
 
1003
+ '@esbuild/win32-arm64@0.27.3':
1004
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
1005
+ engines: {node: '>=18'}
1006
+ cpu: [arm64]
1007
+ os: [win32]
1008
+
1009
+ '@esbuild/win32-ia32@0.18.20':
1010
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
1011
+ engines: {node: '>=12'}
1012
+ cpu: [ia32]
1013
+ os: [win32]
1014
+
745
1015
  '@esbuild/win32-ia32@0.25.12':
746
1016
  resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
747
1017
  engines: {node: '>=18'}
748
1018
  cpu: [ia32]
749
1019
  os: [win32]
750
1020
 
1021
+ '@esbuild/win32-ia32@0.27.3':
1022
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
1023
+ engines: {node: '>=18'}
1024
+ cpu: [ia32]
1025
+ os: [win32]
1026
+
1027
+ '@esbuild/win32-x64@0.18.20':
1028
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
1029
+ engines: {node: '>=12'}
1030
+ cpu: [x64]
1031
+ os: [win32]
1032
+
751
1033
  '@esbuild/win32-x64@0.25.12':
752
1034
  resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
753
1035
  engines: {node: '>=18'}
754
1036
  cpu: [x64]
755
1037
  os: [win32]
756
1038
 
1039
+ '@esbuild/win32-x64@0.27.3':
1040
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
1041
+ engines: {node: '>=18'}
1042
+ cpu: [x64]
1043
+ os: [win32]
1044
+
757
1045
  '@eslint-community/eslint-utils@4.9.1':
758
1046
  resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
759
1047
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1834,6 +2122,144 @@ packages:
1834
2122
  resolution: {integrity: sha512-J1eI7cIm2IXE6EwhHR1OyoefvobUJEn/vJWEBwOM5uW4JkkLwuVoV9vk++XJyAmKUNQ87gdWZvSWrI2LjfrSug==}
1835
2123
  engines: {node: '>=12.0.0'}
1836
2124
 
2125
+ '@rollup/rollup-android-arm-eabi@4.59.0':
2126
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
2127
+ cpu: [arm]
2128
+ os: [android]
2129
+
2130
+ '@rollup/rollup-android-arm64@4.59.0':
2131
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
2132
+ cpu: [arm64]
2133
+ os: [android]
2134
+
2135
+ '@rollup/rollup-darwin-arm64@4.59.0':
2136
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
2137
+ cpu: [arm64]
2138
+ os: [darwin]
2139
+
2140
+ '@rollup/rollup-darwin-x64@4.59.0':
2141
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
2142
+ cpu: [x64]
2143
+ os: [darwin]
2144
+
2145
+ '@rollup/rollup-freebsd-arm64@4.59.0':
2146
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
2147
+ cpu: [arm64]
2148
+ os: [freebsd]
2149
+
2150
+ '@rollup/rollup-freebsd-x64@4.59.0':
2151
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
2152
+ cpu: [x64]
2153
+ os: [freebsd]
2154
+
2155
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
2156
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
2157
+ cpu: [arm]
2158
+ os: [linux]
2159
+ libc: [glibc]
2160
+
2161
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
2162
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
2163
+ cpu: [arm]
2164
+ os: [linux]
2165
+ libc: [musl]
2166
+
2167
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
2168
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
2169
+ cpu: [arm64]
2170
+ os: [linux]
2171
+ libc: [glibc]
2172
+
2173
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
2174
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
2175
+ cpu: [arm64]
2176
+ os: [linux]
2177
+ libc: [musl]
2178
+
2179
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
2180
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
2181
+ cpu: [loong64]
2182
+ os: [linux]
2183
+ libc: [glibc]
2184
+
2185
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
2186
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
2187
+ cpu: [loong64]
2188
+ os: [linux]
2189
+ libc: [musl]
2190
+
2191
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
2192
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
2193
+ cpu: [ppc64]
2194
+ os: [linux]
2195
+ libc: [glibc]
2196
+
2197
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
2198
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
2199
+ cpu: [ppc64]
2200
+ os: [linux]
2201
+ libc: [musl]
2202
+
2203
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
2204
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
2205
+ cpu: [riscv64]
2206
+ os: [linux]
2207
+ libc: [glibc]
2208
+
2209
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
2210
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
2211
+ cpu: [riscv64]
2212
+ os: [linux]
2213
+ libc: [musl]
2214
+
2215
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
2216
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
2217
+ cpu: [s390x]
2218
+ os: [linux]
2219
+ libc: [glibc]
2220
+
2221
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
2222
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
2223
+ cpu: [x64]
2224
+ os: [linux]
2225
+ libc: [glibc]
2226
+
2227
+ '@rollup/rollup-linux-x64-musl@4.59.0':
2228
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
2229
+ cpu: [x64]
2230
+ os: [linux]
2231
+ libc: [musl]
2232
+
2233
+ '@rollup/rollup-openbsd-x64@4.59.0':
2234
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
2235
+ cpu: [x64]
2236
+ os: [openbsd]
2237
+
2238
+ '@rollup/rollup-openharmony-arm64@4.59.0':
2239
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
2240
+ cpu: [arm64]
2241
+ os: [openharmony]
2242
+
2243
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
2244
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
2245
+ cpu: [arm64]
2246
+ os: [win32]
2247
+
2248
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
2249
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
2250
+ cpu: [ia32]
2251
+ os: [win32]
2252
+
2253
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
2254
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
2255
+ cpu: [x64]
2256
+ os: [win32]
2257
+
2258
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
2259
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
2260
+ cpu: [x64]
2261
+ os: [win32]
2262
+
1837
2263
  '@rtsao/scc@1.1.0':
1838
2264
  resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
1839
2265
 
@@ -2500,6 +2926,11 @@ packages:
2500
2926
  engines: {node: '>=0.4.0'}
2501
2927
  hasBin: true
2502
2928
 
2929
+ acorn@8.16.0:
2930
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
2931
+ engines: {node: '>=0.4.0'}
2932
+ hasBin: true
2933
+
2503
2934
  address@1.2.2:
2504
2935
  resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
2505
2936
  engines: {node: '>= 10.0.0'}
@@ -2560,6 +2991,9 @@ packages:
2560
2991
  resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
2561
2992
  engines: {node: '>=14'}
2562
2993
 
2994
+ any-promise@1.3.0:
2995
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
2996
+
2563
2997
  anymatch@3.1.3:
2564
2998
  resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
2565
2999
  engines: {node: '>= 8'}
@@ -2690,10 +3124,20 @@ packages:
2690
3124
  resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
2691
3125
  engines: {node: '>=18'}
2692
3126
 
3127
+ bundle-require@5.1.0:
3128
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
3129
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
3130
+ peerDependencies:
3131
+ esbuild: '>=0.18'
3132
+
2693
3133
  bytes@3.1.2:
2694
3134
  resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
2695
3135
  engines: {node: '>= 0.8'}
2696
3136
 
3137
+ cac@6.7.14:
3138
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
3139
+ engines: {node: '>=8'}
3140
+
2697
3141
  call-bind-apply-helpers@1.0.2:
2698
3142
  resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
2699
3143
  engines: {node: '>= 0.4'}
@@ -2729,6 +3173,10 @@ packages:
2729
3173
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
2730
3174
  engines: {node: '>= 8.10.0'}
2731
3175
 
3176
+ chokidar@4.0.3:
3177
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
3178
+ engines: {node: '>= 14.16.0'}
3179
+
2732
3180
  chrome-trace-event@1.0.4:
2733
3181
  resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
2734
3182
  engines: {node: '>=6.0'}
@@ -2790,9 +3238,20 @@ packages:
2790
3238
  commander@2.20.3:
2791
3239
  resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
2792
3240
 
3241
+ commander@4.1.1:
3242
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
3243
+ engines: {node: '>= 6'}
3244
+
2793
3245
  concat-map@0.0.1:
2794
3246
  resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
2795
3247
 
3248
+ confbox@0.1.8:
3249
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
3250
+
3251
+ consola@3.4.2:
3252
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
3253
+ engines: {node: ^14.18.0 || >=16.10.0}
3254
+
2796
3255
  console-table-printer@2.15.0:
2797
3256
  resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
2798
3257
 
@@ -3226,13 +3685,23 @@ packages:
3226
3685
  esbuild-register@3.6.0:
3227
3686
  resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
3228
3687
  peerDependencies:
3229
- esbuild: ^0.25.12
3688
+ esbuild: '>=0.12 <1'
3689
+
3690
+ esbuild@0.18.20:
3691
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
3692
+ engines: {node: '>=12'}
3693
+ hasBin: true
3230
3694
 
3231
3695
  esbuild@0.25.12:
3232
3696
  resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
3233
3697
  engines: {node: '>=18'}
3234
3698
  hasBin: true
3235
3699
 
3700
+ esbuild@0.27.3:
3701
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
3702
+ engines: {node: '>=18'}
3703
+ hasBin: true
3704
+
3236
3705
  escalade@3.2.0:
3237
3706
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
3238
3707
  engines: {node: '>=6'}
@@ -3482,6 +3951,9 @@ packages:
3482
3951
  resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
3483
3952
  engines: {node: '>=10'}
3484
3953
 
3954
+ fix-dts-default-cjs-exports@1.0.1:
3955
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
3956
+
3485
3957
  flat-cache@4.0.1:
3486
3958
  resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
3487
3959
  engines: {node: '>=16'}
@@ -3993,6 +4465,10 @@ packages:
3993
4465
  jose@6.1.3:
3994
4466
  resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
3995
4467
 
4468
+ joycon@3.1.1:
4469
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
4470
+ engines: {node: '>=10'}
4471
+
3996
4472
  js-tiktoken@1.0.21:
3997
4473
  resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
3998
4474
 
@@ -4159,9 +4635,17 @@ packages:
4159
4635
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
4160
4636
  engines: {node: '>= 12.0.0'}
4161
4637
 
4638
+ lilconfig@3.1.3:
4639
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
4640
+ engines: {node: '>=14'}
4641
+
4162
4642
  lines-and-columns@1.2.4:
4163
4643
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
4164
4644
 
4645
+ load-tsconfig@0.2.5:
4646
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
4647
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
4648
+
4165
4649
  loader-runner@4.3.1:
4166
4650
  resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
4167
4651
  engines: {node: '>=6.11.5'}
@@ -4268,6 +4752,9 @@ packages:
4268
4752
  minimist@1.2.8:
4269
4753
  resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
4270
4754
 
4755
+ mlly@1.8.1:
4756
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
4757
+
4271
4758
  ms@2.0.0:
4272
4759
  resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
4273
4760
 
@@ -4292,6 +4779,9 @@ packages:
4292
4779
  resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
4293
4780
  engines: {node: ^18.17.0 || >=20.5.0}
4294
4781
 
4782
+ mz@2.7.0:
4783
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
4784
+
4295
4785
  nanoid@3.3.11:
4296
4786
  resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
4297
4787
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -4540,8 +5030,8 @@ packages:
4540
5030
  resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
4541
5031
  engines: {node: '>=8'}
4542
5032
 
4543
- pg-cloudflare@1.3.0:
4544
- resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
5033
+ pathe@2.0.3:
5034
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
4545
5035
 
4546
5036
  pg-connection-string@2.10.1:
4547
5037
  resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
@@ -4588,10 +5078,17 @@ packages:
4588
5078
  resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
4589
5079
  engines: {node: '>=12'}
4590
5080
 
5081
+ pirates@4.0.7:
5082
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
5083
+ engines: {node: '>= 6'}
5084
+
4591
5085
  pkce-challenge@5.0.1:
4592
5086
  resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
4593
5087
  engines: {node: '>=16.20.0'}
4594
5088
 
5089
+ pkg-types@1.3.1:
5090
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
5091
+
4595
5092
  pkg-up@3.1.0:
4596
5093
  resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
4597
5094
  engines: {node: '>=8'}
@@ -4600,6 +5097,24 @@ packages:
4600
5097
  resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
4601
5098
  engines: {node: '>= 0.4'}
4602
5099
 
5100
+ postcss-load-config@6.0.1:
5101
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
5102
+ engines: {node: '>= 18'}
5103
+ peerDependencies:
5104
+ jiti: '>=1.21.0'
5105
+ postcss: '>=8.0.9'
5106
+ tsx: ^4.8.1
5107
+ yaml: ^2.4.2
5108
+ peerDependenciesMeta:
5109
+ jiti:
5110
+ optional: true
5111
+ postcss:
5112
+ optional: true
5113
+ tsx:
5114
+ optional: true
5115
+ yaml:
5116
+ optional: true
5117
+
4603
5118
  postcss-selector-parser@7.1.1:
4604
5119
  resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
4605
5120
  engines: {node: '>=4'}
@@ -4778,6 +5293,10 @@ packages:
4778
5293
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
4779
5294
  engines: {node: '>=8.10.0'}
4780
5295
 
5296
+ readdirp@4.1.2:
5297
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
5298
+ engines: {node: '>= 14.18.0'}
5299
+
4781
5300
  recast@0.23.11:
4782
5301
  resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
4783
5302
  engines: {node: '>= 4'}
@@ -4816,6 +5335,10 @@ packages:
4816
5335
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
4817
5336
  engines: {node: '>=4'}
4818
5337
 
5338
+ resolve-from@5.0.0:
5339
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
5340
+ engines: {node: '>=8'}
5341
+
4819
5342
  resolve-pkg-maps@1.0.0:
4820
5343
  resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
4821
5344
 
@@ -4839,6 +5362,11 @@ packages:
4839
5362
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
4840
5363
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
4841
5364
 
5365
+ rollup@4.59.0:
5366
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
5367
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
5368
+ hasBin: true
5369
+
4842
5370
  router@2.2.0:
4843
5371
  resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
4844
5372
  engines: {node: '>= 18'}
@@ -4984,6 +5512,10 @@ packages:
4984
5512
  resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
4985
5513
  engines: {node: '>=0.10.0'}
4986
5514
 
5515
+ source-map@0.7.6:
5516
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
5517
+ engines: {node: '>= 12'}
5518
+
4987
5519
  split2@4.2.0:
4988
5520
  resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
4989
5521
  engines: {node: '>= 10.x'}
@@ -5087,6 +5619,11 @@ packages:
5087
5619
  babel-plugin-macros:
5088
5620
  optional: true
5089
5621
 
5622
+ sucrase@3.35.1:
5623
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
5624
+ engines: {node: '>=16 || 14 >=14.17'}
5625
+ hasBin: true
5626
+
5090
5627
  supports-color@7.2.0:
5091
5628
  resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
5092
5629
  engines: {node: '>=8'}
@@ -5141,9 +5678,19 @@ packages:
5141
5678
  text-table@0.2.0:
5142
5679
  resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
5143
5680
 
5681
+ thenify-all@1.6.0:
5682
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
5683
+ engines: {node: '>=0.8'}
5684
+
5685
+ thenify@3.3.1:
5686
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
5687
+
5144
5688
  tiny-invariant@1.3.3:
5145
5689
  resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
5146
5690
 
5691
+ tinyexec@0.3.2:
5692
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
5693
+
5147
5694
  tinyexec@1.0.2:
5148
5695
  resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
5149
5696
  engines: {node: '>=18'}
@@ -5175,12 +5722,19 @@ packages:
5175
5722
  resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
5176
5723
  engines: {node: '>=16'}
5177
5724
 
5725
+ tree-kill@1.2.2:
5726
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
5727
+ hasBin: true
5728
+
5178
5729
  ts-api-utils@2.4.0:
5179
5730
  resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
5180
5731
  engines: {node: '>=18.12'}
5181
5732
  peerDependencies:
5182
5733
  typescript: '>=4.8.4'
5183
5734
 
5735
+ ts-interface-checker@0.1.13:
5736
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
5737
+
5184
5738
  ts-morph@26.0.0:
5185
5739
  resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==}
5186
5740
 
@@ -5194,6 +5748,25 @@ packages:
5194
5748
  tslib@2.8.1:
5195
5749
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
5196
5750
 
5751
+ tsup@8.5.1:
5752
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
5753
+ engines: {node: '>=18'}
5754
+ hasBin: true
5755
+ peerDependencies:
5756
+ '@microsoft/api-extractor': ^7.36.0
5757
+ '@swc/core': ^1
5758
+ postcss: ^8.4.12
5759
+ typescript: '>=4.5.0'
5760
+ peerDependenciesMeta:
5761
+ '@microsoft/api-extractor':
5762
+ optional: true
5763
+ '@swc/core':
5764
+ optional: true
5765
+ postcss:
5766
+ optional: true
5767
+ typescript:
5768
+ optional: true
5769
+
5197
5770
  tsx@4.21.0:
5198
5771
  resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
5199
5772
  engines: {node: '>=18.0.0'}
@@ -5242,6 +5815,9 @@ packages:
5242
5815
  engines: {node: '>=14.17'}
5243
5816
  hasBin: true
5244
5817
 
5818
+ ufo@1.6.3:
5819
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
5820
+
5245
5821
  unbox-primitive@1.1.0:
5246
5822
  resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
5247
5823
  engines: {node: '>= 0.4'}
@@ -6253,7 +6829,7 @@ snapshots:
6253
6829
 
6254
6830
  '@esbuild-kit/core-utils@3.3.2':
6255
6831
  dependencies:
6256
- esbuild: 0.25.12
6832
+ esbuild: 0.18.20
6257
6833
  source-map-support: 0.5.21
6258
6834
 
6259
6835
  '@esbuild-kit/esm-loader@2.6.5':
@@ -6264,81 +6840,225 @@ snapshots:
6264
6840
  '@esbuild/aix-ppc64@0.25.12':
6265
6841
  optional: true
6266
6842
 
6843
+ '@esbuild/aix-ppc64@0.27.3':
6844
+ optional: true
6845
+
6846
+ '@esbuild/android-arm64@0.18.20':
6847
+ optional: true
6848
+
6267
6849
  '@esbuild/android-arm64@0.25.12':
6268
6850
  optional: true
6269
6851
 
6852
+ '@esbuild/android-arm64@0.27.3':
6853
+ optional: true
6854
+
6855
+ '@esbuild/android-arm@0.18.20':
6856
+ optional: true
6857
+
6270
6858
  '@esbuild/android-arm@0.25.12':
6271
6859
  optional: true
6272
6860
 
6861
+ '@esbuild/android-arm@0.27.3':
6862
+ optional: true
6863
+
6864
+ '@esbuild/android-x64@0.18.20':
6865
+ optional: true
6866
+
6273
6867
  '@esbuild/android-x64@0.25.12':
6274
6868
  optional: true
6275
6869
 
6870
+ '@esbuild/android-x64@0.27.3':
6871
+ optional: true
6872
+
6873
+ '@esbuild/darwin-arm64@0.18.20':
6874
+ optional: true
6875
+
6276
6876
  '@esbuild/darwin-arm64@0.25.12':
6277
6877
  optional: true
6278
6878
 
6879
+ '@esbuild/darwin-arm64@0.27.3':
6880
+ optional: true
6881
+
6882
+ '@esbuild/darwin-x64@0.18.20':
6883
+ optional: true
6884
+
6279
6885
  '@esbuild/darwin-x64@0.25.12':
6280
6886
  optional: true
6281
6887
 
6888
+ '@esbuild/darwin-x64@0.27.3':
6889
+ optional: true
6890
+
6891
+ '@esbuild/freebsd-arm64@0.18.20':
6892
+ optional: true
6893
+
6282
6894
  '@esbuild/freebsd-arm64@0.25.12':
6283
6895
  optional: true
6284
6896
 
6897
+ '@esbuild/freebsd-arm64@0.27.3':
6898
+ optional: true
6899
+
6900
+ '@esbuild/freebsd-x64@0.18.20':
6901
+ optional: true
6902
+
6285
6903
  '@esbuild/freebsd-x64@0.25.12':
6286
6904
  optional: true
6287
6905
 
6906
+ '@esbuild/freebsd-x64@0.27.3':
6907
+ optional: true
6908
+
6909
+ '@esbuild/linux-arm64@0.18.20':
6910
+ optional: true
6911
+
6288
6912
  '@esbuild/linux-arm64@0.25.12':
6289
6913
  optional: true
6290
6914
 
6915
+ '@esbuild/linux-arm64@0.27.3':
6916
+ optional: true
6917
+
6918
+ '@esbuild/linux-arm@0.18.20':
6919
+ optional: true
6920
+
6291
6921
  '@esbuild/linux-arm@0.25.12':
6292
6922
  optional: true
6293
6923
 
6924
+ '@esbuild/linux-arm@0.27.3':
6925
+ optional: true
6926
+
6927
+ '@esbuild/linux-ia32@0.18.20':
6928
+ optional: true
6929
+
6294
6930
  '@esbuild/linux-ia32@0.25.12':
6295
6931
  optional: true
6296
6932
 
6933
+ '@esbuild/linux-ia32@0.27.3':
6934
+ optional: true
6935
+
6936
+ '@esbuild/linux-loong64@0.18.20':
6937
+ optional: true
6938
+
6297
6939
  '@esbuild/linux-loong64@0.25.12':
6298
6940
  optional: true
6299
6941
 
6942
+ '@esbuild/linux-loong64@0.27.3':
6943
+ optional: true
6944
+
6945
+ '@esbuild/linux-mips64el@0.18.20':
6946
+ optional: true
6947
+
6300
6948
  '@esbuild/linux-mips64el@0.25.12':
6301
6949
  optional: true
6302
6950
 
6951
+ '@esbuild/linux-mips64el@0.27.3':
6952
+ optional: true
6953
+
6954
+ '@esbuild/linux-ppc64@0.18.20':
6955
+ optional: true
6956
+
6303
6957
  '@esbuild/linux-ppc64@0.25.12':
6304
6958
  optional: true
6305
6959
 
6960
+ '@esbuild/linux-ppc64@0.27.3':
6961
+ optional: true
6962
+
6963
+ '@esbuild/linux-riscv64@0.18.20':
6964
+ optional: true
6965
+
6306
6966
  '@esbuild/linux-riscv64@0.25.12':
6307
6967
  optional: true
6308
6968
 
6969
+ '@esbuild/linux-riscv64@0.27.3':
6970
+ optional: true
6971
+
6972
+ '@esbuild/linux-s390x@0.18.20':
6973
+ optional: true
6974
+
6309
6975
  '@esbuild/linux-s390x@0.25.12':
6310
6976
  optional: true
6311
6977
 
6978
+ '@esbuild/linux-s390x@0.27.3':
6979
+ optional: true
6980
+
6981
+ '@esbuild/linux-x64@0.18.20':
6982
+ optional: true
6983
+
6312
6984
  '@esbuild/linux-x64@0.25.12':
6313
6985
  optional: true
6314
6986
 
6987
+ '@esbuild/linux-x64@0.27.3':
6988
+ optional: true
6989
+
6315
6990
  '@esbuild/netbsd-arm64@0.25.12':
6316
6991
  optional: true
6317
6992
 
6993
+ '@esbuild/netbsd-arm64@0.27.3':
6994
+ optional: true
6995
+
6996
+ '@esbuild/netbsd-x64@0.18.20':
6997
+ optional: true
6998
+
6318
6999
  '@esbuild/netbsd-x64@0.25.12':
6319
7000
  optional: true
6320
7001
 
7002
+ '@esbuild/netbsd-x64@0.27.3':
7003
+ optional: true
7004
+
6321
7005
  '@esbuild/openbsd-arm64@0.25.12':
6322
7006
  optional: true
6323
7007
 
7008
+ '@esbuild/openbsd-arm64@0.27.3':
7009
+ optional: true
7010
+
7011
+ '@esbuild/openbsd-x64@0.18.20':
7012
+ optional: true
7013
+
6324
7014
  '@esbuild/openbsd-x64@0.25.12':
6325
7015
  optional: true
6326
7016
 
7017
+ '@esbuild/openbsd-x64@0.27.3':
7018
+ optional: true
7019
+
6327
7020
  '@esbuild/openharmony-arm64@0.25.12':
6328
7021
  optional: true
6329
7022
 
7023
+ '@esbuild/openharmony-arm64@0.27.3':
7024
+ optional: true
7025
+
7026
+ '@esbuild/sunos-x64@0.18.20':
7027
+ optional: true
7028
+
6330
7029
  '@esbuild/sunos-x64@0.25.12':
6331
7030
  optional: true
6332
7031
 
7032
+ '@esbuild/sunos-x64@0.27.3':
7033
+ optional: true
7034
+
7035
+ '@esbuild/win32-arm64@0.18.20':
7036
+ optional: true
7037
+
6333
7038
  '@esbuild/win32-arm64@0.25.12':
6334
7039
  optional: true
6335
7040
 
7041
+ '@esbuild/win32-arm64@0.27.3':
7042
+ optional: true
7043
+
7044
+ '@esbuild/win32-ia32@0.18.20':
7045
+ optional: true
7046
+
6336
7047
  '@esbuild/win32-ia32@0.25.12':
6337
7048
  optional: true
6338
7049
 
7050
+ '@esbuild/win32-ia32@0.27.3':
7051
+ optional: true
7052
+
7053
+ '@esbuild/win32-x64@0.18.20':
7054
+ optional: true
7055
+
6339
7056
  '@esbuild/win32-x64@0.25.12':
6340
7057
  optional: true
6341
7058
 
7059
+ '@esbuild/win32-x64@0.27.3':
7060
+ optional: true
7061
+
6342
7062
  '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
6343
7063
  dependencies:
6344
7064
  eslint: 9.39.2(jiti@2.6.1)
@@ -7432,6 +8152,81 @@ snapshots:
7432
8152
  - vue-template-compiler
7433
8153
  - webpack
7434
8154
 
8155
+ '@rollup/rollup-android-arm-eabi@4.59.0':
8156
+ optional: true
8157
+
8158
+ '@rollup/rollup-android-arm64@4.59.0':
8159
+ optional: true
8160
+
8161
+ '@rollup/rollup-darwin-arm64@4.59.0':
8162
+ optional: true
8163
+
8164
+ '@rollup/rollup-darwin-x64@4.59.0':
8165
+ optional: true
8166
+
8167
+ '@rollup/rollup-freebsd-arm64@4.59.0':
8168
+ optional: true
8169
+
8170
+ '@rollup/rollup-freebsd-x64@4.59.0':
8171
+ optional: true
8172
+
8173
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
8174
+ optional: true
8175
+
8176
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
8177
+ optional: true
8178
+
8179
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
8180
+ optional: true
8181
+
8182
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
8183
+ optional: true
8184
+
8185
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
8186
+ optional: true
8187
+
8188
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
8189
+ optional: true
8190
+
8191
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
8192
+ optional: true
8193
+
8194
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
8195
+ optional: true
8196
+
8197
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
8198
+ optional: true
8199
+
8200
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
8201
+ optional: true
8202
+
8203
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
8204
+ optional: true
8205
+
8206
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
8207
+ optional: true
8208
+
8209
+ '@rollup/rollup-linux-x64-musl@4.59.0':
8210
+ optional: true
8211
+
8212
+ '@rollup/rollup-openbsd-x64@4.59.0':
8213
+ optional: true
8214
+
8215
+ '@rollup/rollup-openharmony-arm64@4.59.0':
8216
+ optional: true
8217
+
8218
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
8219
+ optional: true
8220
+
8221
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
8222
+ optional: true
8223
+
8224
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
8225
+ optional: true
8226
+
8227
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
8228
+ optional: true
8229
+
7435
8230
  '@rtsao/scc@1.1.0': {}
7436
8231
 
7437
8232
  '@sec-ant/readable-stream@0.4.1': {}
@@ -8221,6 +9016,8 @@ snapshots:
8221
9016
 
8222
9017
  acorn@8.15.0: {}
8223
9018
 
9019
+ acorn@8.16.0: {}
9020
+
8224
9021
  address@1.2.2: {}
8225
9022
 
8226
9023
  agent-base@7.1.4: {}
@@ -8268,6 +9065,8 @@ snapshots:
8268
9065
 
8269
9066
  ansis@4.2.0: {}
8270
9067
 
9068
+ any-promise@1.3.0: {}
9069
+
8271
9070
  anymatch@3.1.3:
8272
9071
  dependencies:
8273
9072
  normalize-path: 3.0.0
@@ -8434,8 +9233,15 @@ snapshots:
8434
9233
  dependencies:
8435
9234
  run-applescript: 7.1.0
8436
9235
 
9236
+ bundle-require@5.1.0(esbuild@0.27.3):
9237
+ dependencies:
9238
+ esbuild: 0.27.3
9239
+ load-tsconfig: 0.2.5
9240
+
8437
9241
  bytes@3.1.2: {}
8438
9242
 
9243
+ cac@6.7.14: {}
9244
+
8439
9245
  call-bind-apply-helpers@1.0.2:
8440
9246
  dependencies:
8441
9247
  es-errors: 1.3.0
@@ -8478,6 +9284,10 @@ snapshots:
8478
9284
  optionalDependencies:
8479
9285
  fsevents: 2.3.3
8480
9286
 
9287
+ chokidar@4.0.3:
9288
+ dependencies:
9289
+ readdirp: 4.1.2
9290
+
8481
9291
  chrome-trace-event@1.0.4: {}
8482
9292
 
8483
9293
  class-variance-authority@0.7.1:
@@ -8532,8 +9342,14 @@ snapshots:
8532
9342
 
8533
9343
  commander@2.20.3: {}
8534
9344
 
9345
+ commander@4.1.1: {}
9346
+
8535
9347
  concat-map@0.0.1: {}
8536
9348
 
9349
+ confbox@0.1.8: {}
9350
+
9351
+ consola@3.4.2: {}
9352
+
8537
9353
  console-table-printer@2.15.0:
8538
9354
  dependencies:
8539
9355
  simple-wcswidth: 1.1.2
@@ -8920,6 +9736,31 @@ snapshots:
8920
9736
  transitivePeerDependencies:
8921
9737
  - supports-color
8922
9738
 
9739
+ esbuild@0.18.20:
9740
+ optionalDependencies:
9741
+ '@esbuild/android-arm': 0.18.20
9742
+ '@esbuild/android-arm64': 0.18.20
9743
+ '@esbuild/android-x64': 0.18.20
9744
+ '@esbuild/darwin-arm64': 0.18.20
9745
+ '@esbuild/darwin-x64': 0.18.20
9746
+ '@esbuild/freebsd-arm64': 0.18.20
9747
+ '@esbuild/freebsd-x64': 0.18.20
9748
+ '@esbuild/linux-arm': 0.18.20
9749
+ '@esbuild/linux-arm64': 0.18.20
9750
+ '@esbuild/linux-ia32': 0.18.20
9751
+ '@esbuild/linux-loong64': 0.18.20
9752
+ '@esbuild/linux-mips64el': 0.18.20
9753
+ '@esbuild/linux-ppc64': 0.18.20
9754
+ '@esbuild/linux-riscv64': 0.18.20
9755
+ '@esbuild/linux-s390x': 0.18.20
9756
+ '@esbuild/linux-x64': 0.18.20
9757
+ '@esbuild/netbsd-x64': 0.18.20
9758
+ '@esbuild/openbsd-x64': 0.18.20
9759
+ '@esbuild/sunos-x64': 0.18.20
9760
+ '@esbuild/win32-arm64': 0.18.20
9761
+ '@esbuild/win32-ia32': 0.18.20
9762
+ '@esbuild/win32-x64': 0.18.20
9763
+
8923
9764
  esbuild@0.25.12:
8924
9765
  optionalDependencies:
8925
9766
  '@esbuild/aix-ppc64': 0.25.12
@@ -8949,6 +9790,35 @@ snapshots:
8949
9790
  '@esbuild/win32-ia32': 0.25.12
8950
9791
  '@esbuild/win32-x64': 0.25.12
8951
9792
 
9793
+ esbuild@0.27.3:
9794
+ optionalDependencies:
9795
+ '@esbuild/aix-ppc64': 0.27.3
9796
+ '@esbuild/android-arm': 0.27.3
9797
+ '@esbuild/android-arm64': 0.27.3
9798
+ '@esbuild/android-x64': 0.27.3
9799
+ '@esbuild/darwin-arm64': 0.27.3
9800
+ '@esbuild/darwin-x64': 0.27.3
9801
+ '@esbuild/freebsd-arm64': 0.27.3
9802
+ '@esbuild/freebsd-x64': 0.27.3
9803
+ '@esbuild/linux-arm': 0.27.3
9804
+ '@esbuild/linux-arm64': 0.27.3
9805
+ '@esbuild/linux-ia32': 0.27.3
9806
+ '@esbuild/linux-loong64': 0.27.3
9807
+ '@esbuild/linux-mips64el': 0.27.3
9808
+ '@esbuild/linux-ppc64': 0.27.3
9809
+ '@esbuild/linux-riscv64': 0.27.3
9810
+ '@esbuild/linux-s390x': 0.27.3
9811
+ '@esbuild/linux-x64': 0.27.3
9812
+ '@esbuild/netbsd-arm64': 0.27.3
9813
+ '@esbuild/netbsd-x64': 0.27.3
9814
+ '@esbuild/openbsd-arm64': 0.27.3
9815
+ '@esbuild/openbsd-x64': 0.27.3
9816
+ '@esbuild/openharmony-arm64': 0.27.3
9817
+ '@esbuild/sunos-x64': 0.27.3
9818
+ '@esbuild/win32-arm64': 0.27.3
9819
+ '@esbuild/win32-ia32': 0.27.3
9820
+ '@esbuild/win32-x64': 0.27.3
9821
+
8952
9822
  escalade@3.2.0: {}
8953
9823
 
8954
9824
  escape-html@1.0.3: {}
@@ -9320,6 +10190,12 @@ snapshots:
9320
10190
  locate-path: 6.0.0
9321
10191
  path-exists: 4.0.0
9322
10192
 
10193
+ fix-dts-default-cjs-exports@1.0.1:
10194
+ dependencies:
10195
+ magic-string: 0.30.21
10196
+ mlly: 1.8.1
10197
+ rollup: 4.59.0
10198
+
9323
10199
  flat-cache@4.0.1:
9324
10200
  dependencies:
9325
10201
  flatted: 3.3.3
@@ -9793,6 +10669,8 @@ snapshots:
9793
10669
 
9794
10670
  jose@6.1.3: {}
9795
10671
 
10672
+ joycon@3.1.1: {}
10673
+
9796
10674
  js-tiktoken@1.0.21:
9797
10675
  dependencies:
9798
10676
  base64-js: 1.5.1
@@ -9917,8 +10795,12 @@ snapshots:
9917
10795
  lightningcss-win32-arm64-msvc: 1.30.2
9918
10796
  lightningcss-win32-x64-msvc: 1.30.2
9919
10797
 
10798
+ lilconfig@3.1.3: {}
10799
+
9920
10800
  lines-and-columns@1.2.4: {}
9921
10801
 
10802
+ load-tsconfig@0.2.5: {}
10803
+
9922
10804
  loader-runner@4.3.1: {}
9923
10805
 
9924
10806
  loader-utils@3.3.1: {}
@@ -10006,6 +10888,13 @@ snapshots:
10006
10888
 
10007
10889
  minimist@1.2.8: {}
10008
10890
 
10891
+ mlly@1.8.1:
10892
+ dependencies:
10893
+ acorn: 8.16.0
10894
+ pathe: 2.0.3
10895
+ pkg-types: 1.3.1
10896
+ ufo: 1.6.3
10897
+
10009
10898
  ms@2.0.0: {}
10010
10899
 
10011
10900
  ms@2.1.3: {}
@@ -10039,6 +10928,12 @@ snapshots:
10039
10928
 
10040
10929
  mute-stream@2.0.0: {}
10041
10930
 
10931
+ mz@2.7.0:
10932
+ dependencies:
10933
+ any-promise: 1.3.0
10934
+ object-assign: 4.1.1
10935
+ thenify-all: 1.6.0
10936
+
10042
10937
  nanoid@3.3.11: {}
10043
10938
 
10044
10939
  napi-postinstall@0.3.4: {}
@@ -10278,8 +11173,7 @@ snapshots:
10278
11173
 
10279
11174
  path-type@4.0.0: {}
10280
11175
 
10281
- pg-cloudflare@1.3.0:
10282
- optional: true
11176
+ pathe@2.0.3: {}
10283
11177
 
10284
11178
  pg-connection-string@2.10.1: {}
10285
11179
 
@@ -10306,8 +11200,6 @@ snapshots:
10306
11200
  pg-protocol: 1.11.0
10307
11201
  pg-types: 2.2.0
10308
11202
  pgpass: 1.0.5
10309
- optionalDependencies:
10310
- pg-cloudflare: 1.3.0
10311
11203
 
10312
11204
  pgpass@1.0.5:
10313
11205
  dependencies:
@@ -10321,14 +11213,31 @@ snapshots:
10321
11213
 
10322
11214
  picomatch@4.0.3: {}
10323
11215
 
11216
+ pirates@4.0.7: {}
11217
+
10324
11218
  pkce-challenge@5.0.1: {}
10325
11219
 
11220
+ pkg-types@1.3.1:
11221
+ dependencies:
11222
+ confbox: 0.1.8
11223
+ mlly: 1.8.1
11224
+ pathe: 2.0.3
11225
+
10326
11226
  pkg-up@3.1.0:
10327
11227
  dependencies:
10328
11228
  find-up: 3.0.0
10329
11229
 
10330
11230
  possible-typed-array-names@1.1.0: {}
10331
11231
 
11232
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@1.10.2):
11233
+ dependencies:
11234
+ lilconfig: 3.1.3
11235
+ optionalDependencies:
11236
+ jiti: 2.6.1
11237
+ postcss: 8.5.6
11238
+ tsx: 4.21.0
11239
+ yaml: 1.10.2
11240
+
10332
11241
  postcss-selector-parser@7.1.1:
10333
11242
  dependencies:
10334
11243
  cssesc: 3.0.0
@@ -10540,6 +11449,8 @@ snapshots:
10540
11449
  dependencies:
10541
11450
  picomatch: 2.3.1
10542
11451
 
11452
+ readdirp@4.1.2: {}
11453
+
10543
11454
  recast@0.23.11:
10544
11455
  dependencies:
10545
11456
  ast-types: 0.16.1
@@ -10595,6 +11506,8 @@ snapshots:
10595
11506
 
10596
11507
  resolve-from@4.0.0: {}
10597
11508
 
11509
+ resolve-from@5.0.0: {}
11510
+
10598
11511
  resolve-pkg-maps@1.0.0: {}
10599
11512
 
10600
11513
  resolve@1.22.11:
@@ -10618,6 +11531,37 @@ snapshots:
10618
11531
 
10619
11532
  reusify@1.1.0: {}
10620
11533
 
11534
+ rollup@4.59.0:
11535
+ dependencies:
11536
+ '@types/estree': 1.0.8
11537
+ optionalDependencies:
11538
+ '@rollup/rollup-android-arm-eabi': 4.59.0
11539
+ '@rollup/rollup-android-arm64': 4.59.0
11540
+ '@rollup/rollup-darwin-arm64': 4.59.0
11541
+ '@rollup/rollup-darwin-x64': 4.59.0
11542
+ '@rollup/rollup-freebsd-arm64': 4.59.0
11543
+ '@rollup/rollup-freebsd-x64': 4.59.0
11544
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
11545
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
11546
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
11547
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
11548
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
11549
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
11550
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
11551
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
11552
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
11553
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
11554
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
11555
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
11556
+ '@rollup/rollup-linux-x64-musl': 4.59.0
11557
+ '@rollup/rollup-openbsd-x64': 4.59.0
11558
+ '@rollup/rollup-openharmony-arm64': 4.59.0
11559
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
11560
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
11561
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
11562
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
11563
+ fsevents: 2.3.3
11564
+
10621
11565
  router@2.2.0:
10622
11566
  dependencies:
10623
11567
  debug: 4.4.3
@@ -10865,6 +11809,8 @@ snapshots:
10865
11809
 
10866
11810
  source-map@0.6.1: {}
10867
11811
 
11812
+ source-map@0.7.6: {}
11813
+
10868
11814
  split2@4.2.0: {}
10869
11815
 
10870
11816
  stable-hash@0.0.5: {}
@@ -10982,6 +11928,16 @@ snapshots:
10982
11928
  optionalDependencies:
10983
11929
  '@babel/core': 7.28.6
10984
11930
 
11931
+ sucrase@3.35.1:
11932
+ dependencies:
11933
+ '@jridgewell/gen-mapping': 0.3.13
11934
+ commander: 4.1.1
11935
+ lines-and-columns: 1.2.4
11936
+ mz: 2.7.0
11937
+ pirates: 4.0.7
11938
+ tinyglobby: 0.2.15
11939
+ ts-interface-checker: 0.1.13
11940
+
10985
11941
  supports-color@7.2.0:
10986
11942
  dependencies:
10987
11943
  has-flag: 4.0.0
@@ -11022,8 +11978,18 @@ snapshots:
11022
11978
 
11023
11979
  text-table@0.2.0: {}
11024
11980
 
11981
+ thenify-all@1.6.0:
11982
+ dependencies:
11983
+ thenify: 3.3.1
11984
+
11985
+ thenify@3.3.1:
11986
+ dependencies:
11987
+ any-promise: 1.3.0
11988
+
11025
11989
  tiny-invariant@1.3.3: {}
11026
11990
 
11991
+ tinyexec@0.3.2: {}
11992
+
11027
11993
  tinyexec@1.0.2: {}
11028
11994
 
11029
11995
  tinyglobby@0.2.15:
@@ -11049,10 +12015,14 @@ snapshots:
11049
12015
  dependencies:
11050
12016
  tldts: 7.0.19
11051
12017
 
12018
+ tree-kill@1.2.2: {}
12019
+
11052
12020
  ts-api-utils@2.4.0(typescript@5.9.3):
11053
12021
  dependencies:
11054
12022
  typescript: 5.9.3
11055
12023
 
12024
+ ts-interface-checker@0.1.13: {}
12025
+
11056
12026
  ts-morph@26.0.0:
11057
12027
  dependencies:
11058
12028
  '@ts-morph/common': 0.27.0
@@ -11073,9 +12043,37 @@ snapshots:
11073
12043
 
11074
12044
  tslib@2.8.1: {}
11075
12045
 
12046
+ tsup@8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@1.10.2):
12047
+ dependencies:
12048
+ bundle-require: 5.1.0(esbuild@0.27.3)
12049
+ cac: 6.7.14
12050
+ chokidar: 4.0.3
12051
+ consola: 3.4.2
12052
+ debug: 4.4.3
12053
+ esbuild: 0.27.3
12054
+ fix-dts-default-cjs-exports: 1.0.1
12055
+ joycon: 3.1.1
12056
+ picocolors: 1.1.1
12057
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@1.10.2)
12058
+ resolve-from: 5.0.0
12059
+ rollup: 4.59.0
12060
+ source-map: 0.7.6
12061
+ sucrase: 3.35.1
12062
+ tinyexec: 0.3.2
12063
+ tinyglobby: 0.2.15
12064
+ tree-kill: 1.2.2
12065
+ optionalDependencies:
12066
+ postcss: 8.5.6
12067
+ typescript: 5.9.3
12068
+ transitivePeerDependencies:
12069
+ - jiti
12070
+ - supports-color
12071
+ - tsx
12072
+ - yaml
12073
+
11076
12074
  tsx@4.21.0:
11077
12075
  dependencies:
11078
- esbuild: 0.25.12
12076
+ esbuild: 0.27.3
11079
12077
  get-tsconfig: 4.13.0
11080
12078
  optionalDependencies:
11081
12079
  fsevents: 2.3.3
@@ -11142,6 +12140,8 @@ snapshots:
11142
12140
 
11143
12141
  typescript@5.9.3: {}
11144
12142
 
12143
+ ufo@1.6.3: {}
12144
+
11145
12145
  unbox-primitive@1.1.0:
11146
12146
  dependencies:
11147
12147
  call-bound: 1.0.4