@coze-arch/cli 0.0.1-alpha.de5a13 → 0.0.1-alpha.deaedf

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 (143) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
  3. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  4. package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
  5. package/lib/__templates__/expo/client/metro.config.js +3 -0
  6. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  7. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  8. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  9. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  10. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
  11. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
  12. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
  13. package/lib/__templates__/expo/pnpm-lock.yaml +8 -5
  14. package/lib/__templates__/expo/server/package.json +1 -1
  15. package/lib/__templates__/native-static/.coze +11 -0
  16. package/lib/__templates__/native-static/index.html +33 -0
  17. package/lib/__templates__/native-static/styles/main.css +136 -0
  18. package/lib/__templates__/native-static/template.config.js +22 -0
  19. package/lib/__templates__/nextjs/.babelrc +3 -0
  20. package/lib/__templates__/nextjs/README.md +5 -0
  21. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  22. package/lib/__templates__/nextjs/next.config.ts +1 -2
  23. package/lib/__templates__/nextjs/package.json +3 -6
  24. package/lib/__templates__/nextjs/pnpm-lock.yaml +1036 -10
  25. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  26. package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
  27. package/lib/__templates__/nextjs/scripts/start.sh +7 -1
  28. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  29. package/lib/__templates__/nextjs/src/app/page.tsx +1 -2
  30. package/lib/__templates__/nextjs/src/server.ts +35 -0
  31. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  32. package/lib/__templates__/nuxt-vue/.coze +12 -0
  33. package/lib/__templates__/nuxt-vue/README.md +73 -0
  34. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  35. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  36. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  37. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  38. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  39. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  40. package/lib/__templates__/nuxt-vue/package.json +35 -0
  41. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  42. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  43. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  44. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  45. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  46. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  47. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  48. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  49. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  50. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  51. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  52. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  53. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  54. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  55. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +107 -37
  56. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
  57. package/lib/__templates__/taro/README.md +138 -62
  58. package/lib/__templates__/taro/config/index.ts +105 -41
  59. package/lib/__templates__/taro/config/prod.ts +4 -5
  60. package/lib/__templates__/taro/eslint.config.mjs +82 -4
  61. package/lib/__templates__/taro/package.json +23 -7
  62. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  63. package/lib/__templates__/taro/pnpm-lock.yaml +1198 -214
  64. package/lib/__templates__/taro/server/package.json +3 -1
  65. package/lib/__templates__/taro/src/app.css +140 -47
  66. package/lib/__templates__/taro/src/app.tsx +9 -0
  67. package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
  68. package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
  69. package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
  70. package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
  71. package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
  72. package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
  73. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
  74. package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
  75. package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
  76. package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
  77. package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
  78. package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
  79. package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
  80. package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
  81. package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
  82. package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
  83. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
  84. package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
  85. package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
  86. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
  87. package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
  88. package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
  89. package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
  90. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
  91. package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
  92. package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
  93. package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
  94. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
  95. package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
  96. package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
  97. package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
  98. package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
  99. package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
  100. package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
  101. package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
  102. package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
  103. package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
  104. package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
  105. package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
  106. package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
  107. package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
  108. package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
  109. package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
  110. package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
  111. package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
  112. package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
  113. package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
  114. package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
  115. package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
  116. package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
  117. package/lib/__templates__/taro/src/lib/measure.ts +115 -0
  118. package/lib/__templates__/taro/src/lib/platform.ts +12 -0
  119. package/lib/__templates__/taro/src/lib/utils.ts +6 -0
  120. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  121. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  122. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
  123. package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
  124. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  125. package/lib/__templates__/templates.json +43 -0
  126. package/lib/__templates__/vite/README.md +190 -11
  127. package/lib/__templates__/vite/_gitignore +1 -0
  128. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  129. package/lib/__templates__/vite/package.json +14 -5
  130. package/lib/__templates__/vite/pnpm-lock.yaml +768 -24
  131. package/lib/__templates__/vite/scripts/build.sh +4 -1
  132. package/lib/__templates__/vite/scripts/dev.sh +9 -2
  133. package/lib/__templates__/vite/scripts/start.sh +9 -3
  134. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  135. package/lib/__templates__/vite/server/server.ts +65 -0
  136. package/lib/__templates__/vite/server/vite.ts +67 -0
  137. package/lib/__templates__/vite/tsconfig.json +4 -3
  138. package/lib/__templates__/vite/vite.config.ts +5 -0
  139. package/lib/cli.js +124 -103
  140. package/package.json +7 -3
  141. package/lib/__templates__/taro/src/app.ts +0 -14
  142. package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
  143. package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
@@ -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
  .:
@@ -111,8 +108,8 @@ importers:
111
108
  specifier: ^1.1.1
112
109
  version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
113
110
  coze-coding-dev-sdk:
