@coze-arch/cli 0.0.1-alpha.e665f4 → 0.0.1-alpha.e70f72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
- package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
- package/lib/__templates__/expo/client/metro.config.js +3 -0
- package/lib/__templates__/expo/client/package.json +35 -35
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/expo/package.json +1 -1
- package/lib/__templates__/expo/pnpm-lock.yaml +394 -221
- package/lib/__templates__/expo/server/package.json +9 -7
- package/lib/__templates__/expo/server/src/index.ts +1 -0
- package/lib/__templates__/expo/template.config.js +1 -1
- package/lib/__templates__/native-static/.coze +11 -0
- package/lib/__templates__/native-static/index.html +33 -0
- package/lib/__templates__/native-static/styles/main.css +136 -0
- package/lib/__templates__/native-static/template.config.js +22 -0
- package/lib/__templates__/nextjs/README.md +5 -0
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -2
- package/lib/__templates__/nextjs/package.json +5 -6
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1145 -109
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +4 -4
- package/lib/__templates__/nextjs/scripts/start.sh +1 -1
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
- package/lib/__templates__/nextjs/src/app/page.tsx +4 -3
- package/lib/__templates__/nextjs/src/server.ts +35 -0
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-vue/.coze +12 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/nuxt-vue/_npmrc +23 -0
- package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
- package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
- package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
- package/lib/__templates__/nuxt-vue/package.json +35 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
- package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +32 -0
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +15 -0
- package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-vue/template.config.js +87 -0
- package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +2 -2
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +4 -3
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +117 -24
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
- package/lib/__templates__/taro/README.md +81 -17
- package/lib/__templates__/taro/config/index.ts +87 -37
- package/lib/__templates__/taro/config/prod.ts +4 -5
- package/lib/__templates__/taro/eslint.config.mjs +27 -4
- package/lib/__templates__/taro/package.json +16 -4
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +785 -115
- package/lib/__templates__/taro/server/package.json +3 -1
- package/lib/__templates__/taro/server/src/main.ts +14 -2
- package/lib/__templates__/taro/src/app.css +18 -18
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/index.html +20 -1
- package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/templates.json +43 -0
- package/lib/__templates__/vite/README.md +190 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +14 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +820 -1593
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +5 -4
- package/lib/__templates__/vite/scripts/start.sh +3 -3
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/server.ts +55 -0
- package/lib/__templates__/vite/server/vite.ts +71 -0
- package/lib/__templates__/vite/src/main.ts +2 -2
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/__templates__/vite/vite.config.ts +1 -0
- package/lib/cli.js +123 -156
- package/package.json +7 -3
- package/lib/__templates__/taro/src/app.ts +0 -14
- package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
- package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
- /package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +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
|
.:
|
|
@@ -98,6 +95,9 @@ importers:
|
|
|
98
95
|
'@radix-ui/react-tooltip':
|
|
99
96
|
specifier: ^1.2.8
|
|
100
97
|
version: 1.2.8(@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)
|
|
98
|
+
'@supabase/supabase-js':
|
|
99
|
+
specifier: 2.95.3
|
|
100
|
+
version: 2.95.3
|
|
101
101
|
class-variance-authority:
|
|
102
102
|
specifier: ^0.7.1
|
|
103
103
|
version: 0.7.1
|
|
@@ -108,11 +108,14 @@ importers:
|
|
|
108
108
|
specifier: ^1.1.1
|
|
109
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)
|
|
110
110
|
coze-coding-dev-sdk:
|
|
111
|
-
specifier: ^0.7.
|
|
112
|
-
version: 0.7.
|
|
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)
|
|
113
113
|
date-fns:
|
|
114
114
|
specifier: ^4.1.0
|
|
115
115
|
version: 4.1.0
|
|
116
|
+
dotenv:
|
|
117
|
+
specifier: ^17.2.3
|
|
118
|
+
version: 17.2.3
|
|
116
119
|
drizzle-kit:
|
|
117
120
|
specifier: ^0.31.8
|
|
118
121
|
version: 0.31.8
|
|
@@ -213,6 +216,12 @@ importers:
|
|
|
213
216
|
tailwindcss:
|
|
214
217
|
specifier: ^4
|
|
215
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
|
|
216
225
|
typescript:
|
|
217
226
|
specifier: ^5
|
|
218
227
|
version: 5.9.3
|
|
@@ -595,156 +604,444 @@ packages:
|
|
|
595
604
|
cpu: [ppc64]
|
|
596
605
|
os: [aix]
|
|
597
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
|
+
|
|
598
619
|
'@esbuild/android-arm64@0.25.12':
|
|
599
620
|
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
600
621
|
engines: {node: '>=18'}
|
|
601
622
|
cpu: [arm64]
|
|
602
623
|
os: [android]
|
|
603
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
|
+
|
|
604
637
|
'@esbuild/android-arm@0.25.12':
|
|
605
638
|
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
606
639
|
engines: {node: '>=18'}
|
|
607
640
|
cpu: [arm]
|
|
608
641
|
os: [android]
|
|
609
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
|
+
|
|
610
655
|
'@esbuild/android-x64@0.25.12':
|
|
611
656
|
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
612
657
|
engines: {node: '>=18'}
|
|
613
658
|
cpu: [x64]
|
|
614
659
|
os: [android]
|
|
615
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
|
+
|
|
616
673
|
'@esbuild/darwin-arm64@0.25.12':
|
|
617
674
|
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
618
675
|
engines: {node: '>=18'}
|
|
619
676
|
cpu: [arm64]
|
|
620
677
|
os: [darwin]
|
|
621
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
|
+
|
|
622
691
|
'@esbuild/darwin-x64@0.25.12':
|
|
623
692
|
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
624
693
|
engines: {node: '>=18'}
|
|
625
694
|
cpu: [x64]
|
|
626
695
|
os: [darwin]
|
|
627
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
|
+
|
|
628
709
|
'@esbuild/freebsd-arm64@0.25.12':
|
|
629
710
|
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
630
711
|
engines: {node: '>=18'}
|
|
631
712
|
cpu: [arm64]
|
|
632
713
|
os: [freebsd]
|
|
633
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
|
+
|
|
634
727
|
'@esbuild/freebsd-x64@0.25.12':
|
|
635
728
|
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
636
729
|
engines: {node: '>=18'}
|
|
637
730
|
cpu: [x64]
|
|
638
731
|
os: [freebsd]
|
|
639
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
|
+
|
|
640
745
|
'@esbuild/linux-arm64@0.25.12':
|
|
641
746
|
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
642
747
|
engines: {node: '>=18'}
|
|
643
748
|
cpu: [arm64]
|
|
644
749
|
os: [linux]
|
|
645
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
|
+
|
|
646
763
|
'@esbuild/linux-arm@0.25.12':
|
|
647
764
|
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
648
765
|
engines: {node: '>=18'}
|
|
649
766
|
cpu: [arm]
|
|
650
767
|
os: [linux]
|
|
651
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
|
+
|
|
652
781
|
'@esbuild/linux-ia32@0.25.12':
|
|
653
782
|
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
654
783
|
engines: {node: '>=18'}
|
|
655
784
|
cpu: [ia32]
|
|
656
785
|
os: [linux]
|
|
657
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
|
+
|
|
658
799
|
'@esbuild/linux-loong64@0.25.12':
|
|
659
800
|
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
660
801
|
engines: {node: '>=18'}
|
|
661
802
|
cpu: [loong64]
|
|
662
803
|
os: [linux]
|
|
663
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
|
+
|
|
664
817
|
'@esbuild/linux-mips64el@0.25.12':
|
|
665
818
|
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
666
819
|
engines: {node: '>=18'}
|
|
667
820
|
cpu: [mips64el]
|
|
668
821
|
os: [linux]
|
|
669
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
|
+
|
|
670
835
|
'@esbuild/linux-ppc64@0.25.12':
|
|
671
836
|
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
672
837
|
engines: {node: '>=18'}
|
|
673
838
|
cpu: [ppc64]
|
|
674
839
|
os: [linux]
|
|
675
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
|
+
|
|
676
853
|
'@esbuild/linux-riscv64@0.25.12':
|
|
677
854
|
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
678
855
|
engines: {node: '>=18'}
|
|
679
856
|
cpu: [riscv64]
|
|
680
857
|
os: [linux]
|
|
681
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
|
+
|
|
682
871
|
'@esbuild/linux-s390x@0.25.12':
|
|
683
872
|
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
684
873
|
engines: {node: '>=18'}
|
|
685
874
|
cpu: [s390x]
|
|
686
875
|
os: [linux]
|
|
687
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
|
+
|
|
688
889
|
'@esbuild/linux-x64@0.25.12':
|
|
689
890
|
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
690
891
|
engines: {node: '>=18'}
|
|
691
892
|
cpu: [x64]
|
|
692
893
|
os: [linux]
|
|
693
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
|
+
|
|
694
901
|
'@esbuild/netbsd-arm64@0.25.12':
|
|
695
902
|
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
696
903
|
engines: {node: '>=18'}
|
|
697
904
|
cpu: [arm64]
|
|
698
905
|
os: [netbsd]
|
|
699
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
|
+
|
|
700
919
|
'@esbuild/netbsd-x64@0.25.12':
|
|
701
920
|
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
702
921
|
engines: {node: '>=18'}
|
|
703
922
|
cpu: [x64]
|
|
704
923
|
os: [netbsd]
|
|
705
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
|
+
|
|
706
931
|
'@esbuild/openbsd-arm64@0.25.12':
|
|
707
932
|
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
708
933
|
engines: {node: '>=18'}
|
|
709
934
|
cpu: [arm64]
|
|
710
935
|
os: [openbsd]
|
|
711
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
|
+
|
|
712
949
|
'@esbuild/openbsd-x64@0.25.12':
|
|
713
950
|
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
714
951
|
engines: {node: '>=18'}
|
|
715
952
|
cpu: [x64]
|
|
716
953
|
os: [openbsd]
|
|
717
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
|
+
|
|
718
961
|
'@esbuild/openharmony-arm64@0.25.12':
|
|
719
962
|
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
720
963
|
engines: {node: '>=18'}
|
|
721
964
|
cpu: [arm64]
|
|
722
965
|
os: [openharmony]
|
|
723
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
|
+
|
|
724
979
|
'@esbuild/sunos-x64@0.25.12':
|
|
725
980
|
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
726
981
|
engines: {node: '>=18'}
|
|
727
982
|
cpu: [x64]
|
|
728
983
|
os: [sunos]
|
|
729
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
|
+
|
|
730
997
|
'@esbuild/win32-arm64@0.25.12':
|
|
731
998
|
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
732
999
|
engines: {node: '>=18'}
|
|
733
1000
|
cpu: [arm64]
|
|
734
1001
|
os: [win32]
|
|
735
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
|
+
|
|
736
1015
|
'@esbuild/win32-ia32@0.25.12':
|
|
737
1016
|
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
738
1017
|
engines: {node: '>=18'}
|
|
739
1018
|
cpu: [ia32]
|
|
740
1019
|
os: [win32]
|
|
741
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
|
+
|
|
742
1033
|
'@esbuild/win32-x64@0.25.12':
|
|
743
1034
|
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
744
1035
|
engines: {node: '>=18'}
|
|
745
1036
|
cpu: [x64]
|
|
746
1037
|
os: [win32]
|
|
747
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
|
+
|
|
748
1045
|
'@eslint-community/eslint-utils@4.9.1':
|
|
749
1046
|
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
750
1047
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
@@ -1825,6 +2122,144 @@ packages:
|
|
|
1825
2122
|
resolution: {integrity: sha512-J1eI7cIm2IXE6EwhHR1OyoefvobUJEn/vJWEBwOM5uW4JkkLwuVoV9vk++XJyAmKUNQ87gdWZvSWrI2LjfrSug==}
|
|
1826
2123
|
engines: {node: '>=12.0.0'}
|
|
1827
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
|
+
|
|
1828
2263
|
'@rtsao/scc@1.1.0':
|
|
1829
2264
|
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
|
|
1830
2265
|
|
|
@@ -2054,6 +2489,30 @@ packages:
|
|
|
2054
2489
|
'@standard-schema/utils@0.3.0':
|
|
2055
2490
|
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
2056
2491
|
|
|
2492
|
+
'@supabase/auth-js@2.95.3':
|
|
2493
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
2494
|
+
engines: {node: '>=20.0.0'}
|
|
2495
|
+
|
|
2496
|
+
'@supabase/functions-js@2.95.3':
|
|
2497
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
2498
|
+
engines: {node: '>=20.0.0'}
|
|
2499
|
+
|
|
2500
|
+
'@supabase/postgrest-js@2.95.3':
|
|
2501
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
2502
|
+
engines: {node: '>=20.0.0'}
|
|
2503
|
+
|
|
2504
|
+
'@supabase/realtime-js@2.95.3':
|
|
2505
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
2506
|
+
engines: {node: '>=20.0.0'}
|
|
2507
|
+
|
|
2508
|
+
'@supabase/storage-js@2.95.3':
|
|
2509
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
2510
|
+
engines: {node: '>=20.0.0'}
|
|
2511
|
+
|
|
2512
|
+
'@supabase/supabase-js@2.95.3':
|
|
2513
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
2514
|
+
engines: {node: '>=20.0.0'}
|
|
2515
|
+
|
|
2057
2516
|
'@swc/helpers@0.5.15':
|
|
2058
2517
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
2059
2518
|
|
|
@@ -2206,6 +2665,9 @@ packages:
|
|
|
2206
2665
|
'@types/pg@8.16.0':
|
|
2207
2666
|
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2208
2667
|
|
|
2668
|
+
'@types/phoenix@1.6.7':
|
|
2669
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
2670
|
+
|
|
2209
2671
|
'@types/react-dom@19.2.3':
|
|
2210
2672
|
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
2211
2673
|
peerDependencies:
|
|
@@ -2228,6 +2690,9 @@ packages:
|
|
|
2228
2690
|
'@types/validate-npm-package-name@4.0.2':
|
|
2229
2691
|
resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==}
|
|
2230
2692
|
|
|
2693
|
+
'@types/ws@8.18.1':
|
|
2694
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
2695
|
+
|
|
2231
2696
|
'@typescript-eslint/eslint-plugin@8.54.0':
|
|
2232
2697
|
resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
|
|
2233
2698
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -2461,6 +2926,11 @@ packages:
|
|
|
2461
2926
|
engines: {node: '>=0.4.0'}
|
|
2462
2927
|
hasBin: true
|
|
2463
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
|
+
|
|
2464
2934
|
address@1.2.2:
|
|
2465
2935
|
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
|
|
2466
2936
|
engines: {node: '>= 10.0.0'}
|
|
@@ -2521,6 +2991,9 @@ packages:
|
|
|
2521
2991
|
resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
|
|
2522
2992
|
engines: {node: '>=14'}
|
|
2523
2993
|
|
|
2994
|
+
any-promise@1.3.0:
|
|
2995
|
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
|
2996
|
+
|
|
2524
2997
|
anymatch@3.1.3:
|
|
2525
2998
|
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
2526
2999
|
engines: {node: '>= 8'}
|
|
@@ -2651,10 +3124,20 @@ packages:
|
|
|
2651
3124
|
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
|
|
2652
3125
|
engines: {node: '>=18'}
|
|
2653
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
|
+
|
|
2654
3133
|
bytes@3.1.2:
|
|
2655
3134
|
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
2656
3135
|
engines: {node: '>= 0.8'}
|
|
2657
3136
|
|
|
3137
|
+
cac@6.7.14:
|
|
3138
|
+
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
|
|
3139
|
+
engines: {node: '>=8'}
|
|
3140
|
+
|
|
2658
3141
|
call-bind-apply-helpers@1.0.2:
|
|
2659
3142
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
2660
3143
|
engines: {node: '>= 0.4'}
|
|
@@ -2690,6 +3173,10 @@ packages:
|
|
|
2690
3173
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
2691
3174
|
engines: {node: '>= 8.10.0'}
|
|
2692
3175
|
|
|
3176
|
+
chokidar@4.0.3:
|
|
3177
|
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
|
3178
|
+
engines: {node: '>= 14.16.0'}
|
|
3179
|
+
|
|
2693
3180
|
chrome-trace-event@1.0.4:
|
|
2694
3181
|
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
|
|
2695
3182
|
engines: {node: '>=6.0'}
|
|
@@ -2705,10 +3192,6 @@ packages:
|
|
|
2705
3192
|
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
2706
3193
|
engines: {node: '>=6'}
|
|
2707
3194
|
|
|
2708
|
-
cli-spinners@3.4.0:
|
|
2709
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
2710
|
-
engines: {node: '>=18.20'}
|
|
2711
|
-
|
|
2712
3195
|
cli-width@4.1.0:
|
|
2713
3196
|
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
|
|
2714
3197
|
engines: {node: '>= 12'}
|
|
@@ -2755,9 +3238,20 @@ packages:
|
|
|
2755
3238
|
commander@2.20.3:
|
|
2756
3239
|
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
2757
3240
|
|
|
3241
|
+
commander@4.1.1:
|
|
3242
|
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
3243
|
+
engines: {node: '>= 6'}
|
|
3244
|
+
|
|
2758
3245
|
concat-map@0.0.1:
|
|
2759
3246
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
2760
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
|
+
|
|
2761
3255
|
console-table-printer@2.15.0:
|
|
2762
3256
|
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
2763
3257
|
|
|
@@ -2801,8 +3295,8 @@ packages:
|
|
|
2801
3295
|
typescript:
|
|
2802
3296
|
optional: true
|
|
2803
3297
|
|
|
2804
|
-
coze-coding-dev-sdk@0.7.
|
|
2805
|
-
resolution: {integrity: sha512-
|
|
3298
|
+
coze-coding-dev-sdk@0.7.16:
|
|
3299
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
2806
3300
|
engines: {node: '>=18.0.0'}
|
|
2807
3301
|
hasBin: true
|
|
2808
3302
|
|
|
@@ -3191,13 +3685,23 @@ packages:
|
|
|
3191
3685
|
esbuild-register@3.6.0:
|
|
3192
3686
|
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
3193
3687
|
peerDependencies:
|
|
3194
|
-
esbuild:
|
|
3688
|
+
esbuild: '>=0.12 <1'
|
|
3689
|
+
|
|
3690
|
+
esbuild@0.18.20:
|
|
3691
|
+
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
|
3692
|
+
engines: {node: '>=12'}
|
|
3693
|
+
hasBin: true
|
|
3195
3694
|
|
|
3196
3695
|
esbuild@0.25.12:
|
|
3197
3696
|
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
3198
3697
|
engines: {node: '>=18'}
|
|
3199
3698
|
hasBin: true
|
|
3200
3699
|
|
|
3700
|
+
esbuild@0.27.3:
|
|
3701
|
+
resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
|
|
3702
|
+
engines: {node: '>=18'}
|
|
3703
|
+
hasBin: true
|
|
3704
|
+
|
|
3201
3705
|
escalade@3.2.0:
|
|
3202
3706
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
3203
3707
|
engines: {node: '>=6'}
|
|
@@ -3447,6 +3951,9 @@ packages:
|
|
|
3447
3951
|
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
3448
3952
|
engines: {node: '>=10'}
|
|
3449
3953
|
|
|
3954
|
+
fix-dts-default-cjs-exports@1.0.1:
|
|
3955
|
+
resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
|
|
3956
|
+
|
|
3450
3957
|
flat-cache@4.0.1:
|
|
3451
3958
|
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
3452
3959
|
engines: {node: '>=16'}
|
|
@@ -3692,6 +4199,10 @@ packages:
|
|
|
3692
4199
|
resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
|
|
3693
4200
|
engines: {node: '>=18.18.0'}
|
|
3694
4201
|
|
|
4202
|
+
iceberg-js@0.8.1:
|
|
4203
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
4204
|
+
engines: {node: '>=20.0.0'}
|
|
4205
|
+
|
|
3695
4206
|
iconv-lite@0.7.2:
|
|
3696
4207
|
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
|
3697
4208
|
engines: {node: '>=0.10.0'}
|
|
@@ -3954,6 +4465,10 @@ packages:
|
|
|
3954
4465
|
jose@6.1.3:
|
|
3955
4466
|
resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
|
|
3956
4467
|
|
|
4468
|
+
joycon@3.1.1:
|
|
4469
|
+
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
|
4470
|
+
engines: {node: '>=10'}
|
|
4471
|
+
|
|
3957
4472
|
js-tiktoken@1.0.21:
|
|
3958
4473
|
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
3959
4474
|
|
|
@@ -4120,9 +4635,17 @@ packages:
|
|
|
4120
4635
|
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
|
|
4121
4636
|
engines: {node: '>= 12.0.0'}
|
|
4122
4637
|
|
|
4638
|
+
lilconfig@3.1.3:
|
|
4639
|
+
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
|
|
4640
|
+
engines: {node: '>=14'}
|
|
4641
|
+
|
|
4123
4642
|
lines-and-columns@1.2.4:
|
|
4124
4643
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
4125
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
|
+
|
|
4126
4649
|
loader-runner@4.3.1:
|
|
4127
4650
|
resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
|
|
4128
4651
|
engines: {node: '>=6.11.5'}
|
|
@@ -4149,10 +4672,6 @@ packages:
|
|
|
4149
4672
|
resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
|
|
4150
4673
|
engines: {node: '>=18'}
|
|
4151
4674
|
|
|
4152
|
-
log-symbols@7.0.1:
|
|
4153
|
-
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
4154
|
-
engines: {node: '>=18'}
|
|
4155
|
-
|
|
4156
4675
|
loose-envify@1.4.0:
|
|
4157
4676
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
4158
4677
|
hasBin: true
|
|
@@ -4233,6 +4752,9 @@ packages:
|
|
|
4233
4752
|
minimist@1.2.8:
|
|
4234
4753
|
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
4235
4754
|
|
|
4755
|
+
mlly@1.8.1:
|
|
4756
|
+
resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
|
|
4757
|
+
|
|
4236
4758
|
ms@2.0.0:
|
|
4237
4759
|
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
4238
4760
|
|
|
@@ -4257,6 +4779,9 @@ packages:
|
|
|
4257
4779
|
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
|
|
4258
4780
|
engines: {node: ^18.17.0 || >=20.5.0}
|
|
4259
4781
|
|
|
4782
|
+
mz@2.7.0:
|
|
4783
|
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
|
4784
|
+
|
|
4260
4785
|
nanoid@3.3.11:
|
|
4261
4786
|
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
4262
4787
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
@@ -4411,10 +4936,6 @@ packages:
|
|
|
4411
4936
|
resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
|
|
4412
4937
|
engines: {node: '>=18'}
|
|
4413
4938
|
|
|
4414
|
-
ora@9.1.0:
|
|
4415
|
-
resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
|
|
4416
|
-
engines: {node: '>=20'}
|
|
4417
|
-
|
|
4418
4939
|
outvariant@1.4.3:
|
|
4419
4940
|
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
|
|
4420
4941
|
|
|
@@ -4509,8 +5030,8 @@ packages:
|
|
|
4509
5030
|
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
|
4510
5031
|
engines: {node: '>=8'}
|
|
4511
5032
|
|
|
4512
|
-
|
|
4513
|
-
resolution: {integrity: sha512-
|
|
5033
|
+
pathe@2.0.3:
|
|
5034
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
4514
5035
|
|
|
4515
5036
|
pg-connection-string@2.10.1:
|
|
4516
5037
|
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
@@ -4557,10 +5078,17 @@ packages:
|
|
|
4557
5078
|
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
4558
5079
|
engines: {node: '>=12'}
|
|
4559
5080
|
|
|
5081
|
+
pirates@4.0.7:
|
|
5082
|
+
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
|
|
5083
|
+
engines: {node: '>= 6'}
|
|
5084
|
+
|
|
4560
5085
|
pkce-challenge@5.0.1:
|
|
4561
5086
|
resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
|
|
4562
5087
|
engines: {node: '>=16.20.0'}
|
|
4563
5088
|
|
|
5089
|
+
pkg-types@1.3.1:
|
|
5090
|
+
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
|
5091
|
+
|
|
4564
5092
|
pkg-up@3.1.0:
|
|
4565
5093
|
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
|
|
4566
5094
|
engines: {node: '>=8'}
|
|
@@ -4569,6 +5097,24 @@ packages:
|
|
|
4569
5097
|
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
|
|
4570
5098
|
engines: {node: '>= 0.4'}
|
|
4571
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
|
+
|
|
4572
5118
|
postcss-selector-parser@7.1.1:
|
|
4573
5119
|
resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
|
|
4574
5120
|
engines: {node: '>=4'}
|
|
@@ -4747,6 +5293,10 @@ packages:
|
|
|
4747
5293
|
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
4748
5294
|
engines: {node: '>=8.10.0'}
|
|
4749
5295
|
|
|
5296
|
+
readdirp@4.1.2:
|
|
5297
|
+
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
|
5298
|
+
engines: {node: '>= 14.18.0'}
|
|
5299
|
+
|
|
4750
5300
|
recast@0.23.11:
|
|
4751
5301
|
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
|
|
4752
5302
|
engines: {node: '>= 4'}
|
|
@@ -4785,6 +5335,10 @@ packages:
|
|
|
4785
5335
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
4786
5336
|
engines: {node: '>=4'}
|
|
4787
5337
|
|
|
5338
|
+
resolve-from@5.0.0:
|
|
5339
|
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
5340
|
+
engines: {node: '>=8'}
|
|
5341
|
+
|
|
4788
5342
|
resolve-pkg-maps@1.0.0:
|
|
4789
5343
|
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
4790
5344
|
|
|
@@ -4808,6 +5362,11 @@ packages:
|
|
|
4808
5362
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
4809
5363
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
4810
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
|
+
|
|
4811
5370
|
router@2.2.0:
|
|
4812
5371
|
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
|
|
4813
5372
|
engines: {node: '>= 18'}
|
|
@@ -4953,6 +5512,10 @@ packages:
|
|
|
4953
5512
|
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
4954
5513
|
engines: {node: '>=0.10.0'}
|
|
4955
5514
|
|
|
5515
|
+
source-map@0.7.6:
|
|
5516
|
+
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
|
|
5517
|
+
engines: {node: '>= 12'}
|
|
5518
|
+
|
|
4956
5519
|
split2@4.2.0:
|
|
4957
5520
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
4958
5521
|
engines: {node: '>= 10.x'}
|
|
@@ -4986,10 +5549,6 @@ packages:
|
|
|
4986
5549
|
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
4987
5550
|
engines: {node: '>=18'}
|
|
4988
5551
|
|
|
4989
|
-
string-width@8.1.0:
|
|
4990
|
-
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
4991
|
-
engines: {node: '>=20'}
|
|
4992
|
-
|
|
4993
5552
|
string.prototype.includes@2.0.1:
|
|
4994
5553
|
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
4995
5554
|
engines: {node: '>= 0.4'}
|
|
@@ -5060,6 +5619,11 @@ packages:
|
|
|
5060
5619
|
babel-plugin-macros:
|
|
5061
5620
|
optional: true
|
|
5062
5621
|
|
|
5622
|
+
sucrase@3.35.1:
|
|
5623
|
+
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
|
|
5624
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
5625
|
+
hasBin: true
|
|
5626
|
+
|
|
5063
5627
|
supports-color@7.2.0:
|
|
5064
5628
|
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
5065
5629
|
engines: {node: '>=8'}
|
|
@@ -5114,9 +5678,19 @@ packages:
|
|
|
5114
5678
|
text-table@0.2.0:
|
|
5115
5679
|
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
|
5116
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
|
+
|
|
5117
5688
|
tiny-invariant@1.3.3:
|
|
5118
5689
|
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
5119
5690
|
|
|
5691
|
+
tinyexec@0.3.2:
|
|
5692
|
+
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
|
|
5693
|
+
|
|
5120
5694
|
tinyexec@1.0.2:
|
|
5121
5695
|
resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
|
|
5122
5696
|
engines: {node: '>=18'}
|
|
@@ -5148,9 +5722,8 @@ packages:
|
|
|
5148
5722
|
resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
|
|
5149
5723
|
engines: {node: '>=16'}
|
|
5150
5724
|
|
|
5151
|
-
|
|
5152
|
-
resolution: {integrity: sha512-
|
|
5153
|
-
engines: {node: '>=20.0.0'}
|
|
5725
|
+
tree-kill@1.2.2:
|
|
5726
|
+
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
|
5154
5727
|
hasBin: true
|
|
5155
5728
|
|
|
5156
5729
|
ts-api-utils@2.4.0:
|
|
@@ -5159,6 +5732,9 @@ packages:
|
|
|
5159
5732
|
peerDependencies:
|
|
5160
5733
|
typescript: '>=4.8.4'
|
|
5161
5734
|
|
|
5735
|
+
ts-interface-checker@0.1.13:
|
|
5736
|
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
5737
|
+
|
|
5162
5738
|
ts-morph@26.0.0:
|
|
5163
5739
|
resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==}
|
|
5164
5740
|
|
|
@@ -5172,6 +5748,30 @@ packages:
|
|
|
5172
5748
|
tslib@2.8.1:
|
|
5173
5749
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
5174
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
|
+
|
|
5175
5775
|
tw-animate-css@1.4.0:
|
|
5176
5776
|
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
5177
5777
|
|
|
@@ -5215,6 +5815,9 @@ packages:
|
|
|
5215
5815
|
engines: {node: '>=14.17'}
|
|
5216
5816
|
hasBin: true
|
|
5217
5817
|
|
|
5818
|
+
ufo@1.6.3:
|
|
5819
|
+
resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
|
|
5820
|
+
|
|
5218
5821
|
unbox-primitive@1.1.0:
|
|
5219
5822
|
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
|
|
5220
5823
|
engines: {node: '>= 0.4'}
|
|
@@ -5369,6 +5972,18 @@ packages:
|
|
|
5369
5972
|
wrappy@1.0.2:
|
|
5370
5973
|
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
5371
5974
|
|
|
5975
|
+
ws@8.19.0:
|
|
5976
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
5977
|
+
engines: {node: '>=10.0.0'}
|
|
5978
|
+
peerDependencies:
|
|
5979
|
+
bufferutil: ^4.0.1
|
|
5980
|
+
utf-8-validate: '>=5.0.2'
|
|
5981
|
+
peerDependenciesMeta:
|
|
5982
|
+
bufferutil:
|
|
5983
|
+
optional: true
|
|
5984
|
+
utf-8-validate:
|
|
5985
|
+
optional: true
|
|
5986
|
+
|
|
5372
5987
|
wsl-utils@0.3.1:
|
|
5373
5988
|
resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
|
|
5374
5989
|
engines: {node: '>=20'}
|
|
@@ -6214,7 +6829,7 @@ snapshots:
|
|
|
6214
6829
|
|
|
6215
6830
|
'@esbuild-kit/core-utils@3.3.2':
|
|
6216
6831
|
dependencies:
|
|
6217
|
-
esbuild: 0.
|
|
6832
|
+
esbuild: 0.18.20
|
|
6218
6833
|
source-map-support: 0.5.21
|
|
6219
6834
|
|
|
6220
6835
|
'@esbuild-kit/esm-loader@2.6.5':
|
|
@@ -6222,84 +6837,228 @@ snapshots:
|
|
|
6222
6837
|
'@esbuild-kit/core-utils': 3.3.2
|
|
6223
6838
|
get-tsconfig: 4.13.0
|
|
6224
6839
|
|
|
6225
|
-
'@esbuild/aix-ppc64@0.25.12':
|
|
6840
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
6841
|
+
optional: true
|
|
6842
|
+
|
|
6843
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
6844
|
+
optional: true
|
|
6845
|
+
|
|
6846
|
+
'@esbuild/android-arm64@0.18.20':
|
|
6847
|
+
optional: true
|
|
6848
|
+
|
|
6849
|
+
'@esbuild/android-arm64@0.25.12':
|
|
6850
|
+
optional: true
|
|
6851
|
+
|
|
6852
|
+
'@esbuild/android-arm64@0.27.3':
|
|
6853
|
+
optional: true
|
|
6854
|
+
|
|
6855
|
+
'@esbuild/android-arm@0.18.20':
|
|
6856
|
+
optional: true
|
|
6857
|
+
|
|
6858
|
+
'@esbuild/android-arm@0.25.12':
|
|
6226
6859
|
optional: true
|
|
6227
6860
|
|
|
6228
|
-
'@esbuild/android-
|
|
6861
|
+
'@esbuild/android-arm@0.27.3':
|
|
6229
6862
|
optional: true
|
|
6230
6863
|
|
|
6231
|
-
'@esbuild/android-
|
|
6864
|
+
'@esbuild/android-x64@0.18.20':
|
|
6232
6865
|
optional: true
|
|
6233
6866
|
|
|
6234
6867
|
'@esbuild/android-x64@0.25.12':
|
|
6235
6868
|
optional: true
|
|
6236
6869
|
|
|
6870
|
+
'@esbuild/android-x64@0.27.3':
|
|
6871
|
+
optional: true
|
|
6872
|
+
|
|
6873
|
+
'@esbuild/darwin-arm64@0.18.20':
|
|
6874
|
+
optional: true
|
|
6875
|
+
|
|
6237
6876
|
'@esbuild/darwin-arm64@0.25.12':
|
|
6238
6877
|
optional: true
|
|
6239
6878
|
|
|
6879
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
6880
|
+
optional: true
|
|
6881
|
+
|
|
6882
|
+
'@esbuild/darwin-x64@0.18.20':
|
|
6883
|
+
optional: true
|
|
6884
|
+
|
|
6240
6885
|
'@esbuild/darwin-x64@0.25.12':
|
|
6241
6886
|
optional: true
|
|
6242
6887
|
|
|
6888
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
6889
|
+
optional: true
|
|
6890
|
+
|
|
6891
|
+
'@esbuild/freebsd-arm64@0.18.20':
|
|
6892
|
+
optional: true
|
|
6893
|
+
|
|
6243
6894
|
'@esbuild/freebsd-arm64@0.25.12':
|
|
6244
6895
|
optional: true
|
|
6245
6896
|
|
|
6897
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
6898
|
+
optional: true
|
|
6899
|
+
|
|
6900
|
+
'@esbuild/freebsd-x64@0.18.20':
|
|
6901
|
+
optional: true
|
|
6902
|
+
|
|
6246
6903
|
'@esbuild/freebsd-x64@0.25.12':
|
|
6247
6904
|
optional: true
|
|
6248
6905
|
|
|
6906
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
6907
|
+
optional: true
|
|
6908
|
+
|
|
6909
|
+
'@esbuild/linux-arm64@0.18.20':
|
|
6910
|
+
optional: true
|
|
6911
|
+
|
|
6249
6912
|
'@esbuild/linux-arm64@0.25.12':
|
|
6250
6913
|
optional: true
|
|
6251
6914
|
|
|
6915
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
6916
|
+
optional: true
|
|
6917
|
+
|
|
6918
|
+
'@esbuild/linux-arm@0.18.20':
|
|
6919
|
+
optional: true
|
|
6920
|
+
|
|
6252
6921
|
'@esbuild/linux-arm@0.25.12':
|
|
6253
6922
|
optional: true
|
|
6254
6923
|
|
|
6924
|
+
'@esbuild/linux-arm@0.27.3':
|
|
6925
|
+
optional: true
|
|
6926
|
+
|
|
6927
|
+
'@esbuild/linux-ia32@0.18.20':
|
|
6928
|
+
optional: true
|
|
6929
|
+
|
|
6255
6930
|
'@esbuild/linux-ia32@0.25.12':
|
|
6256
6931
|
optional: true
|
|
6257
6932
|
|
|
6933
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
6934
|
+
optional: true
|
|
6935
|
+
|
|
6936
|
+
'@esbuild/linux-loong64@0.18.20':
|
|
6937
|
+
optional: true
|
|
6938
|
+
|
|
6258
6939
|
'@esbuild/linux-loong64@0.25.12':
|
|
6259
6940
|
optional: true
|
|
6260
6941
|
|
|
6942
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
6943
|
+
optional: true
|
|
6944
|
+
|
|
6945
|
+
'@esbuild/linux-mips64el@0.18.20':
|
|
6946
|
+
optional: true
|
|
6947
|
+
|
|
6261
6948
|
'@esbuild/linux-mips64el@0.25.12':
|
|
6262
6949
|
optional: true
|
|
6263
6950
|
|
|
6951
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
6952
|
+
optional: true
|
|
6953
|
+
|
|
6954
|
+
'@esbuild/linux-ppc64@0.18.20':
|
|
6955
|
+
optional: true
|
|
6956
|
+
|
|
6264
6957
|
'@esbuild/linux-ppc64@0.25.12':
|
|
6265
6958
|
optional: true
|
|
6266
6959
|
|
|
6960
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
6961
|
+
optional: true
|
|
6962
|
+
|
|
6963
|
+
'@esbuild/linux-riscv64@0.18.20':
|
|
6964
|
+
optional: true
|
|
6965
|
+
|
|
6267
6966
|
'@esbuild/linux-riscv64@0.25.12':
|
|
6268
6967
|
optional: true
|
|
6269
6968
|
|
|
6969
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
6970
|
+
optional: true
|
|
6971
|
+
|
|
6972
|
+
'@esbuild/linux-s390x@0.18.20':
|
|
6973
|
+
optional: true
|
|
6974
|
+
|
|
6270
6975
|
'@esbuild/linux-s390x@0.25.12':
|
|
6271
6976
|
optional: true
|
|
6272
6977
|
|
|
6978
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
6979
|
+
optional: true
|
|
6980
|
+
|
|
6981
|
+
'@esbuild/linux-x64@0.18.20':
|
|
6982
|
+
optional: true
|
|
6983
|
+
|
|
6273
6984
|
'@esbuild/linux-x64@0.25.12':
|
|
6274
6985
|
optional: true
|
|
6275
6986
|
|
|
6987
|
+
'@esbuild/linux-x64@0.27.3':
|
|
6988
|
+
optional: true
|
|
6989
|
+
|
|
6276
6990
|
'@esbuild/netbsd-arm64@0.25.12':
|
|
6277
6991
|
optional: true
|
|
6278
6992
|
|
|
6993
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
6994
|
+
optional: true
|
|
6995
|
+
|
|
6996
|
+
'@esbuild/netbsd-x64@0.18.20':
|
|
6997
|
+
optional: true
|
|
6998
|
+
|
|
6279
6999
|
'@esbuild/netbsd-x64@0.25.12':
|
|
6280
7000
|
optional: true
|
|
6281
7001
|
|
|
7002
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
7003
|
+
optional: true
|
|
7004
|
+
|
|
6282
7005
|
'@esbuild/openbsd-arm64@0.25.12':
|
|
6283
7006
|
optional: true
|
|
6284
7007
|
|
|
7008
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
7009
|
+
optional: true
|
|
7010
|
+
|
|
7011
|
+
'@esbuild/openbsd-x64@0.18.20':
|
|
7012
|
+
optional: true
|
|
7013
|
+
|
|
6285
7014
|
'@esbuild/openbsd-x64@0.25.12':
|
|
6286
7015
|
optional: true
|
|
6287
7016
|
|
|
7017
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
7018
|
+
optional: true
|
|
7019
|
+
|
|
6288
7020
|
'@esbuild/openharmony-arm64@0.25.12':
|
|
6289
7021
|
optional: true
|
|
6290
7022
|
|
|
7023
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
7024
|
+
optional: true
|
|
7025
|
+
|
|
7026
|
+
'@esbuild/sunos-x64@0.18.20':
|
|
7027
|
+
optional: true
|
|
7028
|
+
|
|
6291
7029
|
'@esbuild/sunos-x64@0.25.12':
|
|
6292
7030
|
optional: true
|
|
6293
7031
|
|
|
7032
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
7033
|
+
optional: true
|
|
7034
|
+
|
|
7035
|
+
'@esbuild/win32-arm64@0.18.20':
|
|
7036
|
+
optional: true
|
|
7037
|
+
|
|
6294
7038
|
'@esbuild/win32-arm64@0.25.12':
|
|
6295
7039
|
optional: true
|
|
6296
7040
|
|
|
7041
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
7042
|
+
optional: true
|
|
7043
|
+
|
|
7044
|
+
'@esbuild/win32-ia32@0.18.20':
|
|
7045
|
+
optional: true
|
|
7046
|
+
|
|
6297
7047
|
'@esbuild/win32-ia32@0.25.12':
|
|
6298
7048
|
optional: true
|
|
6299
7049
|
|
|
7050
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
7051
|
+
optional: true
|
|
7052
|
+
|
|
7053
|
+
'@esbuild/win32-x64@0.18.20':
|
|
7054
|
+
optional: true
|
|
7055
|
+
|
|
6300
7056
|
'@esbuild/win32-x64@0.25.12':
|
|
6301
7057
|
optional: true
|
|
6302
7058
|
|
|
7059
|
+
'@esbuild/win32-x64@0.27.3':
|
|
7060
|
+
optional: true
|
|
7061
|
+
|
|
6303
7062
|
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
|
|
6304
7063
|
dependencies:
|
|
6305
7064
|
eslint: 9.39.2(jiti@2.6.1)
|
|
@@ -6538,14 +7297,14 @@ snapshots:
|
|
|
6538
7297
|
'@jridgewell/resolve-uri': 3.1.2
|
|
6539
7298
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
6540
7299
|
|
|
6541
|
-
'@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6))':
|
|
7300
|
+
'@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))':
|
|
6542
7301
|
dependencies:
|
|
6543
7302
|
'@cfworker/json-schema': 4.1.1
|
|
6544
7303
|
ansi-styles: 5.2.0
|
|
6545
7304
|
camelcase: 6.3.0
|
|
6546
7305
|
decamelize: 1.2.0
|
|
6547
7306
|
js-tiktoken: 1.0.21
|
|
6548
|
-
langsmith: 0.4.9(openai@6.16.0(zod@4.3.6))
|
|
7307
|
+
langsmith: 0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6549
7308
|
mustache: 4.2.0
|
|
6550
7309
|
p-queue: 6.6.2
|
|
6551
7310
|
uuid: 10.0.0
|
|
@@ -6556,11 +7315,11 @@ snapshots:
|
|
|
6556
7315
|
- '@opentelemetry/sdk-trace-base'
|
|
6557
7316
|
- openai
|
|
6558
7317
|
|
|
6559
|
-
'@langchain/openai@1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))':
|
|
7318
|
+
'@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)':
|
|
6560
7319
|
dependencies:
|
|
6561
|
-
'@langchain/core': 1.1.17(openai@6.16.0(zod@4.3.6))
|
|
7320
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6562
7321
|
js-tiktoken: 1.0.21
|
|
6563
|
-
openai: 6.16.0(zod@4.3.6)
|
|
7322
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
6564
7323
|
zod: 4.3.6
|
|
6565
7324
|
transitivePeerDependencies:
|
|
6566
7325
|
- ws
|
|
@@ -7393,6 +8152,81 @@ snapshots:
|
|
|
7393
8152
|
- vue-template-compiler
|
|
7394
8153
|
- webpack
|
|
7395
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
|
+
|
|
7396
8230
|
'@rtsao/scc@1.1.0': {}
|
|
7397
8231
|
|
|
7398
8232
|
'@sec-ant/readable-stream@0.4.1': {}
|
|
@@ -7739,6 +8573,44 @@ snapshots:
|
|
|
7739
8573
|
|
|
7740
8574
|
'@standard-schema/utils@0.3.0': {}
|
|
7741
8575
|
|
|
8576
|
+
'@supabase/auth-js@2.95.3':
|
|
8577
|
+
dependencies:
|
|
8578
|
+
tslib: 2.8.1
|
|
8579
|
+
|
|
8580
|
+
'@supabase/functions-js@2.95.3':
|
|
8581
|
+
dependencies:
|
|
8582
|
+
tslib: 2.8.1
|
|
8583
|
+
|
|
8584
|
+
'@supabase/postgrest-js@2.95.3':
|
|
8585
|
+
dependencies:
|
|
8586
|
+
tslib: 2.8.1
|
|
8587
|
+
|
|
8588
|
+
'@supabase/realtime-js@2.95.3':
|
|
8589
|
+
dependencies:
|
|
8590
|
+
'@types/phoenix': 1.6.7
|
|
8591
|
+
'@types/ws': 8.18.1
|
|
8592
|
+
tslib: 2.8.1
|
|
8593
|
+
ws: 8.19.0
|
|
8594
|
+
transitivePeerDependencies:
|
|
8595
|
+
- bufferutil
|
|
8596
|
+
- utf-8-validate
|
|
8597
|
+
|
|
8598
|
+
'@supabase/storage-js@2.95.3':
|
|
8599
|
+
dependencies:
|
|
8600
|
+
iceberg-js: 0.8.1
|
|
8601
|
+
tslib: 2.8.1
|
|
8602
|
+
|
|
8603
|
+
'@supabase/supabase-js@2.95.3':
|
|
8604
|
+
dependencies:
|
|
8605
|
+
'@supabase/auth-js': 2.95.3
|
|
8606
|
+
'@supabase/functions-js': 2.95.3
|
|
8607
|
+
'@supabase/postgrest-js': 2.95.3
|
|
8608
|
+
'@supabase/realtime-js': 2.95.3
|
|
8609
|
+
'@supabase/storage-js': 2.95.3
|
|
8610
|
+
transitivePeerDependencies:
|
|
8611
|
+
- bufferutil
|
|
8612
|
+
- utf-8-validate
|
|
8613
|
+
|
|
7742
8614
|
'@swc/helpers@0.5.15':
|
|
7743
8615
|
dependencies:
|
|
7744
8616
|
tslib: 2.8.1
|
|
@@ -7875,6 +8747,8 @@ snapshots:
|
|
|
7875
8747
|
pg-protocol: 1.11.0
|
|
7876
8748
|
pg-types: 2.2.0
|
|
7877
8749
|
|
|
8750
|
+
'@types/phoenix@1.6.7': {}
|
|
8751
|
+
|
|
7878
8752
|
'@types/react-dom@19.2.3(@types/react@19.2.10)':
|
|
7879
8753
|
dependencies:
|
|
7880
8754
|
'@types/react': 19.2.10
|
|
@@ -7893,6 +8767,10 @@ snapshots:
|
|
|
7893
8767
|
|
|
7894
8768
|
'@types/validate-npm-package-name@4.0.2': {}
|
|
7895
8769
|
|
|
8770
|
+
'@types/ws@8.18.1':
|
|
8771
|
+
dependencies:
|
|
8772
|
+
'@types/node': 20.19.30
|
|
8773
|
+
|
|
7896
8774
|
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7897
8775
|
dependencies:
|
|
7898
8776
|
'@eslint-community/regexpp': 4.12.2
|
|
@@ -8138,6 +9016,8 @@ snapshots:
|
|
|
8138
9016
|
|
|
8139
9017
|
acorn@8.15.0: {}
|
|
8140
9018
|
|
|
9019
|
+
acorn@8.16.0: {}
|
|
9020
|
+
|
|
8141
9021
|
address@1.2.2: {}
|
|
8142
9022
|
|
|
8143
9023
|
agent-base@7.1.4: {}
|
|
@@ -8185,6 +9065,8 @@ snapshots:
|
|
|
8185
9065
|
|
|
8186
9066
|
ansis@4.2.0: {}
|
|
8187
9067
|
|
|
9068
|
+
any-promise@1.3.0: {}
|
|
9069
|
+
|
|
8188
9070
|
anymatch@3.1.3:
|
|
8189
9071
|
dependencies:
|
|
8190
9072
|
normalize-path: 3.0.0
|
|
@@ -8351,8 +9233,15 @@ snapshots:
|
|
|
8351
9233
|
dependencies:
|
|
8352
9234
|
run-applescript: 7.1.0
|
|
8353
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
|
+
|
|
8354
9241
|
bytes@3.1.2: {}
|
|
8355
9242
|
|
|
9243
|
+
cac@6.7.14: {}
|
|
9244
|
+
|
|
8356
9245
|
call-bind-apply-helpers@1.0.2:
|
|
8357
9246
|
dependencies:
|
|
8358
9247
|
es-errors: 1.3.0
|
|
@@ -8395,6 +9284,10 @@ snapshots:
|
|
|
8395
9284
|
optionalDependencies:
|
|
8396
9285
|
fsevents: 2.3.3
|
|
8397
9286
|
|
|
9287
|
+
chokidar@4.0.3:
|
|
9288
|
+
dependencies:
|
|
9289
|
+
readdirp: 4.1.2
|
|
9290
|
+
|
|
8398
9291
|
chrome-trace-event@1.0.4: {}
|
|
8399
9292
|
|
|
8400
9293
|
class-variance-authority@0.7.1:
|
|
@@ -8407,8 +9300,6 @@ snapshots:
|
|
|
8407
9300
|
|
|
8408
9301
|
cli-spinners@2.9.2: {}
|
|
8409
9302
|
|
|
8410
|
-
cli-spinners@3.4.0: {}
|
|
8411
|
-
|
|
8412
9303
|
cli-width@4.1.0: {}
|
|
8413
9304
|
|
|
8414
9305
|
client-only@0.0.1: {}
|
|
@@ -8451,8 +9342,14 @@ snapshots:
|
|
|
8451
9342
|
|
|
8452
9343
|
commander@2.20.3: {}
|
|
8453
9344
|
|
|
9345
|
+
commander@4.1.1: {}
|
|
9346
|
+
|
|
8454
9347
|
concat-map@0.0.1: {}
|
|
8455
9348
|
|
|
9349
|
+
confbox@0.1.8: {}
|
|
9350
|
+
|
|
9351
|
+
consola@3.4.2: {}
|
|
9352
|
+
|
|
8456
9353
|
console-table-printer@2.15.0:
|
|
8457
9354
|
dependencies:
|
|
8458
9355
|
simple-wcswidth: 1.1.2
|
|
@@ -8491,56 +9388,22 @@ snapshots:
|
|
|
8491
9388
|
optionalDependencies:
|
|
8492
9389
|
typescript: 5.9.3
|
|
8493
9390
|
|
|
8494
|
-
coze-coding-dev-sdk@0.7.
|
|
9391
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
|
|
8495
9392
|
dependencies:
|
|
8496
|
-
'@
|
|
8497
|
-
'@
|
|
8498
|
-
'@
|
|
8499
|
-
'@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))
|
|
9393
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
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
|
|
8500
9396
|
axios: 1.13.4
|
|
8501
|
-
chalk: 5.6.2
|
|
8502
|
-
commander: 14.0.2
|
|
8503
|
-
drizzle-kit: 0.31.8
|
|
8504
|
-
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
8505
|
-
ora: 9.1.0
|
|
8506
9397
|
pg: 8.17.2
|
|
8507
|
-
transliteration: 2.6.1
|
|
8508
9398
|
transitivePeerDependencies:
|
|
8509
|
-
- '@aws-sdk/client-rds-data'
|
|
8510
|
-
- '@cloudflare/workers-types'
|
|
8511
|
-
- '@electric-sql/pglite'
|
|
8512
|
-
- '@libsql/client'
|
|
8513
|
-
- '@libsql/client-wasm'
|
|
8514
|
-
- '@neondatabase/serverless'
|
|
8515
|
-
- '@op-engineering/op-sqlite'
|
|
8516
9399
|
- '@opentelemetry/api'
|
|
8517
9400
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
8518
9401
|
- '@opentelemetry/sdk-trace-base'
|
|
8519
|
-
-
|
|
8520
|
-
- '@prisma/client'
|
|
8521
|
-
- '@tidbcloud/serverless'
|
|
8522
|
-
- '@types/better-sqlite3'
|
|
8523
|
-
- '@types/pg'
|
|
8524
|
-
- '@types/sql.js'
|
|
8525
|
-
- '@upstash/redis'
|
|
8526
|
-
- '@vercel/postgres'
|
|
8527
|
-
- '@xata.io/client'
|
|
8528
|
-
- aws-crt
|
|
8529
|
-
- better-sqlite3
|
|
8530
|
-
- bun-types
|
|
9402
|
+
- bufferutil
|
|
8531
9403
|
- debug
|
|
8532
|
-
- expo-sqlite
|
|
8533
|
-
- gel
|
|
8534
|
-
- knex
|
|
8535
|
-
- kysely
|
|
8536
|
-
- mysql2
|
|
8537
9404
|
- openai
|
|
8538
9405
|
- pg-native
|
|
8539
|
-
-
|
|
8540
|
-
- prisma
|
|
8541
|
-
- sql.js
|
|
8542
|
-
- sqlite3
|
|
8543
|
-
- supports-color
|
|
9406
|
+
- utf-8-validate
|
|
8544
9407
|
- ws
|
|
8545
9408
|
|
|
8546
9409
|
cross-spawn@7.0.6:
|
|
@@ -8873,6 +9736,31 @@ snapshots:
|
|
|
8873
9736
|
transitivePeerDependencies:
|
|
8874
9737
|
- supports-color
|
|
8875
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
|
+
|
|
8876
9764
|
esbuild@0.25.12:
|
|
8877
9765
|
optionalDependencies:
|
|
8878
9766
|
'@esbuild/aix-ppc64': 0.25.12
|
|
@@ -8902,6 +9790,35 @@ snapshots:
|
|
|
8902
9790
|
'@esbuild/win32-ia32': 0.25.12
|
|
8903
9791
|
'@esbuild/win32-x64': 0.25.12
|
|
8904
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
|
+
|
|
8905
9822
|
escalade@3.2.0: {}
|
|
8906
9823
|
|
|
8907
9824
|
escape-html@1.0.3: {}
|
|
@@ -9273,6 +10190,12 @@ snapshots:
|
|
|
9273
10190
|
locate-path: 6.0.0
|
|
9274
10191
|
path-exists: 4.0.0
|
|
9275
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
|
+
|
|
9276
10199
|
flat-cache@4.0.1:
|
|
9277
10200
|
dependencies:
|
|
9278
10201
|
flatted: 3.3.3
|
|
@@ -9516,6 +10439,8 @@ snapshots:
|
|
|
9516
10439
|
|
|
9517
10440
|
human-signals@8.0.1: {}
|
|
9518
10441
|
|
|
10442
|
+
iceberg-js@0.8.1: {}
|
|
10443
|
+
|
|
9519
10444
|
iconv-lite@0.7.2:
|
|
9520
10445
|
dependencies:
|
|
9521
10446
|
safer-buffer: 2.1.2
|
|
@@ -9744,6 +10669,8 @@ snapshots:
|
|
|
9744
10669
|
|
|
9745
10670
|
jose@6.1.3: {}
|
|
9746
10671
|
|
|
10672
|
+
joycon@3.1.1: {}
|
|
10673
|
+
|
|
9747
10674
|
js-tiktoken@1.0.21:
|
|
9748
10675
|
dependencies:
|
|
9749
10676
|
base64-js: 1.5.1
|
|
@@ -9797,7 +10724,7 @@ snapshots:
|
|
|
9797
10724
|
|
|
9798
10725
|
kleur@4.1.5: {}
|
|
9799
10726
|
|
|
9800
|
-
langsmith@0.4.9(openai@6.16.0(zod@4.3.6)):
|
|
10727
|
+
langsmith@0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6)):
|
|
9801
10728
|
dependencies:
|
|
9802
10729
|
'@types/uuid': 10.0.0
|
|
9803
10730
|
chalk: 4.1.2
|
|
@@ -9806,7 +10733,7 @@ snapshots:
|
|
|
9806
10733
|
semver: 7.7.3
|
|
9807
10734
|
uuid: 10.0.0
|
|
9808
10735
|
optionalDependencies:
|
|
9809
|
-
openai: 6.16.0(zod@4.3.6)
|
|
10736
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
9810
10737
|
|
|
9811
10738
|
language-subtag-registry@0.3.23: {}
|
|
9812
10739
|
|
|
@@ -9868,8 +10795,12 @@ snapshots:
|
|
|
9868
10795
|
lightningcss-win32-arm64-msvc: 1.30.2
|
|
9869
10796
|
lightningcss-win32-x64-msvc: 1.30.2
|
|
9870
10797
|
|
|
10798
|
+
lilconfig@3.1.3: {}
|
|
10799
|
+
|
|
9871
10800
|
lines-and-columns@1.2.4: {}
|
|
9872
10801
|
|
|
10802
|
+
load-tsconfig@0.2.5: {}
|
|
10803
|
+
|
|
9873
10804
|
loader-runner@4.3.1: {}
|
|
9874
10805
|
|
|
9875
10806
|
loader-utils@3.3.1: {}
|
|
@@ -9892,11 +10823,6 @@ snapshots:
|
|
|
9892
10823
|
chalk: 5.6.2
|
|
9893
10824
|
is-unicode-supported: 1.3.0
|
|
9894
10825
|
|
|
9895
|
-
log-symbols@7.0.1:
|
|
9896
|
-
dependencies:
|
|
9897
|
-
is-unicode-supported: 2.1.0
|
|
9898
|
-
yoctocolors: 2.1.2
|
|
9899
|
-
|
|
9900
10826
|
loose-envify@1.4.0:
|
|
9901
10827
|
dependencies:
|
|
9902
10828
|
js-tokens: 4.0.0
|
|
@@ -9962,6 +10888,13 @@ snapshots:
|
|
|
9962
10888
|
|
|
9963
10889
|
minimist@1.2.8: {}
|
|
9964
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
|
+
|
|
9965
10898
|
ms@2.0.0: {}
|
|
9966
10899
|
|
|
9967
10900
|
ms@2.1.3: {}
|
|
@@ -9995,6 +10928,12 @@ snapshots:
|
|
|
9995
10928
|
|
|
9996
10929
|
mute-stream@2.0.0: {}
|
|
9997
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
|
+
|
|
9998
10937
|
nanoid@3.3.11: {}
|
|
9999
10938
|
|
|
10000
10939
|
napi-postinstall@0.3.4: {}
|
|
@@ -10134,8 +11073,9 @@ snapshots:
|
|
|
10134
11073
|
is-docker: 2.2.1
|
|
10135
11074
|
is-wsl: 2.2.0
|
|
10136
11075
|
|
|
10137
|
-
openai@6.16.0(zod@4.3.6):
|
|
11076
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.6):
|
|
10138
11077
|
optionalDependencies:
|
|
11078
|
+
ws: 8.19.0
|
|
10139
11079
|
zod: 4.3.6
|
|
10140
11080
|
|
|
10141
11081
|
optionator@0.9.4:
|
|
@@ -10159,17 +11099,6 @@ snapshots:
|
|
|
10159
11099
|
string-width: 7.2.0
|
|
10160
11100
|
strip-ansi: 7.1.2
|
|
10161
11101
|
|
|
10162
|
-
ora@9.1.0:
|
|
10163
|
-
dependencies:
|
|
10164
|
-
chalk: 5.6.2
|
|
10165
|
-
cli-cursor: 5.0.0
|
|
10166
|
-
cli-spinners: 3.4.0
|
|
10167
|
-
is-interactive: 2.0.0
|
|
10168
|
-
is-unicode-supported: 2.1.0
|
|
10169
|
-
log-symbols: 7.0.1
|
|
10170
|
-
stdin-discarder: 0.2.2
|
|
10171
|
-
string-width: 8.1.0
|
|
10172
|
-
|
|
10173
11102
|
outvariant@1.4.3: {}
|
|
10174
11103
|
|
|
10175
11104
|
own-keys@1.0.1:
|
|
@@ -10244,8 +11173,7 @@ snapshots:
|
|
|
10244
11173
|
|
|
10245
11174
|
path-type@4.0.0: {}
|
|
10246
11175
|
|
|
10247
|
-
|
|
10248
|
-
optional: true
|
|
11176
|
+
pathe@2.0.3: {}
|
|
10249
11177
|
|
|
10250
11178
|
pg-connection-string@2.10.1: {}
|
|
10251
11179
|
|
|
@@ -10272,8 +11200,6 @@ snapshots:
|
|
|
10272
11200
|
pg-protocol: 1.11.0
|
|
10273
11201
|
pg-types: 2.2.0
|
|
10274
11202
|
pgpass: 1.0.5
|
|
10275
|
-
optionalDependencies:
|
|
10276
|
-
pg-cloudflare: 1.3.0
|
|
10277
11203
|
|
|
10278
11204
|
pgpass@1.0.5:
|
|
10279
11205
|
dependencies:
|
|
@@ -10287,14 +11213,31 @@ snapshots:
|
|
|
10287
11213
|
|
|
10288
11214
|
picomatch@4.0.3: {}
|
|
10289
11215
|
|
|
11216
|
+
pirates@4.0.7: {}
|
|
11217
|
+
|
|
10290
11218
|
pkce-challenge@5.0.1: {}
|
|
10291
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
|
+
|
|
10292
11226
|
pkg-up@3.1.0:
|
|
10293
11227
|
dependencies:
|
|
10294
11228
|
find-up: 3.0.0
|
|
10295
11229
|
|
|
10296
11230
|
possible-typed-array-names@1.1.0: {}
|
|
10297
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
|
+
|
|
10298
11241
|
postcss-selector-parser@7.1.1:
|
|
10299
11242
|
dependencies:
|
|
10300
11243
|
cssesc: 3.0.0
|
|
@@ -10506,6 +11449,8 @@ snapshots:
|
|
|
10506
11449
|
dependencies:
|
|
10507
11450
|
picomatch: 2.3.1
|
|
10508
11451
|
|
|
11452
|
+
readdirp@4.1.2: {}
|
|
11453
|
+
|
|
10509
11454
|
recast@0.23.11:
|
|
10510
11455
|
dependencies:
|
|
10511
11456
|
ast-types: 0.16.1
|
|
@@ -10561,6 +11506,8 @@ snapshots:
|
|
|
10561
11506
|
|
|
10562
11507
|
resolve-from@4.0.0: {}
|
|
10563
11508
|
|
|
11509
|
+
resolve-from@5.0.0: {}
|
|
11510
|
+
|
|
10564
11511
|
resolve-pkg-maps@1.0.0: {}
|
|
10565
11512
|
|
|
10566
11513
|
resolve@1.22.11:
|
|
@@ -10584,6 +11531,37 @@ snapshots:
|
|
|
10584
11531
|
|
|
10585
11532
|
reusify@1.1.0: {}
|
|
10586
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
|
+
|
|
10587
11565
|
router@2.2.0:
|
|
10588
11566
|
dependencies:
|
|
10589
11567
|
debug: 4.4.3
|
|
@@ -10831,6 +11809,8 @@ snapshots:
|
|
|
10831
11809
|
|
|
10832
11810
|
source-map@0.6.1: {}
|
|
10833
11811
|
|
|
11812
|
+
source-map@0.7.6: {}
|
|
11813
|
+
|
|
10834
11814
|
split2@4.2.0: {}
|
|
10835
11815
|
|
|
10836
11816
|
stable-hash@0.0.5: {}
|
|
@@ -10863,11 +11843,6 @@ snapshots:
|
|
|
10863
11843
|
get-east-asian-width: 1.4.0
|
|
10864
11844
|
strip-ansi: 7.1.2
|
|
10865
11845
|
|
|
10866
|
-
string-width@8.1.0:
|
|
10867
|
-
dependencies:
|
|
10868
|
-
get-east-asian-width: 1.4.0
|
|
10869
|
-
strip-ansi: 7.1.2
|
|
10870
|
-
|
|
10871
11846
|
string.prototype.includes@2.0.1:
|
|
10872
11847
|
dependencies:
|
|
10873
11848
|
call-bind: 1.0.8
|
|
@@ -10953,6 +11928,16 @@ snapshots:
|
|
|
10953
11928
|
optionalDependencies:
|
|
10954
11929
|
'@babel/core': 7.28.6
|
|
10955
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
|
+
|
|
10956
11941
|
supports-color@7.2.0:
|
|
10957
11942
|
dependencies:
|
|
10958
11943
|
has-flag: 4.0.0
|
|
@@ -10993,8 +11978,18 @@ snapshots:
|
|
|
10993
11978
|
|
|
10994
11979
|
text-table@0.2.0: {}
|
|
10995
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
|
+
|
|
10996
11989
|
tiny-invariant@1.3.3: {}
|
|
10997
11990
|
|
|
11991
|
+
tinyexec@0.3.2: {}
|
|
11992
|
+
|
|
10998
11993
|
tinyexec@1.0.2: {}
|
|
10999
11994
|
|
|
11000
11995
|
tinyglobby@0.2.15:
|
|
@@ -11020,12 +12015,14 @@ snapshots:
|
|
|
11020
12015
|
dependencies:
|
|
11021
12016
|
tldts: 7.0.19
|
|
11022
12017
|
|
|
11023
|
-
|
|
12018
|
+
tree-kill@1.2.2: {}
|
|
11024
12019
|
|
|
11025
12020
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
11026
12021
|
dependencies:
|
|
11027
12022
|
typescript: 5.9.3
|
|
11028
12023
|
|
|
12024
|
+
ts-interface-checker@0.1.13: {}
|
|
12025
|
+
|
|
11029
12026
|
ts-morph@26.0.0:
|
|
11030
12027
|
dependencies:
|
|
11031
12028
|
'@ts-morph/common': 0.27.0
|
|
@@ -11046,6 +12043,41 @@ snapshots:
|
|
|
11046
12043
|
|
|
11047
12044
|
tslib@2.8.1: {}
|
|
11048
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
|
+
|
|
11049
12081
|
tw-animate-css@1.4.0: {}
|
|
11050
12082
|
|
|
11051
12083
|
type-check@0.4.0:
|
|
@@ -11108,6 +12140,8 @@ snapshots:
|
|
|
11108
12140
|
|
|
11109
12141
|
typescript@5.9.3: {}
|
|
11110
12142
|
|
|
12143
|
+
ufo@1.6.3: {}
|
|
12144
|
+
|
|
11111
12145
|
unbox-primitive@1.1.0:
|
|
11112
12146
|
dependencies:
|
|
11113
12147
|
call-bound: 1.0.4
|
|
@@ -11324,6 +12358,8 @@ snapshots:
|
|
|
11324
12358
|
|
|
11325
12359
|
wrappy@1.0.2: {}
|
|
11326
12360
|
|
|
12361
|
+
ws@8.19.0: {}
|
|
12362
|
+
|
|
11327
12363
|
wsl-utils@0.3.1:
|
|
11328
12364
|
dependencies:
|
|
11329
12365
|
is-wsl: 3.1.0
|