@orion-agents/orion-code 0.3.4 → 0.3.7
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/CHANGELOG.md +124 -0
- package/README.md +61 -5
- package/README.zh-CN.md +7 -3
- package/dist/commands/context-tool-command-handlers.js +1 -5
- package/dist/commands/registry.js +1 -4
- package/dist/harness/intent.js +69 -16
- package/dist/harness/turn-summary.js +3 -1
- package/dist/memory/embeddings.js +2 -3
- package/dist/memory/prompts.js +1 -1
- package/dist/memory/relevant-finder.js +125 -15
- package/dist/memory/vector-store.js +13 -8
- package/dist/migration/migrate.js +8 -12
- package/dist/runtime/composer/history.js +1 -3
- package/dist/runtime/composer/layout.js +7 -4
- package/dist/runtime/legacy-thread-materializer.d.ts +3 -1
- package/dist/runtime/legacy-thread-materializer.js +15 -3
- package/dist/runtime/product-bootstrap.d.ts +12 -0
- package/dist/runtime/product-bootstrap.js +37 -22
- package/dist/runtime/rich-text/ansi-parser.js +12 -2
- package/dist/runtime/rich-text/layout.js +15 -19
- package/dist/runtime/subagents/budget.js +4 -1
- package/dist/runtime/subagents/policy.js +11 -4
- package/dist/runtime/subagents/provider-gate.js +6 -4
- package/dist/runtime/subagents/research-quality.js +3 -1
- package/dist/runtime/subagents/research-renderer.js +9 -2
- package/dist/runtime/subagents/result-parser.js +18 -7
- package/dist/runtime/thread-event-store.d.ts +5 -3
- package/dist/runtime/thread-event-store.js +29 -8
- package/dist/runtime/thread-projection.d.ts +17 -0
- package/dist/runtime/thread-projection.js +42 -1
- package/dist/runtime/tool-output-presentation.js +7 -7
- package/dist/runtime/turn-controller.js +1 -2
- package/dist/services/auth/auth.js +1 -4
- package/dist/services/auth/aws.js +24 -14
- package/dist/services/auto-fix/autoFixRunner.js +1 -1
- package/dist/services/auto-fix/index.d.ts +1 -1
- package/dist/services/diagnostic-tracking/diagnosticTracking.js +4 -2
- package/dist/services/diagnostic-tracking/index.d.ts +1 -1
- package/dist/services/effort.js +1 -9
- package/dist/services/file-glob.js +3 -4
- package/dist/services/mcp/transports.js +4 -4
- package/dist/services/model-catalog.js +179 -30
- package/dist/services/model-context.js +1 -1
- package/dist/services/provider-resilience/stream-recovery.js +1 -3
- package/dist/services/session-storage.d.ts +28 -3
- package/dist/services/session-storage.js +70 -6
- package/dist/services/smart-routing.js +19 -11
- package/dist/services/verification-profile.js +17 -22
- package/dist/services/web-search-provider.js +21 -9
- package/dist/services/workspace-diff.js +10 -4
- package/dist/skills/builtin/code-review/SKILL.md +1 -1
- package/dist/skills/builtin/security-check/SKILL.md +1 -1
- package/dist/skills/builtin/test-gen/SKILL.md +1 -1
- package/dist/terminal-ui/editor.js +6 -2
- package/dist/terminal-ui/output-queue.js +9 -3
- package/dist/tools/lsp.js +12 -6
- package/dist/tui-core/frame.js +9 -7
- package/dist/tui-ui/transcript-cache.js +6 -6
- package/dist/tui-ui/transcript-inspector-surface.js +4 -1
- package/dist/tui-ui/transcript-inspector.js +3 -8
- package/dist/ui/box.js +14 -7
- package/dist/ui/markdown.js +4 -2
- package/dist/ui/shared/input-frame.js +12 -8
- package/dist/ui/stream-markdown.js +1 -1
- package/dist/ui/tool-preview.js +11 -3
- package/dist/ui/user-input.js +16 -10
- package/dist/web/protocol.d.ts +2 -0
- package/dist/web/protocol.js +1 -0
- package/dist/web/server.js +69 -0
- package/dist/web/session-runtime-registry.d.ts +14 -0
- package/dist/web/session-runtime-registry.js +23 -0
- package/dist/web/workbench-controller.d.ts +55 -0
- package/dist/web/workbench-controller.js +224 -14
- package/dist/web-client/assets/{DiffViewer-D6mG729y.js → DiffViewer-DqbZ02RN.js} +1 -1
- package/dist/web-client/assets/{FilesPanel-CCDoAZ1J.js → FilesPanel-Bu1Ab2kJ.js} +1 -1
- package/dist/web-client/assets/{GitPanel-DtNgiH7A.js → GitPanel-BixIWb4k.js} +1 -1
- package/dist/web-client/assets/ReviewPanel-DsqJpku_.js +1 -0
- package/dist/web-client/assets/{TerminalPanel-CNxMaBLp.js → TerminalPanel-DdjQP2mp.js} +1 -1
- package/dist/web-client/assets/index-30GT9Vnx.js +17 -0
- package/dist/web-client/assets/index-DQfpqPTD.css +1 -0
- package/dist/web-client/index.html +2 -2
- package/npm-shrinkwrap.json +356 -120
- package/package.json +3 -1
- package/dist/web-client/assets/ReviewPanel-CKEBSt6P.js +0 -1
- package/dist/web-client/assets/index-BBvNg3By.css +0 -1
- package/dist/web-client/assets/index-C6TDJwMC.js +0 -17
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orion-agents/orion-code",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orion-agents/orion-code",
|
|
9
|
-
"version": "0.3.
|
|
9
|
+
"version": "0.3.7",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@clack/prompts": "^0.7.0",
|
|
@@ -627,7 +627,9 @@
|
|
|
627
627
|
"version": "0.7.0",
|
|
628
628
|
"resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-0.7.0.tgz",
|
|
629
629
|
"integrity": "sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==",
|
|
630
|
-
"bundleDependencies": [
|
|
630
|
+
"bundleDependencies": [
|
|
631
|
+
"is-unicode-supported"
|
|
632
|
+
],
|
|
631
633
|
"license": "MIT",
|
|
632
634
|
"dependencies": {
|
|
633
635
|
"@clack/core": "^0.3.3",
|
|
@@ -685,11 +687,15 @@
|
|
|
685
687
|
"version": "0.28.2",
|
|
686
688
|
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.2.tgz",
|
|
687
689
|
"integrity": "sha512-XExcO+dvLKvVtNTibSTBej1NCAbaGhWn9Ww1ZPx80qsahhPFe/8jgWP0IchNe0F3HwkU7n8ejhH8bjonqht8mQ==",
|
|
688
|
-
"cpu": [
|
|
690
|
+
"cpu": [
|
|
691
|
+
"ppc64"
|
|
692
|
+
],
|
|
689
693
|
"dev": true,
|
|
690
694
|
"license": "MIT",
|
|
691
695
|
"optional": true,
|
|
692
|
-
"os": [
|
|
696
|
+
"os": [
|
|
697
|
+
"aix"
|
|
698
|
+
],
|
|
693
699
|
"engines": {
|
|
694
700
|
"node": ">=18"
|
|
695
701
|
}
|
|
@@ -698,11 +704,15 @@
|
|
|
698
704
|
"version": "0.28.2",
|
|
699
705
|
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.2.tgz",
|
|
700
706
|
"integrity": "sha512-kXXoiPVVGQcnIYGOeaovwOURpniDBpSq4A03qkQ+BMQqtGG6HYap3xne9C1O1yo4TR3qxlCX5IqqmX6fFo2Lqg==",
|
|
701
|
-
"cpu": [
|
|
707
|
+
"cpu": [
|
|
708
|
+
"arm"
|
|
709
|
+
],
|
|
702
710
|
"dev": true,
|
|
703
711
|
"license": "MIT",
|
|
704
712
|
"optional": true,
|
|
705
|
-
"os": [
|
|
713
|
+
"os": [
|
|
714
|
+
"android"
|
|
715
|
+
],
|
|
706
716
|
"engines": {
|
|
707
717
|
"node": ">=18"
|
|
708
718
|
}
|
|
@@ -711,11 +721,15 @@
|
|
|
711
721
|
"version": "0.28.2",
|
|
712
722
|
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.2.tgz",
|
|
713
723
|
"integrity": "sha512-5YfKeeI8qWfBZIX+u2xZC3Zlb3Os/gLS2sbEKM+I4ZOcsWmHS2WLysCcQZDAFRslDUU5Oiq44gf6PYN1vGwG5A==",
|
|
714
|
-
"cpu": [
|
|
724
|
+
"cpu": [
|
|
725
|
+
"arm64"
|
|
726
|
+
],
|
|
715
727
|
"dev": true,
|
|
716
728
|
"license": "MIT",
|
|
717
729
|
"optional": true,
|
|
718
|
-
"os": [
|
|
730
|
+
"os": [
|
|
731
|
+
"android"
|
|
732
|
+
],
|
|
719
733
|
"engines": {
|
|
720
734
|
"node": ">=18"
|
|
721
735
|
}
|
|
@@ -724,11 +738,15 @@
|
|
|
724
738
|
"version": "0.28.2",
|
|
725
739
|
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.2.tgz",
|
|
726
740
|
"integrity": "sha512-O387ite7SzUyCcy3JQX4P4bLtEA7bLLkx+esve5JHnyYfNTxcVpXZo9jhdB0lTKN44gztELTdU7nS8Nr16Fs1Q==",
|
|
727
|
-
"cpu": [
|
|
741
|
+
"cpu": [
|
|
742
|
+
"x64"
|
|
743
|
+
],
|
|
728
744
|
"dev": true,
|
|
729
745
|
"license": "MIT",
|
|
730
746
|
"optional": true,
|
|
731
|
-
"os": [
|
|
747
|
+
"os": [
|
|
748
|
+
"android"
|
|
749
|
+
],
|
|
732
750
|
"engines": {
|
|
733
751
|
"node": ">=18"
|
|
734
752
|
}
|
|
@@ -737,11 +755,15 @@
|
|
|
737
755
|
"version": "0.28.2",
|
|
738
756
|
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.2.tgz",
|
|
739
757
|
"integrity": "sha512-n4KqkOQrraxHJcgjM1RvwbigfQKIKJVpM7xp+KsxiyUSrRdIXnt73VhrPAx0fV44hgfmIVKjxMN9J1t5jySVkw==",
|
|
740
|
-
"cpu": [
|
|
758
|
+
"cpu": [
|
|
759
|
+
"arm64"
|
|
760
|
+
],
|
|
741
761
|
"dev": true,
|
|
742
762
|
"license": "MIT",
|
|
743
763
|
"optional": true,
|
|
744
|
-
"os": [
|
|
764
|
+
"os": [
|
|
765
|
+
"darwin"
|
|
766
|
+
],
|
|
745
767
|
"engines": {
|
|
746
768
|
"node": ">=18"
|
|
747
769
|
}
|
|
@@ -750,11 +772,15 @@
|
|
|
750
772
|
"version": "0.28.2",
|
|
751
773
|
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.2.tgz",
|
|
752
774
|
"integrity": "sha512-uq6suIWYP37qzGddBKPw5QEQPi6HiLGsO7UmkpfyaYNQ3D+rN6w6WfwH+nuqcGXWvawGwxOEroO4YGnFh95azw==",
|
|
753
|
-
"cpu": [
|
|
775
|
+
"cpu": [
|
|
776
|
+
"x64"
|
|
777
|
+
],
|
|
754
778
|
"dev": true,
|
|
755
779
|
"license": "MIT",
|
|
756
780
|
"optional": true,
|
|
757
|
-
"os": [
|
|
781
|
+
"os": [
|
|
782
|
+
"darwin"
|
|
783
|
+
],
|
|
758
784
|
"engines": {
|
|
759
785
|
"node": ">=18"
|
|
760
786
|
}
|
|
@@ -763,11 +789,15 @@
|
|
|
763
789
|
"version": "0.28.2",
|
|
764
790
|
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.2.tgz",
|
|
765
791
|
"integrity": "sha512-n+I0BTSRIoy+d6RPKnEVwql5UwBJolytvY4mAOIEJorKlqgPII8ix6slVVrfZ5Tnj7glIZvloylbB/EJPMWEXw==",
|
|
766
|
-
"cpu": [
|
|
792
|
+
"cpu": [
|
|
793
|
+
"arm64"
|
|
794
|
+
],
|
|
767
795
|
"dev": true,
|
|
768
796
|
"license": "MIT",
|
|
769
797
|
"optional": true,
|
|
770
|
-
"os": [
|
|
798
|
+
"os": [
|
|
799
|
+
"freebsd"
|
|
800
|
+
],
|
|
771
801
|
"engines": {
|
|
772
802
|
"node": ">=18"
|
|
773
803
|
}
|
|
@@ -776,11 +806,15 @@
|
|
|
776
806
|
"version": "0.28.2",
|
|
777
807
|
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.2.tgz",
|
|
778
808
|
"integrity": "sha512-78XJTJkvPs0kz2w61301PJjXl4g7q3JqiYMZ/M/yVI73EHBrCRTgkhu9oqG7vPqq+a/yadEW8aD+agKlk5xrmg==",
|
|
779
|
-
"cpu": [
|
|
809
|
+
"cpu": [
|
|
810
|
+
"x64"
|
|
811
|
+
],
|
|
780
812
|
"dev": true,
|
|
781
813
|
"license": "MIT",
|
|
782
814
|
"optional": true,
|
|
783
|
-
"os": [
|
|
815
|
+
"os": [
|
|
816
|
+
"freebsd"
|
|
817
|
+
],
|
|
784
818
|
"engines": {
|
|
785
819
|
"node": ">=18"
|
|
786
820
|
}
|
|
@@ -789,11 +823,15 @@
|
|
|
789
823
|
"version": "0.28.2",
|
|
790
824
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.2.tgz",
|
|
791
825
|
"integrity": "sha512-XlDnu2q5yoqems+xay6wSAcg9DDD7K9RLKZEBOMZm3ckNpJBvOX20tSfby8KfrrhINDyv9V2YVZKY/SpoGJI8w==",
|
|
792
|
-
"cpu": [
|
|
826
|
+
"cpu": [
|
|
827
|
+
"arm"
|
|
828
|
+
],
|
|
793
829
|
"dev": true,
|
|
794
830
|
"license": "MIT",
|
|
795
831
|
"optional": true,
|
|
796
|
-
"os": [
|
|
832
|
+
"os": [
|
|
833
|
+
"linux"
|
|
834
|
+
],
|
|
797
835
|
"engines": {
|
|
798
836
|
"node": ">=18"
|
|
799
837
|
}
|
|
@@ -802,11 +840,15 @@
|
|
|
802
840
|
"version": "0.28.2",
|
|
803
841
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.2.tgz",
|
|
804
842
|
"integrity": "sha512-pW4AC0P3it8c7do9MVM4p51FzHzdM/TZrerurgRcHJ2WTa1VQ1CIq18xncfpBJw4ojkiZZrKW2yIBWBP92j6Ug==",
|
|
805
|
-
"cpu": [
|
|
843
|
+
"cpu": [
|
|
844
|
+
"arm64"
|
|
845
|
+
],
|
|
806
846
|
"dev": true,
|
|
807
847
|
"license": "MIT",
|
|
808
848
|
"optional": true,
|
|
809
|
-
"os": [
|
|
849
|
+
"os": [
|
|
850
|
+
"linux"
|
|
851
|
+
],
|
|
810
852
|
"engines": {
|
|
811
853
|
"node": ">=18"
|
|
812
854
|
}
|
|
@@ -815,11 +857,15 @@
|
|
|
815
857
|
"version": "0.28.2",
|
|
816
858
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.2.tgz",
|
|
817
859
|
"integrity": "sha512-CYbnj78HsIeA+DhgUKgFCfvNsTHFhMMrinUrMZpDXJXKN8T3XViTZ/+wtHeVxEWY8ewSzTFN+nRmSwO2tZaLUQ==",
|
|
818
|
-
"cpu": [
|
|
860
|
+
"cpu": [
|
|
861
|
+
"ia32"
|
|
862
|
+
],
|
|
819
863
|
"dev": true,
|
|
820
864
|
"license": "MIT",
|
|
821
865
|
"optional": true,
|
|
822
|
-
"os": [
|
|
866
|
+
"os": [
|
|
867
|
+
"linux"
|
|
868
|
+
],
|
|
823
869
|
"engines": {
|
|
824
870
|
"node": ">=18"
|
|
825
871
|
}
|
|
@@ -828,11 +874,15 @@
|
|
|
828
874
|
"version": "0.28.2",
|
|
829
875
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.2.tgz",
|
|
830
876
|
"integrity": "sha512-buwkd8nsph4R+ajRvw0qM5Hja/TXQow3ptzWO2EbG/cqcIkHloRrdlBtQlshyYGTNFvfkfJ5tpPLVkY4DtsPfQ==",
|
|
831
|
-
"cpu": [
|
|
877
|
+
"cpu": [
|
|
878
|
+
"loong64"
|
|
879
|
+
],
|
|
832
880
|
"dev": true,
|
|
833
881
|
"license": "MIT",
|
|
834
882
|
"optional": true,
|
|
835
|
-
"os": [
|
|
883
|
+
"os": [
|
|
884
|
+
"linux"
|
|
885
|
+
],
|
|
836
886
|
"engines": {
|
|
837
887
|
"node": ">=18"
|
|
838
888
|
}
|
|
@@ -841,11 +891,15 @@
|
|
|
841
891
|
"version": "0.28.2",
|
|
842
892
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.2.tgz",
|
|
843
893
|
"integrity": "sha512-ZVykbDyk7519VwiNb9Lcj9m8XM6v5V9uKPvrEMkkEedVewf+0itkhahp4HDpgERXhwLRpWFypsGbG/J8s0QjJA==",
|
|
844
|
-
"cpu": [
|
|
894
|
+
"cpu": [
|
|
895
|
+
"mips64el"
|
|
896
|
+
],
|
|
845
897
|
"dev": true,
|
|
846
898
|
"license": "MIT",
|
|
847
899
|
"optional": true,
|
|
848
|
-
"os": [
|
|
900
|
+
"os": [
|
|
901
|
+
"linux"
|
|
902
|
+
],
|
|
849
903
|
"engines": {
|
|
850
904
|
"node": ">=18"
|
|
851
905
|
}
|
|
@@ -854,11 +908,15 @@
|
|
|
854
908
|
"version": "0.28.2",
|
|
855
909
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.2.tgz",
|
|
856
910
|
"integrity": "sha512-CAXl+Dtd9UUuJd8pKKdwh6MLm3MUMiqMPmhZ3tTSXPqfyQ3vDl6R5hZdZ/kYojK4ofXtdfSv1tFq8XzWx3heNQ==",
|
|
857
|
-
"cpu": [
|
|
911
|
+
"cpu": [
|
|
912
|
+
"ppc64"
|
|
913
|
+
],
|
|
858
914
|
"dev": true,
|
|
859
915
|
"license": "MIT",
|
|
860
916
|
"optional": true,
|
|
861
|
-
"os": [
|
|
917
|
+
"os": [
|
|
918
|
+
"linux"
|
|
919
|
+
],
|
|
862
920
|
"engines": {
|
|
863
921
|
"node": ">=18"
|
|
864
922
|
}
|
|
@@ -867,11 +925,15 @@
|
|
|
867
925
|
"version": "0.28.2",
|
|
868
926
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.2.tgz",
|
|
869
927
|
"integrity": "sha512-GeXCej4IQtU1B+QlDV8W/RRvbzI3O/Stss+/bCXv4lZls5WGRtu2a+3JkA3i4qIUlMXpcHebWpF8AkJhATowuA==",
|
|
870
|
-
"cpu": [
|
|
928
|
+
"cpu": [
|
|
929
|
+
"riscv64"
|
|
930
|
+
],
|
|
871
931
|
"dev": true,
|
|
872
932
|
"license": "MIT",
|
|
873
933
|
"optional": true,
|
|
874
|
-
"os": [
|
|
934
|
+
"os": [
|
|
935
|
+
"linux"
|
|
936
|
+
],
|
|
875
937
|
"engines": {
|
|
876
938
|
"node": ">=18"
|
|
877
939
|
}
|
|
@@ -880,11 +942,15 @@
|
|
|
880
942
|
"version": "0.28.2",
|
|
881
943
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.2.tgz",
|
|
882
944
|
"integrity": "sha512-3H1weTYZPxt/WOhByszQZybS9w5lKzUn1FDMsgEChbHWQwHYQQRfBxgCcZvPhjHfKyJjIievvMmEUawJrdY9Dg==",
|
|
883
|
-
"cpu": [
|
|
945
|
+
"cpu": [
|
|
946
|
+
"s390x"
|
|
947
|
+
],
|
|
884
948
|
"dev": true,
|
|
885
949
|
"license": "MIT",
|
|
886
950
|
"optional": true,
|
|
887
|
-
"os": [
|
|
951
|
+
"os": [
|
|
952
|
+
"linux"
|
|
953
|
+
],
|
|
888
954
|
"engines": {
|
|
889
955
|
"node": ">=18"
|
|
890
956
|
}
|
|
@@ -893,11 +959,15 @@
|
|
|
893
959
|
"version": "0.28.2",
|
|
894
960
|
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.2.tgz",
|
|
895
961
|
"integrity": "sha512-4xTZr1FUmSoQW4XIWmit3tzQrUTZM+N3P0XV8xROKYF50XfI7xeO90+1bZvNwxIufQ9hDQVRJH5YhgPVF8A/HQ==",
|
|
896
|
-
"cpu": [
|
|
962
|
+
"cpu": [
|
|
963
|
+
"x64"
|
|
964
|
+
],
|
|
897
965
|
"dev": true,
|
|
898
966
|
"license": "MIT",
|
|
899
967
|
"optional": true,
|
|
900
|
-
"os": [
|
|
968
|
+
"os": [
|
|
969
|
+
"linux"
|
|
970
|
+
],
|
|
901
971
|
"engines": {
|
|
902
972
|
"node": ">=18"
|
|
903
973
|
}
|
|
@@ -906,11 +976,15 @@
|
|
|
906
976
|
"version": "0.28.2",
|
|
907
977
|
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.2.tgz",
|
|
908
978
|
"integrity": "sha512-sSATRjPeDBg3pdgHoQfoYBob11Kk1FGa9lui5RIHZCoCkJa9QKlvl3/vKz2usCmYYjs7ymJR/2Nnsqe+Hjt5nw==",
|
|
909
|
-
"cpu": [
|
|
979
|
+
"cpu": [
|
|
980
|
+
"arm64"
|
|
981
|
+
],
|
|
910
982
|
"dev": true,
|
|
911
983
|
"license": "MIT",
|
|
912
984
|
"optional": true,
|
|
913
|
-
"os": [
|
|
985
|
+
"os": [
|
|
986
|
+
"netbsd"
|
|
987
|
+
],
|
|
914
988
|
"engines": {
|
|
915
989
|
"node": ">=18"
|
|
916
990
|
}
|
|
@@ -919,11 +993,15 @@
|
|
|
919
993
|
"version": "0.28.2",
|
|
920
994
|
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.2.tgz",
|
|
921
995
|
"integrity": "sha512-lqnzCV+mM0gIADaKihiCg6ifgfU2L3h5E33rNQBN1Y4MaVGnzryzmvvf7UHxprpQdE8hpqLolJ9Rl+SkIRDpyw==",
|
|
922
|
-
"cpu": [
|
|
996
|
+
"cpu": [
|
|
997
|
+
"x64"
|
|
998
|
+
],
|
|
923
999
|
"dev": true,
|
|
924
1000
|
"license": "MIT",
|
|
925
1001
|
"optional": true,
|
|
926
|
-
"os": [
|
|
1002
|
+
"os": [
|
|
1003
|
+
"netbsd"
|
|
1004
|
+
],
|
|
927
1005
|
"engines": {
|
|
928
1006
|
"node": ">=18"
|
|
929
1007
|
}
|
|
@@ -932,11 +1010,15 @@
|
|
|
932
1010
|
"version": "0.28.2",
|
|
933
1011
|
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.2.tgz",
|
|
934
1012
|
"integrity": "sha512-AL2qJILH7lNjrDmCQDvdxMfAUIv8KMNZOvrwAQ8i8//ntL9FflhOyMJ8OZSMBb8/AWXe3/5v5S20y3zCoZWKoQ==",
|
|
935
|
-
"cpu": [
|
|
1013
|
+
"cpu": [
|
|
1014
|
+
"arm64"
|
|
1015
|
+
],
|
|
936
1016
|
"dev": true,
|
|
937
1017
|
"license": "MIT",
|
|
938
1018
|
"optional": true,
|
|
939
|
-
"os": [
|
|
1019
|
+
"os": [
|
|
1020
|
+
"openbsd"
|
|
1021
|
+
],
|
|
940
1022
|
"engines": {
|
|
941
1023
|
"node": ">=18"
|
|
942
1024
|
}
|
|
@@ -945,11 +1027,15 @@
|
|
|
945
1027
|
"version": "0.28.2",
|
|
946
1028
|
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.2.tgz",
|
|
947
1029
|
"integrity": "sha512-QtiuPytchRyC4rwUKhexJdQKvDuZ6hWloi3igqPQNUJCS1/v9EiO3UTOXR6A3FoMo4fnAKbWJdqaIwhOzh8qEw==",
|
|
948
|
-
"cpu": [
|
|
1030
|
+
"cpu": [
|
|
1031
|
+
"x64"
|
|
1032
|
+
],
|
|
949
1033
|
"dev": true,
|
|
950
1034
|
"license": "MIT",
|
|
951
1035
|
"optional": true,
|
|
952
|
-
"os": [
|
|
1036
|
+
"os": [
|
|
1037
|
+
"openbsd"
|
|
1038
|
+
],
|
|
953
1039
|
"engines": {
|
|
954
1040
|
"node": ">=18"
|
|
955
1041
|
}
|
|
@@ -958,11 +1044,15 @@
|
|
|
958
1044
|
"version": "0.28.2",
|
|
959
1045
|
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.2.tgz",
|
|
960
1046
|
"integrity": "sha512-WkhYDmpTjLvGlScA1rwjRUmhl4k8oXR3cIbtqWmELgU/dFeHHlEllxDvdWcNJV9rbzCexB5vz8gtNewWLgCT7Q==",
|
|
961
|
-
"cpu": [
|
|
1047
|
+
"cpu": [
|
|
1048
|
+
"arm64"
|
|
1049
|
+
],
|
|
962
1050
|
"dev": true,
|
|
963
1051
|
"license": "MIT",
|
|
964
1052
|
"optional": true,
|
|
965
|
-
"os": [
|
|
1053
|
+
"os": [
|
|
1054
|
+
"openharmony"
|
|
1055
|
+
],
|
|
966
1056
|
"engines": {
|
|
967
1057
|
"node": ">=18"
|
|
968
1058
|
}
|
|
@@ -971,11 +1061,15 @@
|
|
|
971
1061
|
"version": "0.28.2",
|
|
972
1062
|
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.2.tgz",
|
|
973
1063
|
"integrity": "sha512-GPMSkTOtMnv2U2F8gxe4Io6qmVs+YKyp832Etqqxr0hFngmXQ3rzwytelm3GIn7T4VviRUlf3sOgBOiTdvaf7g==",
|
|
974
|
-
"cpu": [
|
|
1064
|
+
"cpu": [
|
|
1065
|
+
"x64"
|
|
1066
|
+
],
|
|
975
1067
|
"dev": true,
|
|
976
1068
|
"license": "MIT",
|
|
977
1069
|
"optional": true,
|
|
978
|
-
"os": [
|
|
1070
|
+
"os": [
|
|
1071
|
+
"sunos"
|
|
1072
|
+
],
|
|
979
1073
|
"engines": {
|
|
980
1074
|
"node": ">=18"
|
|
981
1075
|
}
|
|
@@ -984,11 +1078,15 @@
|
|
|
984
1078
|
"version": "0.28.2",
|
|
985
1079
|
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.2.tgz",
|
|
986
1080
|
"integrity": "sha512-PIhhEkE9uPBleRBrQEJpUn7MBnibZzbGzYWPmY3x+YoVg/95zbjB4CxPPOQ8l5tYYM4mMaCthF8/1DIfBQQyWQ==",
|
|
987
|
-
"cpu": [
|
|
1081
|
+
"cpu": [
|
|
1082
|
+
"arm64"
|
|
1083
|
+
],
|
|
988
1084
|
"dev": true,
|
|
989
1085
|
"license": "MIT",
|
|
990
1086
|
"optional": true,
|
|
991
|
-
"os": [
|
|
1087
|
+
"os": [
|
|
1088
|
+
"win32"
|
|
1089
|
+
],
|
|
992
1090
|
"engines": {
|
|
993
1091
|
"node": ">=18"
|
|
994
1092
|
}
|
|
@@ -997,11 +1095,15 @@
|
|
|
997
1095
|
"version": "0.28.2",
|
|
998
1096
|
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.2.tgz",
|
|
999
1097
|
"integrity": "sha512-YmJbfTlvU7Sdn9BB+4PRES4oB6pxgS37MAONj+hBr/cpXS1aBPKXxNnDbu+QCWPj0o9dgyxeq79g6c5P8KeuYA==",
|
|
1000
|
-
"cpu": [
|
|
1098
|
+
"cpu": [
|
|
1099
|
+
"ia32"
|
|
1100
|
+
],
|
|
1001
1101
|
"dev": true,
|
|
1002
1102
|
"license": "MIT",
|
|
1003
1103
|
"optional": true,
|
|
1004
|
-
"os": [
|
|
1104
|
+
"os": [
|
|
1105
|
+
"win32"
|
|
1106
|
+
],
|
|
1005
1107
|
"engines": {
|
|
1006
1108
|
"node": ">=18"
|
|
1007
1109
|
}
|
|
@@ -1010,11 +1112,15 @@
|
|
|
1010
1112
|
"version": "0.28.2",
|
|
1011
1113
|
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.2.tgz",
|
|
1012
1114
|
"integrity": "sha512-5ebpxr3nWMzrL/rnUI755Jkuee0bHL/Gq0WTF9lvcpv73wAp5eu8MfBUgWK9bhWvZjj7yX8etf/8tI8Ney695g==",
|
|
1013
|
-
"cpu": [
|
|
1115
|
+
"cpu": [
|
|
1116
|
+
"x64"
|
|
1117
|
+
],
|
|
1014
1118
|
"dev": true,
|
|
1015
1119
|
"license": "MIT",
|
|
1016
1120
|
"optional": true,
|
|
1017
|
-
"os": [
|
|
1121
|
+
"os": [
|
|
1122
|
+
"win32"
|
|
1123
|
+
],
|
|
1018
1124
|
"engines": {
|
|
1019
1125
|
"node": ">=18"
|
|
1020
1126
|
}
|
|
@@ -1583,11 +1689,15 @@
|
|
|
1583
1689
|
"version": "1.5.1",
|
|
1584
1690
|
"resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz",
|
|
1585
1691
|
"integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
|
|
1586
|
-
"cpu": [
|
|
1692
|
+
"cpu": [
|
|
1693
|
+
"x64"
|
|
1694
|
+
],
|
|
1587
1695
|
"dev": true,
|
|
1588
1696
|
"license": "MIT",
|
|
1589
1697
|
"optional": true,
|
|
1590
|
-
"os": [
|
|
1698
|
+
"os": [
|
|
1699
|
+
"linux"
|
|
1700
|
+
],
|
|
1591
1701
|
"engines": {
|
|
1592
1702
|
"node": "^22.20 || ^24.12 || >=25"
|
|
1593
1703
|
}
|
|
@@ -1657,251 +1767,351 @@
|
|
|
1657
1767
|
"version": "4.63.0",
|
|
1658
1768
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.63.0.tgz",
|
|
1659
1769
|
"integrity": "sha512-70TeIFezKKy65LgAVyQh+w94/gjWhvPWaLaGGeMEgVrPkQhuj/M5bAYYZzIFUj9Y69oHyTm5Um/R6gcLh4A8JA==",
|
|
1660
|
-
"cpu": [
|
|
1770
|
+
"cpu": [
|
|
1771
|
+
"arm"
|
|
1772
|
+
],
|
|
1661
1773
|
"dev": true,
|
|
1662
1774
|
"license": "MIT",
|
|
1663
1775
|
"optional": true,
|
|
1664
|
-
"os": [
|
|
1776
|
+
"os": [
|
|
1777
|
+
"android"
|
|
1778
|
+
]
|
|
1665
1779
|
},
|
|
1666
1780
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
1667
1781
|
"version": "4.63.0",
|
|
1668
1782
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.63.0.tgz",
|
|
1669
1783
|
"integrity": "sha512-YC86tYIHK6M1IV+wbzO+Bxk8RCBr6ZyWYgWxUCzaZD8mc8rrFoIJDNzDrkHBYRc/wKdrsIXmm6/F7NzrAO+OrA==",
|
|
1670
|
-
"cpu": [
|
|
1784
|
+
"cpu": [
|
|
1785
|
+
"arm64"
|
|
1786
|
+
],
|
|
1671
1787
|
"dev": true,
|
|
1672
1788
|
"license": "MIT",
|
|
1673
1789
|
"optional": true,
|
|
1674
|
-
"os": [
|
|
1790
|
+
"os": [
|
|
1791
|
+
"android"
|
|
1792
|
+
]
|
|
1675
1793
|
},
|
|
1676
1794
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
1677
1795
|
"version": "4.63.0",
|
|
1678
1796
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.63.0.tgz",
|
|
1679
1797
|
"integrity": "sha512-oI+ECtUcli0y0fi4xpW82GdPIXdTkI8G8DSjG2LRuw09fPAGykaWYH/hXxiKuTxiAjiPSTIIuYUqof5Z2hShWw==",
|
|
1680
|
-
"cpu": [
|
|
1798
|
+
"cpu": [
|
|
1799
|
+
"arm64"
|
|
1800
|
+
],
|
|
1681
1801
|
"dev": true,
|
|
1682
1802
|
"license": "MIT",
|
|
1683
1803
|
"optional": true,
|
|
1684
|
-
"os": [
|
|
1804
|
+
"os": [
|
|
1805
|
+
"darwin"
|
|
1806
|
+
]
|
|
1685
1807
|
},
|
|
1686
1808
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1687
1809
|
"version": "4.63.0",
|
|
1688
1810
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.63.0.tgz",
|
|
1689
1811
|
"integrity": "sha512-NwV+1s7TiKrMe4owHyKB/dTLD7ZJD0YEBEhIz+hvav1Cu1GReJjF+rsdNwjzENQeIAbE/CoNiaAc5Vz2h5DPAA==",
|
|
1690
|
-
"cpu": [
|
|
1812
|
+
"cpu": [
|
|
1813
|
+
"x64"
|
|
1814
|
+
],
|
|
1691
1815
|
"dev": true,
|
|
1692
1816
|
"license": "MIT",
|
|
1693
1817
|
"optional": true,
|
|
1694
|
-
"os": [
|
|
1818
|
+
"os": [
|
|
1819
|
+
"darwin"
|
|
1820
|
+
]
|
|
1695
1821
|
},
|
|
1696
1822
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1697
1823
|
"version": "4.63.0",
|
|
1698
1824
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.63.0.tgz",
|
|
1699
1825
|
"integrity": "sha512-tWtHBTu5gOPK4u4Urtk4qAHW3zZ9rQAmbssO8gp7ELvGTGI3aCiq6NqyTQ0PCIg7KbHJF2UkGDDs77YZGxfjCA==",
|
|
1700
|
-
"cpu": [
|
|
1826
|
+
"cpu": [
|
|
1827
|
+
"arm64"
|
|
1828
|
+
],
|
|
1701
1829
|
"dev": true,
|
|
1702
1830
|
"license": "MIT",
|
|
1703
1831
|
"optional": true,
|
|
1704
|
-
"os": [
|
|
1832
|
+
"os": [
|
|
1833
|
+
"freebsd"
|
|
1834
|
+
]
|
|
1705
1835
|
},
|
|
1706
1836
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1707
1837
|
"version": "4.63.0",
|
|
1708
1838
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.63.0.tgz",
|
|
1709
1839
|
"integrity": "sha512-2qPoJiwTvtHQ27NnYvTnsgk8laXWYuVmNESG8WFZBcEPKLfZ3I27qBJarjVRQtwGeYyRfq5ZowHXih9lm2BItw==",
|
|
1710
|
-
"cpu": [
|
|
1840
|
+
"cpu": [
|
|
1841
|
+
"x64"
|
|
1842
|
+
],
|
|
1711
1843
|
"dev": true,
|
|
1712
1844
|
"license": "MIT",
|
|
1713
1845
|
"optional": true,
|
|
1714
|
-
"os": [
|
|
1846
|
+
"os": [
|
|
1847
|
+
"freebsd"
|
|
1848
|
+
]
|
|
1715
1849
|
},
|
|
1716
1850
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1717
1851
|
"version": "4.63.0",
|
|
1718
1852
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.63.0.tgz",
|
|
1719
1853
|
"integrity": "sha512-FQwsTRvLNuHoTdICABJQfbPUSEueISGmnpT06tXTMpfprf5NiKLSXKA0A+w45wJnCmZAnzgqBwbt6ARFuyOi5w==",
|
|
1720
|
-
"cpu": [
|
|
1854
|
+
"cpu": [
|
|
1855
|
+
"arm"
|
|
1856
|
+
],
|
|
1721
1857
|
"dev": true,
|
|
1722
1858
|
"license": "MIT",
|
|
1723
1859
|
"optional": true,
|
|
1724
|
-
"os": [
|
|
1860
|
+
"os": [
|
|
1861
|
+
"linux"
|
|
1862
|
+
]
|
|
1725
1863
|
},
|
|
1726
1864
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1727
1865
|
"version": "4.63.0",
|
|
1728
1866
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.63.0.tgz",
|
|
1729
1867
|
"integrity": "sha512-BBVTXziw8mY1a4ZbWME9tZyfzqXCDPqaC7Z3heQ29p5dkvXzwL0NwelO8zLa8c3RBKvl3YTuSnBgsBhYBtwjIw==",
|
|
1730
|
-
"cpu": [
|
|
1868
|
+
"cpu": [
|
|
1869
|
+
"arm"
|
|
1870
|
+
],
|
|
1731
1871
|
"dev": true,
|
|
1732
1872
|
"license": "MIT",
|
|
1733
1873
|
"optional": true,
|
|
1734
|
-
"os": [
|
|
1874
|
+
"os": [
|
|
1875
|
+
"linux"
|
|
1876
|
+
]
|
|
1735
1877
|
},
|
|
1736
1878
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1737
1879
|
"version": "4.63.0",
|
|
1738
1880
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.63.0.tgz",
|
|
1739
1881
|
"integrity": "sha512-w2Iyy9+RqKwx3d9qWMKsJg0FfRBsY0/pXNv0mCQ3ueRvJI6+QAScfD4nrMlzFLs2HNVW6Ew+mtZfDl9b7Ew5/Q==",
|
|
1740
|
-
"cpu": [
|
|
1882
|
+
"cpu": [
|
|
1883
|
+
"arm64"
|
|
1884
|
+
],
|
|
1741
1885
|
"dev": true,
|
|
1742
1886
|
"license": "MIT",
|
|
1743
1887
|
"optional": true,
|
|
1744
|
-
"os": [
|
|
1888
|
+
"os": [
|
|
1889
|
+
"linux"
|
|
1890
|
+
]
|
|
1745
1891
|
},
|
|
1746
1892
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1747
1893
|
"version": "4.63.0",
|
|
1748
1894
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.63.0.tgz",
|
|
1749
1895
|
"integrity": "sha512-YK++KtrFRHYE0P6/RtYEAy9t8F37znP+K03RrIuLPYOL6SVlObRumf/0OE4V/h63xL9DwkWbNssZfmA9hawuDA==",
|
|
1750
|
-
"cpu": [
|
|
1896
|
+
"cpu": [
|
|
1897
|
+
"arm64"
|
|
1898
|
+
],
|
|
1751
1899
|
"dev": true,
|
|
1752
1900
|
"license": "MIT",
|
|
1753
1901
|
"optional": true,
|
|
1754
|
-
"os": [
|
|
1902
|
+
"os": [
|
|
1903
|
+
"linux"
|
|
1904
|
+
]
|
|
1755
1905
|
},
|
|
1756
1906
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1757
1907
|
"version": "4.63.0",
|
|
1758
1908
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.63.0.tgz",
|
|
1759
1909
|
"integrity": "sha512-aBfOG6fP7YkkPmTqPwufRJeFyz7WPpECv9XNbnsk9+vg7rxdih0lbtEel7jcRng4LZrrmU3FfitCFyEj4BWDWg==",
|
|
1760
|
-
"cpu": [
|
|
1910
|
+
"cpu": [
|
|
1911
|
+
"loong64"
|
|
1912
|
+
],
|
|
1761
1913
|
"dev": true,
|
|
1762
1914
|
"license": "MIT",
|
|
1763
1915
|
"optional": true,
|
|
1764
|
-
"os": [
|
|
1916
|
+
"os": [
|
|
1917
|
+
"linux"
|
|
1918
|
+
]
|
|
1765
1919
|
},
|
|
1766
1920
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1767
1921
|
"version": "4.63.0",
|
|
1768
1922
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.63.0.tgz",
|
|
1769
1923
|
"integrity": "sha512-LGaHEOeHNAag9VuS1Crs5DFg4RrU9MPi2nVnNJk9DTePx/B6RRYKVmrIXt2h7YOJlwjaFJ6lwtFDliZxScTLrQ==",
|
|
1770
|
-
"cpu": [
|
|
1924
|
+
"cpu": [
|
|
1925
|
+
"loong64"
|
|
1926
|
+
],
|
|
1771
1927
|
"dev": true,
|
|
1772
1928
|
"license": "MIT",
|
|
1773
1929
|
"optional": true,
|
|
1774
|
-
"os": [
|
|
1930
|
+
"os": [
|
|
1931
|
+
"linux"
|
|
1932
|
+
]
|
|
1775
1933
|
},
|
|
1776
1934
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1777
1935
|
"version": "4.63.0",
|
|
1778
1936
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.63.0.tgz",
|
|
1779
1937
|
"integrity": "sha512-jClvk+J0FC3b7Udvegiw5/4hErbHtmsNsQgENnKXDWtNCJXsJYZH5WURvu7imDOO38xYml24eeh5x3A04ppwCw==",
|
|
1780
|
-
"cpu": [
|
|
1938
|
+
"cpu": [
|
|
1939
|
+
"ppc64"
|
|
1940
|
+
],
|
|
1781
1941
|
"dev": true,
|
|
1782
1942
|
"license": "MIT",
|
|
1783
1943
|
"optional": true,
|
|
1784
|
-
"os": [
|
|
1944
|
+
"os": [
|
|
1945
|
+
"linux"
|
|
1946
|
+
]
|
|
1785
1947
|
},
|
|
1786
1948
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1787
1949
|
"version": "4.63.0",
|
|
1788
1950
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.63.0.tgz",
|
|
1789
1951
|
"integrity": "sha512-0OJlaGK+8+B777Ql5okIpD7ua5Ro9+VB9Ve0OKa28OQJZ1RbuUBVNHK/e3pr4BROqsyPl1JrPO1ZxJseCNffcA==",
|
|
1790
|
-
"cpu": [
|
|
1952
|
+
"cpu": [
|
|
1953
|
+
"ppc64"
|
|
1954
|
+
],
|
|
1791
1955
|
"dev": true,
|
|
1792
1956
|
"license": "MIT",
|
|
1793
1957
|
"optional": true,
|
|
1794
|
-
"os": [
|
|
1958
|
+
"os": [
|
|
1959
|
+
"linux"
|
|
1960
|
+
]
|
|
1795
1961
|
},
|
|
1796
1962
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1797
1963
|
"version": "4.63.0",
|
|
1798
1964
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.63.0.tgz",
|
|
1799
1965
|
"integrity": "sha512-Ygsx+HoNH7afwi1bTIXbnTvVnsO+zurPLSYxybV1hHFVU72OWOCl6v05ql/z0hkpAPx+DK7Kn9Bi7MayCcjLTA==",
|
|
1800
|
-
"cpu": [
|
|
1966
|
+
"cpu": [
|
|
1967
|
+
"riscv64"
|
|
1968
|
+
],
|
|
1801
1969
|
"dev": true,
|
|
1802
1970
|
"license": "MIT",
|
|
1803
1971
|
"optional": true,
|
|
1804
|
-
"os": [
|
|
1972
|
+
"os": [
|
|
1973
|
+
"linux"
|
|
1974
|
+
]
|
|
1805
1975
|
},
|
|
1806
1976
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1807
1977
|
"version": "4.63.0",
|
|
1808
1978
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.63.0.tgz",
|
|
1809
1979
|
"integrity": "sha512-pDQxtMGb+OvG3fLwR2OkZlSd47hW+kWg4BYMG/++sR6RqorQccwPTDsxda5hPwiIeIErAnCF9ma3SAU06bdQtQ==",
|
|
1810
|
-
"cpu": [
|
|
1980
|
+
"cpu": [
|
|
1981
|
+
"riscv64"
|
|
1982
|
+
],
|
|
1811
1983
|
"dev": true,
|
|
1812
1984
|
"license": "MIT",
|
|
1813
1985
|
"optional": true,
|
|
1814
|
-
"os": [
|
|
1986
|
+
"os": [
|
|
1987
|
+
"linux"
|
|
1988
|
+
]
|
|
1815
1989
|
},
|
|
1816
1990
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1817
1991
|
"version": "4.63.0",
|
|
1818
1992
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.63.0.tgz",
|
|
1819
1993
|
"integrity": "sha512-0BnUG9mS8I4SSHr3XsxVhuCMEiu+rX61xxZF5vujso4LaiAGFZFxvDjg6Xn6tLPNTUAfuCvQYas4LMQMVsKRSQ==",
|
|
1820
|
-
"cpu": [
|
|
1994
|
+
"cpu": [
|
|
1995
|
+
"s390x"
|
|
1996
|
+
],
|
|
1821
1997
|
"dev": true,
|
|
1822
1998
|
"license": "MIT",
|
|
1823
1999
|
"optional": true,
|
|
1824
|
-
"os": [
|
|
2000
|
+
"os": [
|
|
2001
|
+
"linux"
|
|
2002
|
+
]
|
|
1825
2003
|
},
|
|
1826
2004
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1827
2005
|
"version": "4.63.0",
|
|
1828
2006
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.63.0.tgz",
|
|
1829
2007
|
"integrity": "sha512-Adu/VttB1dpPNW+FEacrZ+xVm9tFty84+RrFzsqlFaPxoJB+9XXyDGtp5dCOoBwGBIEVH0To7lExFXEx0BIF4A==",
|
|
1830
|
-
"cpu": [
|
|
2008
|
+
"cpu": [
|
|
2009
|
+
"x64"
|
|
2010
|
+
],
|
|
1831
2011
|
"dev": true,
|
|
1832
2012
|
"license": "MIT",
|
|
1833
2013
|
"optional": true,
|
|
1834
|
-
"os": [
|
|
2014
|
+
"os": [
|
|
2015
|
+
"linux"
|
|
2016
|
+
]
|
|
1835
2017
|
},
|
|
1836
2018
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1837
2019
|
"version": "4.63.0",
|
|
1838
2020
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.63.0.tgz",
|
|
1839
2021
|
"integrity": "sha512-NQ3bDvjUbFKmP23671xUlXtKmqVsUBd6M4PQCvbmNtOy06hnQIdKHy8oG/6S3R/S6He1JgPk6A5VT+prAJMYEw==",
|
|
1840
|
-
"cpu": [
|
|
2022
|
+
"cpu": [
|
|
2023
|
+
"x64"
|
|
2024
|
+
],
|
|
1841
2025
|
"dev": true,
|
|
1842
2026
|
"license": "MIT",
|
|
1843
2027
|
"optional": true,
|
|
1844
|
-
"os": [
|
|
2028
|
+
"os": [
|
|
2029
|
+
"linux"
|
|
2030
|
+
]
|
|
1845
2031
|
},
|
|
1846
2032
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1847
2033
|
"version": "4.63.0",
|
|
1848
2034
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.63.0.tgz",
|
|
1849
2035
|
"integrity": "sha512-u2eDAl4+0aFvA13GxlGBtTI3SS3sdgwgtV0HyjZ0QaQVCgNE+jqNGey+GtxWiq+wxr/UycAx/OnfJzApCFamvA==",
|
|
1850
|
-
"cpu": [
|
|
2036
|
+
"cpu": [
|
|
2037
|
+
"x64"
|
|
2038
|
+
],
|
|
1851
2039
|
"dev": true,
|
|
1852
2040
|
"license": "MIT",
|
|
1853
2041
|
"optional": true,
|
|
1854
|
-
"os": [
|
|
2042
|
+
"os": [
|
|
2043
|
+
"openbsd"
|
|
2044
|
+
]
|
|
1855
2045
|
},
|
|
1856
2046
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1857
2047
|
"version": "4.63.0",
|
|
1858
2048
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.63.0.tgz",
|
|
1859
2049
|
"integrity": "sha512-XvRb5vfW3wAZQ+ZUG21AnHHDKtNcw99eigzEhjr//NZ3u7SoBaPP0seSc7FgP7p1epAEdAoZckMW9WY/+4w70w==",
|
|
1860
|
-
"cpu": [
|
|
2050
|
+
"cpu": [
|
|
2051
|
+
"arm64"
|
|
2052
|
+
],
|
|
1861
2053
|
"dev": true,
|
|
1862
2054
|
"license": "MIT",
|
|
1863
2055
|
"optional": true,
|
|
1864
|
-
"os": [
|
|
2056
|
+
"os": [
|
|
2057
|
+
"openharmony"
|
|
2058
|
+
]
|
|
1865
2059
|
},
|
|
1866
2060
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1867
2061
|
"version": "4.63.0",
|
|
1868
2062
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.63.0.tgz",
|
|
1869
2063
|
"integrity": "sha512-iZPmniy4kNBf5yo2RezbkYNNK5HPbXE9+g+twnbqSng7dtLEJy1SKoxiE/ni4FDacjyuZpEeb9U054N4EoKHYw==",
|
|
1870
|
-
"cpu": [
|
|
2064
|
+
"cpu": [
|
|
2065
|
+
"arm64"
|
|
2066
|
+
],
|
|
1871
2067
|
"dev": true,
|
|
1872
2068
|
"license": "MIT",
|
|
1873
2069
|
"optional": true,
|
|
1874
|
-
"os": [
|
|
2070
|
+
"os": [
|
|
2071
|
+
"win32"
|
|
2072
|
+
]
|
|
1875
2073
|
},
|
|
1876
2074
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1877
2075
|
"version": "4.63.0",
|
|
1878
2076
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.63.0.tgz",
|
|
1879
2077
|
"integrity": "sha512-mFBBd+LF37fnE8JnYUOH+imj0aPFPK30vpar4ehJkgnLj9sZn8ZxiRENmLtgIwxK7TC8klF6N57fxdNBwQoqOA==",
|
|
1880
|
-
"cpu": [
|
|
2078
|
+
"cpu": [
|
|
2079
|
+
"ia32"
|
|
2080
|
+
],
|
|
1881
2081
|
"dev": true,
|
|
1882
2082
|
"license": "MIT",
|
|
1883
2083
|
"optional": true,
|
|
1884
|
-
"os": [
|
|
2084
|
+
"os": [
|
|
2085
|
+
"win32"
|
|
2086
|
+
]
|
|
1885
2087
|
},
|
|
1886
2088
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1887
2089
|
"version": "4.63.0",
|
|
1888
2090
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.63.0.tgz",
|
|
1889
2091
|
"integrity": "sha512-ujeqEY3B+zbGn3Z4Q03cUBG/LGWnBJncVT36WER31LcOsQk9+1dmINKKtvmmfChUvRbK1G0R8OhMWFgHgaZtAw==",
|
|
1890
|
-
"cpu": [
|
|
2092
|
+
"cpu": [
|
|
2093
|
+
"x64"
|
|
2094
|
+
],
|
|
1891
2095
|
"dev": true,
|
|
1892
2096
|
"license": "MIT",
|
|
1893
2097
|
"optional": true,
|
|
1894
|
-
"os": [
|
|
2098
|
+
"os": [
|
|
2099
|
+
"win32"
|
|
2100
|
+
]
|
|
1895
2101
|
},
|
|
1896
2102
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1897
2103
|
"version": "4.63.0",
|
|
1898
2104
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.63.0.tgz",
|
|
1899
2105
|
"integrity": "sha512-hncn90N4sOky0L2LKE5oESKLbxCPeVo4eLA2LSMoDzM+879ml4WSr+Rr4DWknNIVVvS1Hirkc9hx02W6YxS8rQ==",
|
|
1900
|
-
"cpu": [
|
|
2106
|
+
"cpu": [
|
|
2107
|
+
"x64"
|
|
2108
|
+
],
|
|
1901
2109
|
"dev": true,
|
|
1902
2110
|
"license": "MIT",
|
|
1903
2111
|
"optional": true,
|
|
1904
|
-
"os": [
|
|
2112
|
+
"os": [
|
|
2113
|
+
"win32"
|
|
2114
|
+
]
|
|
1905
2115
|
},
|
|
1906
2116
|
"node_modules/@sinclair/typebox": {
|
|
1907
2117
|
"version": "0.27.10",
|
|
@@ -2424,7 +2634,9 @@
|
|
|
2424
2634
|
"resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.0.0.tgz",
|
|
2425
2635
|
"integrity": "sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==",
|
|
2426
2636
|
"license": "MIT",
|
|
2427
|
-
"workspaces": [
|
|
2637
|
+
"workspaces": [
|
|
2638
|
+
"addons/*"
|
|
2639
|
+
]
|
|
2428
2640
|
},
|
|
2429
2641
|
"node_modules/abort-controller": {
|
|
2430
2642
|
"version": "3.0.0",
|
|
@@ -4137,7 +4349,9 @@
|
|
|
4137
4349
|
"hasInstallScript": true,
|
|
4138
4350
|
"license": "MIT",
|
|
4139
4351
|
"optional": true,
|
|
4140
|
-
"os": [
|
|
4352
|
+
"os": [
|
|
4353
|
+
"darwin"
|
|
4354
|
+
],
|
|
4141
4355
|
"engines": {
|
|
4142
4356
|
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
4143
4357
|
}
|
|
@@ -6266,7 +6480,9 @@
|
|
|
6266
6480
|
"hasInstallScript": true,
|
|
6267
6481
|
"license": "MIT",
|
|
6268
6482
|
"optional": true,
|
|
6269
|
-
"os": [
|
|
6483
|
+
"os": [
|
|
6484
|
+
"darwin"
|
|
6485
|
+
],
|
|
6270
6486
|
"engines": {
|
|
6271
6487
|
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
6272
6488
|
}
|
|
@@ -6975,46 +7191,66 @@
|
|
|
6975
7191
|
"version": "0.1.9",
|
|
6976
7192
|
"resolved": "https://registry.npmjs.org/sqlite-vec-darwin-arm64/-/sqlite-vec-darwin-arm64-0.1.9.tgz",
|
|
6977
7193
|
"integrity": "sha512-jSsZpE42OfBkGL/ItyJTVCUwl6o6Ka3U5rc4j+UBDIQzC1ulSSKMEhQLthsOnF/MdAf1MuAkYhkdKmmcjaIZQg==",
|
|
6978
|
-
"cpu": [
|
|
7194
|
+
"cpu": [
|
|
7195
|
+
"arm64"
|
|
7196
|
+
],
|
|
6979
7197
|
"license": "MIT OR Apache",
|
|
6980
7198
|
"optional": true,
|
|
6981
|
-
"os": [
|
|
7199
|
+
"os": [
|
|
7200
|
+
"darwin"
|
|
7201
|
+
]
|
|
6982
7202
|
},
|
|
6983
7203
|
"node_modules/sqlite-vec-darwin-x64": {
|
|
6984
7204
|
"version": "0.1.9",
|
|
6985
7205
|
"resolved": "https://registry.npmjs.org/sqlite-vec-darwin-x64/-/sqlite-vec-darwin-x64-0.1.9.tgz",
|
|
6986
7206
|
"integrity": "sha512-KDlVyqQT7pnOhU1ymB9gs7dMbSoVmKHitT+k1/xkjarcX8bBqPxWrGlK/R+C5WmWkfvWwyq5FfXfiBYCBs6PlA==",
|
|
6987
|
-
"cpu": [
|
|
7207
|
+
"cpu": [
|
|
7208
|
+
"x64"
|
|
7209
|
+
],
|
|
6988
7210
|
"license": "MIT OR Apache",
|
|
6989
7211
|
"optional": true,
|
|
6990
|
-
"os": [
|
|
7212
|
+
"os": [
|
|
7213
|
+
"darwin"
|
|
7214
|
+
]
|
|
6991
7215
|
},
|
|
6992
7216
|
"node_modules/sqlite-vec-linux-arm64": {
|
|
6993
7217
|
"version": "0.1.9",
|
|
6994
7218
|
"resolved": "https://registry.npmjs.org/sqlite-vec-linux-arm64/-/sqlite-vec-linux-arm64-0.1.9.tgz",
|
|
6995
7219
|
"integrity": "sha512-5wXVJ9c9kR4CHm/wVqXb/R+XUHTdpZ4nWbPHlS+gc9qQFVHs92Km4bPnCKX4rtcPMzvNis+SIzMJR1SCEwpuUw==",
|
|
6996
|
-
"cpu": [
|
|
7220
|
+
"cpu": [
|
|
7221
|
+
"arm64"
|
|
7222
|
+
],
|
|
6997
7223
|
"license": "MIT OR Apache",
|
|
6998
7224
|
"optional": true,
|
|
6999
|
-
"os": [
|
|
7225
|
+
"os": [
|
|
7226
|
+
"linux"
|
|
7227
|
+
]
|
|
7000
7228
|
},
|
|
7001
7229
|
"node_modules/sqlite-vec-linux-x64": {
|
|
7002
7230
|
"version": "0.1.9",
|
|
7003
7231
|
"resolved": "https://registry.npmjs.org/sqlite-vec-linux-x64/-/sqlite-vec-linux-x64-0.1.9.tgz",
|
|
7004
7232
|
"integrity": "sha512-w3tCH8xK2finW8fQJ/m8uqKodXUZ9KAuAar2UIhz4BHILfpE0WM/MTGCRfa7RjYbrYim5Luk3guvMOGI7T7JQA==",
|
|
7005
|
-
"cpu": [
|
|
7233
|
+
"cpu": [
|
|
7234
|
+
"x64"
|
|
7235
|
+
],
|
|
7006
7236
|
"license": "MIT OR Apache",
|
|
7007
7237
|
"optional": true,
|
|
7008
|
-
"os": [
|
|
7238
|
+
"os": [
|
|
7239
|
+
"linux"
|
|
7240
|
+
]
|
|
7009
7241
|
},
|
|
7010
7242
|
"node_modules/sqlite-vec-windows-x64": {
|
|
7011
7243
|
"version": "0.1.9",
|
|
7012
7244
|
"resolved": "https://registry.npmjs.org/sqlite-vec-windows-x64/-/sqlite-vec-windows-x64-0.1.9.tgz",
|
|
7013
7245
|
"integrity": "sha512-y3gEIyy/17bq2QFPQOWLE68TYWcRZkBQVA2XLrTPHNTOp55xJi/BBBmOm40tVMDMjtP+Elpk6UBUXdaq+46b0Q==",
|
|
7014
|
-
"cpu": [
|
|
7246
|
+
"cpu": [
|
|
7247
|
+
"x64"
|
|
7248
|
+
],
|
|
7015
7249
|
"license": "MIT OR Apache",
|
|
7016
7250
|
"optional": true,
|
|
7017
|
-
"os": [
|
|
7251
|
+
"os": [
|
|
7252
|
+
"win32"
|
|
7253
|
+
]
|
|
7018
7254
|
},
|
|
7019
7255
|
"node_modules/stack-utils": {
|
|
7020
7256
|
"version": "2.0.6",
|