114
- specifier: ^0.7.15
115
- version: 0.7.15(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
111
+ specifier: ^0.7.16
112
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
116
113
  date-fns:
117
114
  specifier: ^4.1.0
118
115
  version: 4.1.0
@@ -219,6 +216,12 @@ 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
+ tsx:
223
+ specifier: ^4.19.2
224
+ version: 4.21.0
222
225
  typescript:
223
226
  specifier: ^5
224
227
  version: 5.9.3
@@ -601,156 +604,444 @@ packages:
601
604
  cpu: [ppc64]
602
605
  os: [aix]
603
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
+
604
619
  '@esbuild/android-arm64@0.25.12':
605
620
  resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
606
621
  engines: {node: '>=18'}
607
622
  cpu: [arm64]
608
623
  os: [android]
609
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
+
610
637
  '@esbuild/android-arm@0.25.12':
611
638
  resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
612
639
  engines: {node: '>=18'}
613
640
  cpu: [arm]
614
641
  os: [android]
615
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
+
616
655
  '@esbuild/android-x64@0.25.12':
617
656
  resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
618
657
  engines: {node: '>=18'}
619
658
  cpu: [x64]
620
659
  os: [android]
621
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
+
622
673
  '@esbuild/darwin-arm64@0.25.12':
623
674
  resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
624
675
  engines: {node: '>=18'}
625
676
  cpu: [arm64]
626
677
  os: [darwin]
627
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
+
628
691
  '@esbuild/darwin-x64@0.25.12':
629
692
  resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
630
693
  engines: {node: '>=18'}
631
694
  cpu: [x64]
632
695
  os: [darwin]
633
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
+
634
709
  '@esbuild/freebsd-arm64@0.25.12':
635
710
  resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
636
711
  engines: {node: '>=18'}
637
712
  cpu: [arm64]
638
713
  os: [freebsd]
639
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
+
640
727
  '@esbuild/freebsd-x64@0.25.12':
641
728
  resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
642
729
  engines: {node: '>=18'}
643
730
  cpu: [x64]
644
731
  os: [freebsd]
645
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
+
646
745
  '@esbuild/linux-arm64@0.25.12':
647
746
  resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
648
747
  engines: {node: '>=18'}
649
748
  cpu: [arm64]
650
749
  os: [linux]
651
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
+
652
763
  '@esbuild/linux-arm@0.25.12':
653
764
  resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
654
765
  engines: {node: '>=18'}
655
766
  cpu: [arm]
656
767
  os: [linux]
657
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
+
658
781
  '@esbuild/linux-ia32@0.25.12':
659
782
  resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
660
783
  engines: {node: '>=18'}
661
784
  cpu: [ia32]
662
785
  os: [linux]
663
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
+
664
799
  '@esbuild/linux-loong64@0.25.12':
665
800
  resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
666
801
  engines: {node: '>=18'}
667
802
  cpu: [loong64]
668
803
  os: [linux]
669
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
+
670
817
  '@esbuild/linux-mips64el@0.25.12':
671
818
  resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
672
819
  engines: {node: '>=18'}
673
820
  cpu: [mips64el]
674
821
  os: [linux]
675
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
+
676
835
  '@esbuild/linux-ppc64@0.25.12':
677
836
  resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
678
837
  engines: {node: '>=18'}
679
838
  cpu: [ppc64]
680
839
  os: [linux]
681
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
+
682
853
  '@esbuild/linux-riscv64@0.25.12':
683
854
  resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
684
855
  engines: {node: '>=18'}
685
856
  cpu: [riscv64]
686
857
  os: [linux]
687
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
+
688
871
  '@esbuild/linux-s390x@0.25.12':
689
872
  resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
690
873
  engines: {node: '>=18'}
691
874
  cpu: [s390x]
692
875
  os: [linux]
693
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
+
694
889
  '@esbuild/linux-x64@0.25.12':
695
890
  resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
696
891
  engines: {node: '>=18'}
697
892
  cpu: [x64]
698
893
  os: [linux]
699
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
+
700
901
  '@esbuild/netbsd-arm64@0.25.12':
701
902
  resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
702
903
  engines: {node: '>=18'}
703
904
  cpu: [arm64]
704
905
  os: [netbsd]
705
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
+
706
919
  '@esbuild/netbsd-x64@0.25.12':
707
920
  resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
708
921
  engines: {node: '>=18'}
709
922
  cpu: [x64]
710
923
  os: [netbsd]
711
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
+
712
931
  '@esbuild/openbsd-arm64@0.25.12':
713
932
  resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
714
933
  engines: {node: '>=18'}
715
934
  cpu: [arm64]
716
935
  os: [openbsd]
717
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
+
718
949
  '@esbuild/openbsd-x64@0.25.12':
719
950
  resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
720
951
  engines: {node: '>=18'}
721
952
  cpu: [x64]
722
953
  os: [openbsd]
723
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
+
724
961
  '@esbuild/openharmony-arm64@0.25.12':
725
962
  resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
726
963
  engines: {node: '>=18'}
727
964
  cpu: [arm64]
728
965
  os: [openharmony]
729
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
+
730
979
  '@esbuild/sunos-x64@0.25.12':
731
980
  resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
732
981
  engines: {node: '>=18'}
733
982
  cpu: [x64]
734
983
  os: [sunos]
735
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
+
736
997
  '@esbuild/win32-arm64@0.25.12':
737
998
  resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
738
999
  engines: {node: '>=18'}
739
1000
  cpu: [arm64]
740
1001
  os: [win32]
741
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
+
742
1015
  '@esbuild/win32-ia32@0.25.12':
743
1016
  resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
744
1017
  engines: {node: '>=18'}
745
1018
  cpu: [ia32]
746
1019
  os: [win32]
747
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
+
748
1033
  '@esbuild/win32-x64@0.25.12':
749
1034
  resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
750
1035
  engines: {node: '>=18'}
751
1036
  cpu: [x64]
752
1037
  os: [win32]
753
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
+
754
1045
  '@eslint-community/eslint-utils@4.9.1':
755
1046
  resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
756
1047
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1831,6 +2122,144 @@ packages:
1831
2122
  resolution: {integrity: sha512-J1eI7cIm2IXE6EwhHR1OyoefvobUJEn/vJWEBwOM5uW4JkkLwuVoV9vk++XJyAmKUNQ87gdWZvSWrI2LjfrSug==}
1832
2123
  engines: {node: '>=12.0.0'}
1833
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
+
1834
2263
  '@rtsao/scc@1.1.0':
1835
2264
  resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
1836
2265
 
@@ -2497,6 +2926,11 @@ packages:
2497
2926
  engines: {node: '>=0.4.0'}
2498
2927
  hasBin: true
2499
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
+
2500
2934
  address@1.2.2:
2501
2935
  resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
2502
2936
  engines: {node: '>= 10.0.0'}
@@ -2557,6 +2991,9 @@ packages:
2557
2991
  resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
2558
2992
  engines: {node: '>=14'}
2559
2993
 
2994
+ any-promise@1.3.0:
2995
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
2996
+
2560
2997
  anymatch@3.1.3:
2561
2998
  resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
2562
2999
  engines: {node: '>= 8'}
@@ -2687,10 +3124,20 @@ packages:
2687
3124
  resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
2688
3125
  engines: {node: '>=18'}
2689
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
+
2690
3133
  bytes@3.1.2:
2691
3134
  resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
2692
3135
  engines: {node: '>= 0.8'}
2693
3136
 
3137
+ cac@6.7.14:
3138
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
3139
+ engines: {node: '>=8'}
3140
+
2694
3141
  call-bind-apply-helpers@1.0.2:
2695
3142
  resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
2696
3143
  engines: {node: '>= 0.4'}
@@ -2726,6 +3173,10 @@ packages:
2726
3173
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
2727
3174
  engines: {node: '>= 8.10.0'}
2728
3175
 
3176
+ chokidar@4.0.3:
3177
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
3178
+ engines: {node: '>= 14.16.0'}
3179
+
2729
3180
  chrome-trace-event@1.0.4:
2730
3181
  resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
2731
3182
  engines: {node: '>=6.0'}
@@ -2787,9 +3238,20 @@ packages:
2787
3238
  commander@2.20.3:
2788
3239
  resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
2789
3240
 
3241
+ commander@4.1.1:
3242
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
3243
+ engines: {node: '>= 6'}
3244
+
2790
3245
  concat-map@0.0.1:
2791
3246
  resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
2792
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
+
2793
3255
  console-table-printer@2.15.0:
2794
3256
  resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
2795
3257
 
@@ -2833,8 +3295,8 @@ packages:
2833
3295
  typescript:
2834
3296
  optional: true
2835
3297
 
2836
- coze-coding-dev-sdk@0.7.15:
2837
- resolution: {integrity: sha512-3L69Im84APAgGNqalrrOH05IG0PUCjaKaeLNztMRPe37b0yuc/woqjy7NYeYTjONWWg8aZEFEzCRXNODStDC8Q==}
3298
+ coze-coding-dev-sdk@0.7.16:
3299
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
2838
3300
  engines: {node: '>=18.0.0'}
2839
3301
  hasBin: true
2840
3302
 
@@ -3223,13 +3685,23 @@ packages:
3223
3685
  esbuild-register@3.6.0:
3224
3686
  resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
3225
3687
  peerDependencies:
3226
- 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
3227
3694
 
3228
3695
  esbuild@0.25.12:
3229
3696
  resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
3230
3697
  engines: {node: '>=18'}
3231
3698
  hasBin: true
3232
3699
 
3700
+ esbuild@0.27.3:
3701
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
3702
+ engines: {node: '>=18'}
3703
+ hasBin: true
3704
+
3233
3705
  escalade@3.2.0:
3234
3706
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
3235
3707
  engines: {node: '>=6'}
@@ -3479,6 +3951,9 @@ packages:
3479
3951
  resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
3480
3952
  engines: {node: '>=10'}
3481
3953
 
3954
+ fix-dts-default-cjs-exports@1.0.1:
3955
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
3956
+
3482
3957
  flat-cache@4.0.1:
3483
3958
  resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
3484
3959
  engines: {node: '>=16'}
@@ -3990,6 +4465,10 @@ packages:
3990
4465
  jose@6.1.3:
3991
4466
  resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
3992
4467
 
4468
+ joycon@3.1.1:
4469
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
4470
+ engines: {node: '>=10'}
4471
+
3993
4472
  js-tiktoken@1.0.21:
3994
4473
  resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
3995
4474
 
@@ -4156,9 +4635,17 @@ packages:
4156
4635
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
4157
4636
  engines: {node: '>= 12.0.0'}
4158
4637
 
4638
+ lilconfig@3.1.3:
4639
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
4640
+ engines: {node: '>=14'}
4641
+
4159
4642
  lines-and-columns@1.2.4:
4160
4643
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
4161
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
+
4162
4649
  loader-runner@4.3.1:
4163
4650
  resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
4164
4651
  engines: {node: '>=6.11.5'}
@@ -4265,6 +4752,9 @@ packages:
4265
4752
  minimist@1.2.8:
4266
4753
  resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
4267
4754
 
4755
+ mlly@1.8.1:
4756
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
4757
+
4268
4758
  ms@2.0.0:
4269
4759
  resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
4270
4760
 
@@ -4289,6 +4779,9 @@ packages:
4289
4779
  resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
4290
4780
  engines: {node: ^18.17.0 || >=20.5.0}
4291
4781
 
4782
+ mz@2.7.0:
4783
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
4784
+
4292
4785
  nanoid@3.3.11:
4293
4786
  resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
4294
4787
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -4537,6 +5030,9 @@ packages:
4537
5030
  resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
4538
5031
  engines: {node: '>=8'}
4539
5032
 
5033
+ pathe@2.0.3:
5034
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
5035
+
4540
5036
  pg-connection-string@2.10.1:
4541
5037
  resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
4542
5038
 
@@ -4582,10 +5078,17 @@ packages:
4582
5078
  resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
4583
5079
  engines: {node: '>=12'}
4584
5080
 
5081
+ pirates@4.0.7:
5082
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
5083
+ engines: {node: '>= 6'}
5084
+
4585
5085
  pkce-challenge@5.0.1:
4586
5086
  resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
4587
5087
  engines: {node: '>=16.20.0'}
4588
5088
 
5089
+ pkg-types@1.3.1:
5090
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
5091
+
4589
5092
  pkg-up@3.1.0:
4590
5093
  resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
4591
5094
  engines: {node: '>=8'}
@@ -4594,6 +5097,24 @@ packages:
4594
5097
  resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
4595
5098
  engines: {node: '>= 0.4'}
4596
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
+
4597
5118
  postcss-selector-parser@7.1.1:
4598
5119
  resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
4599
5120
  engines: {node: '>=4'}
@@ -4772,6 +5293,10 @@ packages:
4772
5293
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
4773
5294
  engines: {node: '>=8.10.0'}
4774
5295
 
5296
+ readdirp@4.1.2:
5297
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
5298
+ engines: {node: '>= 14.18.0'}
5299
+
4775
5300
  recast@0.23.11:
4776
5301
  resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
4777
5302
  engines: {node: '>= 4'}
@@ -4810,6 +5335,10 @@ packages:
4810
5335
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
4811
5336
  engines: {node: '>=4'}
4812
5337
 
5338
+ resolve-from@5.0.0:
5339
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
5340
+ engines: {node: '>=8'}
5341
+
4813
5342
  resolve-pkg-maps@1.0.0:
4814
5343
  resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
4815
5344
 
@@ -4833,6 +5362,11 @@ packages:
4833
5362
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
4834
5363
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
4835
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
+
4836
5370
  router@2.2.0:
4837
5371
  resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
4838
5372
  engines: {node: '>= 18'}
@@ -4978,6 +5512,10 @@ packages:
4978
5512
  resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
4979
5513
  engines: {node: '>=0.10.0'}
4980
5514
 
5515
+ source-map@0.7.6:
5516
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
5517
+ engines: {node: '>= 12'}
5518
+
4981
5519
  split2@4.2.0:
4982
5520
  resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
4983
5521
  engines: {node: '>= 10.x'}
@@ -5081,6 +5619,11 @@ packages:
5081
5619
  babel-plugin-macros:
5082
5620
  optional: true
5083
5621
 
5622
+ sucrase@3.35.1:
5623
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
5624
+ engines: {node: '>=16 || 14 >=14.17'}
5625
+ hasBin: true
5626
+
5084
5627
  supports-color@7.2.0:
5085
5628
  resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
5086
5629
  engines: {node: '>=8'}
@@ -5135,9 +5678,19 @@ packages:
5135
5678
  text-table@0.2.0:
5136
5679
  resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
5137
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
+
5138
5688
  tiny-invariant@1.3.3:
5139
5689
  resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
5140
5690
 
5691
+ tinyexec@0.3.2:
5692
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
5693
+
5141
5694
  tinyexec@1.0.2:
5142
5695
  resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
5143
5696
  engines: {node: '>=18'}
@@ -5169,12 +5722,19 @@ packages:
5169
5722
  resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
5170
5723
  engines: {node: '>=16'}
5171
5724
 
5725
+ tree-kill@1.2.2:
5726
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
5727
+ hasBin: true
5728
+
5172
5729
  ts-api-utils@2.4.0:
5173
5730
  resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
5174
5731
  engines: {node: '>=18.12'}
5175
5732
  peerDependencies:
5176
5733
  typescript: '>=4.8.4'
5177
5734
 
5735
+ ts-interface-checker@0.1.13:
5736
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
5737
+
5178
5738
  ts-morph@26.0.0:
5179
5739
  resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==}
5180
5740
 
@@ -5188,6 +5748,30 @@ packages:
5188
5748
  tslib@2.8.1:
5189
5749
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
5190
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
+
5770
+ tsx@4.21.0:
5771
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
5772
+ engines: {node: '>=18.0.0'}
5773
+ hasBin: true
5774
+
5191
5775
  tw-animate-css@1.4.0:
5192
5776
  resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
5193
5777
 
@@ -5231,6 +5815,9 @@ packages:
5231
5815
  engines: {node: '>=14.17'}
5232
5816
  hasBin: true
5233
5817
 
5818
+ ufo@1.6.3:
5819
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
5820
+
5234
5821
  unbox-primitive@1.1.0:
5235
5822
  resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
5236
5823
  engines: {node: '>= 0.4'}
@@ -6242,7 +6829,7 @@ snapshots:
6242
6829
 
6243
6830
  '@esbuild-kit/core-utils@3.3.2':
6244
6831
  dependencies:
6245
- esbuild: 0.25.12
6832
+ esbuild: 0.18.20
6246
6833
  source-map-support: 0.5.21
6247
6834
 
6248
6835
  '@esbuild-kit/esm-loader@2.6.5':
@@ -6253,81 +6840,225 @@ snapshots:
6253
6840
  '@esbuild/aix-ppc64@0.25.12':
6254
6841
  optional: true
6255
6842
 
6843
+ '@esbuild/aix-ppc64@0.27.3':
6844
+ optional: true
6845
+
6846
+ '@esbuild/android-arm64@0.18.20':
6847
+ optional: true
6848
+
6256
6849
  '@esbuild/android-arm64@0.25.12':
6257
6850
  optional: true
6258
6851
 
6852
+ '@esbuild/android-arm64@0.27.3':
6853
+ optional: true
6854
+
6855
+ '@esbuild/android-arm@0.18.20':
6856
+ optional: true
6857
+
6259
6858
  '@esbuild/android-arm@0.25.12':
6260
6859
  optional: true
6261
6860
 
6861
+ '@esbuild/android-arm@0.27.3':
6862
+ optional: true
6863
+
6864
+ '@esbuild/android-x64@0.18.20':
6865
+ optional: true
6866
+
6262
6867
  '@esbuild/android-x64@0.25.12':
6263
6868
  optional: true
6264
6869
 
6870
+ '@esbuild/android-x64@0.27.3':
6871
+ optional: true
6872
+
6873
+ '@esbuild/darwin-arm64@0.18.20':
6874
+ optional: true
6875
+
6265
6876
  '@esbuild/darwin-arm64@0.25.12':
6266
6877
  optional: true
6267
6878
 
6879
+ '@esbuild/darwin-arm64@0.27.3':
6880
+ optional: true
6881
+
6882
+ '@esbuild/darwin-x64@0.18.20':
6883
+ optional: true
6884
+
6268
6885
  '@esbuild/darwin-x64@0.25.12':
6269
6886
  optional: true
6270
6887
 
6888
+ '@esbuild/darwin-x64@0.27.3':
6889
+ optional: true
6890
+
6891
+ '@esbuild/freebsd-arm64@0.18.20':
6892
+ optional: true
6893
+
6271
6894
  '@esbuild/freebsd-arm64@0.25.12':
6272
6895
  optional: true
6273
6896
 
6897
+ '@esbuild/freebsd-arm64@0.27.3':
6898
+ optional: true
6899
+
6900
+ '@esbuild/freebsd-x64@0.18.20':
6901
+ optional: true
6902
+
6274
6903
  '@esbuild/freebsd-x64@0.25.12':
6275
6904
  optional: true
6276
6905
 
6906
+ '@esbuild/freebsd-x64@0.27.3':
6907
+ optional: true
6908
+
6909
+ '@esbuild/linux-arm64@0.18.20':
6910
+ optional: true
6911
+
6277
6912
  '@esbuild/linux-arm64@0.25.12':
6278
6913
  optional: true
6279
6914
 
6915
+ '@esbuild/linux-arm64@0.27.3':
6916
+ optional: true
6917
+
6918
+ '@esbuild/linux-arm@0.18.20':
6919
+ optional: true
6920
+
6280
6921
  '@esbuild/linux-arm@0.25.12':
6281
6922
  optional: true
6282
6923
 
6924
+ '@esbuild/linux-arm@0.27.3':
6925
+ optional: true
6926
+
6927
+ '@esbuild/linux-ia32@0.18.20':
6928
+ optional: true
6929
+
6283
6930
  '@esbuild/linux-ia32@0.25.12':
6284
6931
  optional: true
6285
6932
 
6933
+ '@esbuild/linux-ia32@0.27.3':
6934
+ optional: true
6935
+
6936
+ '@esbuild/linux-loong64@0.18.20':
6937
+ optional: true
6938
+
6286
6939
  '@esbuild/linux-loong64@0.25.12':
6287
6940
  optional: true
6288
6941
 
6942
+ '@esbuild/linux-loong64@0.27.3':
6943
+ optional: true
6944
+
6945
+ '@esbuild/linux-mips64el@0.18.20':
6946
+ optional: true
6947
+
6289
6948
  '@esbuild/linux-mips64el@0.25.12':
6290
6949
  optional: true
6291
6950
 
6951
+ '@esbuild/linux-mips64el@0.27.3':
6952
+ optional: true
6953
+
6954
+ '@esbuild/linux-ppc64@0.18.20':
6955
+ optional: true
6956
+
6292
6957
  '@esbuild/linux-ppc64@0.25.12':
6293
6958
  optional: true
6294
6959
 
6960
+ '@esbuild/linux-ppc64@0.27.3':
6961
+ optional: true
6962
+
6963
+ '@esbuild/linux-riscv64@0.18.20':
6964
+ optional: true
6965
+
6295
6966
  '@esbuild/linux-riscv64@0.25.12':
6296
6967
  optional: true
6297
6968
 
6969
+ '@esbuild/linux-riscv64@0.27.3':
6970
+ optional: true
6971
+
6972
+ '@esbuild/linux-s390x@0.18.20':
6973
+ optional: true
6974
+
6298
6975
  '@esbuild/linux-s390x@0.25.12':
6299
6976
  optional: true
6300
6977
 
6978
+ '@esbuild/linux-s390x@0.27.3':
6979
+ optional: true
6980
+
6981
+ '@esbuild/linux-x64@0.18.20':
6982
+ optional: true
6983
+
6301
6984
  '@esbuild/linux-x64@0.25.12':
6302
6985
  optional: true
6303
6986
 
6987
+ '@esbuild/linux-x64@0.27.3':
6988
+ optional: true
6989
+
6304
6990
  '@esbuild/netbsd-arm64@0.25.12':
6305
6991
  optional: true
6306
6992
 
6993
+ '@esbuild/netbsd-arm64@0.27.3':
6994
+ optional: true
6995
+
6996
+ '@esbuild/netbsd-x64@0.18.20':
6997
+ optional: true
6998
+
6307
6999
  '@esbuild/netbsd-x64@0.25.12':
6308
7000
  optional: true
6309
7001
 
7002
+ '@esbuild/netbsd-x64@0.27.3':
7003
+ optional: true
7004
+
6310
7005
  '@esbuild/openbsd-arm64@0.25.12':
6311
7006
  optional: true
6312
7007
 
7008
+ '@esbuild/openbsd-arm64@0.27.3':
7009
+ optional: true
7010
+
7011
+ '@esbuild/openbsd-x64@0.18.20':
7012
+ optional: true
7013
+
6313
7014
  '@esbuild/openbsd-x64@0.25.12':
6314
7015
  optional: true
6315
7016
 
7017
+ '@esbuild/openbsd-x64@0.27.3':
7018
+ optional: true
7019
+
6316
7020
  '@esbuild/openharmony-arm64@0.25.12':
6317
7021
  optional: true
6318
7022
 
7023
+ '@esbuild/openharmony-arm64@0.27.3':
7024
+ optional: true
7025
+
7026
+ '@esbuild/sunos-x64@0.18.20':
7027
+ optional: true
7028
+
6319
7029
  '@esbuild/sunos-x64@0.25.12':
6320
7030
  optional: true
6321
7031
 
7032
+ '@esbuild/sunos-x64@0.27.3':
7033
+ optional: true
7034
+
7035
+ '@esbuild/win32-arm64@0.18.20':
7036
+ optional: true
7037
+
6322
7038
  '@esbuild/win32-arm64@0.25.12':
6323
7039
  optional: true
6324
7040
 
7041
+ '@esbuild/win32-arm64@0.27.3':
7042
+ optional: true
7043
+
7044
+ '@esbuild/win32-ia32@0.18.20':
7045
+ optional: true
7046
+
6325
7047
  '@esbuild/win32-ia32@0.25.12':
6326
7048
  optional: true
6327
7049
 
7050
+ '@esbuild/win32-ia32@0.27.3':
7051
+ optional: true
7052
+
7053
+ '@esbuild/win32-x64@0.18.20':
7054
+ optional: true
7055
+
6328
7056
  '@esbuild/win32-x64@0.25.12':
6329
7057
  optional: true
6330
7058
 
7059
+ '@esbuild/win32-x64@0.27.3':
7060
+ optional: true
7061
+
6331
7062
  '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
6332
7063
  dependencies:
6333
7064
  eslint: 9.39.2(jiti@2.6.1)
@@ -7421,6 +8152,81 @@ snapshots:
7421
8152
  - vue-template-compiler
7422
8153
  - webpack
7423
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
+
7424
8230
  '@rtsao/scc@1.1.0': {}
7425
8231
 
7426
8232
  '@sec-ant/readable-stream@0.4.1': {}
@@ -8210,6 +9016,8 @@ snapshots:
8210
9016
 
8211
9017
  acorn@8.15.0: {}
8212
9018
 
9019
+ acorn@8.16.0: {}
9020
+
8213
9021
  address@1.2.2: {}
8214
9022
 
8215
9023
  agent-base@7.1.4: {}
@@ -8257,6 +9065,8 @@ snapshots:
8257
9065
 
8258
9066
  ansis@4.2.0: {}
8259
9067
 
9068
+ any-promise@1.3.0: {}
9069
+
8260
9070
  anymatch@3.1.3:
8261
9071
  dependencies:
8262
9072
  normalize-path: 3.0.0
@@ -8423,8 +9233,15 @@ snapshots:
8423
9233
  dependencies:
8424
9234
  run-applescript: 7.1.0
8425
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
+
8426
9241
  bytes@3.1.2: {}
8427
9242
 
9243
+ cac@6.7.14: {}
9244
+
8428
9245
  call-bind-apply-helpers@1.0.2:
8429
9246
  dependencies:
8430
9247
  es-errors: 1.3.0
@@ -8467,6 +9284,10 @@ snapshots:
8467
9284
  optionalDependencies:
8468
9285
  fsevents: 2.3.3
8469
9286
 
9287
+ chokidar@4.0.3:
9288
+ dependencies:
9289
+ readdirp: 4.1.2
9290
+
8470
9291
  chrome-trace-event@1.0.4: {}
8471
9292
 
8472
9293
  class-variance-authority@0.7.1:
@@ -8521,8 +9342,14 @@ snapshots:
8521
9342
 
8522
9343
  commander@2.20.3: {}
8523
9344
 
9345
+ commander@4.1.1: {}
9346
+
8524
9347
  concat-map@0.0.1: {}
8525
9348
 
9349
+ confbox@0.1.8: {}
9350
+
9351
+ consola@3.4.2: {}
9352
+
8526
9353
  console-table-printer@2.15.0:
8527
9354
  dependencies:
8528
9355
  simple-wcswidth: 1.1.2
@@ -8561,19 +9388,22 @@ snapshots:
8561
9388
  optionalDependencies:
8562
9389
  typescript: 5.9.3
8563
9390
 
8564
- coze-coding-dev-sdk@0.7.15(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
9391
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
8565
9392
  dependencies:
8566
9393
  '@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
8567
9394
  '@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
9395
+ '@supabase/supabase-js': 2.95.3
8568
9396
  axios: 1.13.4
8569
9397
  pg: 8.17.2
8570
9398
  transitivePeerDependencies:
8571
9399
  - '@opentelemetry/api'
8572
9400
  - '@opentelemetry/exporter-trace-otlp-proto'
8573
9401
  - '@opentelemetry/sdk-trace-base'
9402
+ - bufferutil
8574
9403
  - debug
8575
9404
  - openai
8576
9405
  - pg-native
9406
+ - utf-8-validate
8577
9407
  - ws
8578
9408
 
8579
9409
  cross-spawn@7.0.6:
@@ -8906,6 +9736,31 @@ snapshots:
8906
9736
  transitivePeerDependencies:
8907
9737
  - supports-color
8908
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
+
8909
9764
  esbuild@0.25.12:
8910
9765
  optionalDependencies:
8911
9766
  '@esbuild/aix-ppc64': 0.25.12
@@ -8935,6 +9790,35 @@ snapshots:
8935
9790
  '@esbuild/win32-ia32': 0.25.12
8936
9791
  '@esbuild/win32-x64': 0.25.12
8937
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
+
8938
9822
  escalade@3.2.0: {}
8939
9823
 
8940
9824
  escape-html@1.0.3: {}
@@ -9306,6 +10190,12 @@ snapshots:
9306
10190
  locate-path: 6.0.0
9307
10191
  path-exists: 4.0.0
9308
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
+
9309
10199
  flat-cache@4.0.1:
9310
10200
  dependencies:
9311
10201
  flatted: 3.3.3
@@ -9779,6 +10669,8 @@ snapshots:
9779
10669
 
9780
10670
  jose@6.1.3: {}
9781
10671
 
10672
+ joycon@3.1.1: {}
10673
+
9782
10674
  js-tiktoken@1.0.21:
9783
10675
  dependencies:
9784
10676
  base64-js: 1.5.1
@@ -9903,8 +10795,12 @@ snapshots:
9903
10795
  lightningcss-win32-arm64-msvc: 1.30.2
9904
10796
  lightningcss-win32-x64-msvc: 1.30.2
9905
10797
 
10798
+ lilconfig@3.1.3: {}
10799
+
9906
10800
  lines-and-columns@1.2.4: {}
9907
10801
 
10802
+ load-tsconfig@0.2.5: {}
10803
+
9908
10804
  loader-runner@4.3.1: {}
9909
10805
 
9910
10806
  loader-utils@3.3.1: {}
@@ -9992,6 +10888,13 @@ snapshots:
9992
10888
 
9993
10889
  minimist@1.2.8: {}
9994
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
+
9995
10898
  ms@2.0.0: {}
9996
10899
 
9997
10900
  ms@2.1.3: {}
@@ -10025,6 +10928,12 @@ snapshots:
10025
10928
 
10026
10929
  mute-stream@2.0.0: {}
10027
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
+
10028
10937
  nanoid@3.3.11: {}
10029
10938
 
10030
10939
  napi-postinstall@0.3.4: {}
@@ -10264,6 +11173,8 @@ snapshots:
10264
11173
 
10265
11174
  path-type@4.0.0: {}
10266
11175
 
11176
+ pathe@2.0.3: {}
11177
+
10267
11178
  pg-connection-string@2.10.1: {}
10268
11179
 
10269
11180
  pg-int8@1.0.1: {}
@@ -10302,14 +11213,31 @@ snapshots:
10302
11213
 
10303
11214
  picomatch@4.0.3: {}
10304
11215
 
11216
+ pirates@4.0.7: {}
11217
+
10305
11218
  pkce-challenge@5.0.1: {}
10306
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
+
10307
11226
  pkg-up@3.1.0:
10308
11227
  dependencies:
10309
11228
  find-up: 3.0.0
10310
11229
 
10311
11230
  possible-typed-array-names@1.1.0: {}
10312
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
+
10313
11241
  postcss-selector-parser@7.1.1:
10314
11242
  dependencies:
10315
11243
  cssesc: 3.0.0
@@ -10521,6 +11449,8 @@ snapshots:
10521
11449
  dependencies:
10522
11450
  picomatch: 2.3.1
10523
11451
 
11452
+ readdirp@4.1.2: {}
11453
+
10524
11454
  recast@0.23.11:
10525
11455
  dependencies:
10526
11456
  ast-types: 0.16.1
@@ -10576,6 +11506,8 @@ snapshots:
10576
11506
 
10577
11507
  resolve-from@4.0.0: {}
10578
11508
 
11509
+ resolve-from@5.0.0: {}
11510
+
10579
11511
  resolve-pkg-maps@1.0.0: {}
10580
11512
 
10581
11513
  resolve@1.22.11:
@@ -10599,6 +11531,37 @@ snapshots:
10599
11531
 
10600
11532
  reusify@1.1.0: {}
10601
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
+
10602
11565
  router@2.2.0:
10603
11566
  dependencies:
10604
11567
  debug: 4.4.3
@@ -10846,6 +11809,8 @@ snapshots:
10846
11809
 
10847
11810
  source-map@0.6.1: {}
10848
11811
 
11812
+ source-map@0.7.6: {}
11813
+
10849
11814
  split2@4.2.0: {}
10850
11815
 
10851
11816
  stable-hash@0.0.5: {}
@@ -10963,6 +11928,16 @@ snapshots:
10963
11928
  optionalDependencies:
10964
11929
  '@babel/core': 7.28.6
10965
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
+
10966
11941
  supports-color@7.2.0:
10967
11942
  dependencies:
10968
11943
  has-flag: 4.0.0
@@ -11003,8 +11978,18 @@ snapshots:
11003
11978
 
11004
11979
  text-table@0.2.0: {}
11005
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
+
11006
11989
  tiny-invariant@1.3.3: {}
11007
11990
 
11991
+ tinyexec@0.3.2: {}
11992
+
11008
11993
  tinyexec@1.0.2: {}
11009
11994
 
11010
11995
  tinyglobby@0.2.15:
@@ -11030,10 +12015,14 @@ snapshots:
11030
12015
  dependencies:
11031
12016
  tldts: 7.0.19
11032
12017
 
12018
+ tree-kill@1.2.2: {}
12019
+
11033
12020
  ts-api-utils@2.4.0(typescript@5.9.3):
11034
12021
  dependencies:
11035
12022
  typescript: 5.9.3
11036
12023
 
12024
+ ts-interface-checker@0.1.13: {}
12025
+
11037
12026
  ts-morph@26.0.0:
11038
12027
  dependencies:
11039
12028
  '@ts-morph/common': 0.27.0
@@ -11054,6 +12043,41 @@ snapshots:
11054
12043
 
11055
12044
  tslib@2.8.1: {}
11056
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
+
12074
+ tsx@4.21.0:
12075
+ dependencies:
12076
+ esbuild: 0.27.3
12077
+ get-tsconfig: 4.13.0
12078
+ optionalDependencies:
12079
+ fsevents: 2.3.3
12080
+
11057
12081
  tw-animate-css@1.4.0: {}
11058
12082
 
11059
12083
  type-check@0.4.0:
@@ -11116,6 +12140,8 @@ snapshots:
11116
12140
 
11117
12141
  typescript@5.9.3: {}
11118
12142
 
12143
+ ufo@1.6.3: {}
12144
+
11119
12145
  unbox-primitive@1.1.0:
11120
12146
  dependencies:
11121
12147
  call-bound: 1.0.4