-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbun.lock
More file actions
4335 lines (2622 loc) · 415 KB
/
Copy pathbun.lock
File metadata and controls
4335 lines (2622 loc) · 415 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"lockfileVersion": 1,
"configVersion": 1,
"workspaces": {
"": {
"name": "synergy",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.4",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-workbench": "workspace:*",
"@napi-rs/canvas": "1.0.0",
"@tsconfig/bun": "catalog:",
"dependency-cruiser": "18.2.0",
"husky": "9.1.7",
"knip": "6.24.0",
"oxlint": "1.72.0",
"prettier": "3.6.2",
"publint": "0.3.21",
"turbo": "2.5.6",
"typescript": "catalog:",
"zod": "catalog:",
},
},
"apps/desktop": {
"name": "@ericsanchezok/synergy-desktop",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-browser": "workspace:*",
"@ericsanchezok/synergy-computer": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@trycua/cua-driver": "0.23.2",
"electron-updater": "6.6.8",
"zod": "catalog:",
},
"devDependencies": {
"@electron/asar": "3.4.1",
"@types/node": "catalog:",
"@types/unzipper": "0.10.11",
"electron": "42.5.0",
"electron-builder": "26.15.7",
"electron-builder-squirrel-windows": "26.15.7",
"typescript": "catalog:",
"unzipper": "^0.12.3",
},
},
"apps/web": {
"name": "@ericsanchezok/synergy-app",
"version": "1.1.26",
"dependencies": {
"@aarkue/tiptap-math-extension": "1.4.0",
"@ericsanchezok/synergy-browser": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-ui": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@kobalte/core": "catalog:",
"@lingui/core": "catalog:",
"@lingui/solid": "catalog:",
"@pierre/diffs": "catalog:",
"@shikijs/transformers": "3.9.2",
"@solid-primitives/active-element": "2.1.3",
"@solid-primitives/audio": "1.4.2",
"@solid-primitives/event-bus": "1.1.2",
"@solid-primitives/media": "2.3.3",
"@solid-primitives/resize-observer": "2.1.3",
"@solid-primitives/scroll": "2.1.3",
"@solid-primitives/storage": "catalog:",
"@solid-primitives/websocket": "1.3.1",
"@solidjs/meta": "catalog:",
"@solidjs/router": "catalog:",
"@thisbeyond/solid-dnd": "0.7.5",
"@tiptap/core": "^3.27.2",
"@tiptap/extension-bubble-menu": "^3.27.2",
"@tiptap/extension-file-handler": "^3.27.2",
"@tiptap/extension-floating-menu": "^3.27.2",
"@tiptap/extension-image": "^3.27.2",
"@tiptap/extension-link": "^3.27.2",
"@tiptap/extension-placeholder": "^3.27.2",
"@tiptap/extension-table": "^3.27.2",
"@tiptap/extension-table-cell": "^3.27.2",
"@tiptap/extension-table-header": "^3.27.2",
"@tiptap/extension-table-row": "^3.27.2",
"@tiptap/extension-task-item": "^3.27.2",
"@tiptap/extension-task-list": "^3.27.2",
"@tiptap/pm": "^3.27.2",
"@tiptap/starter-kit": "^3.27.2",
"@tiptap/suggestion": "^3.27.2",
"chart.js": "4.5.1",
"croner": "10.0.1",
"cropperjs": "1.6.2",
"diff": "catalog:",
"dompurify": "3.4.11",
"fuzzysort": "catalog:",
"ghostty-web": "0.3.0",
"jsonc-parser": "3.3.1",
"katex": "catalog:",
"marked": "catalog:",
"marked-shiki": "catalog:",
"mermaid": "11.13.0",
"monaco-editor": "0.55.1",
"pdfjs-dist": "catalog:",
"prosemirror-model": "1.25.10",
"remeda": "catalog:",
"shiki": "catalog:",
"solid-chartjs": "1.3.11",
"solid-js": "catalog:",
"solid-list": "catalog:",
"solid-tiptap": "0.8.0",
"tailwindcss": "catalog:",
"tiptap-extension-code-block-shiki": "1.0.0",
"virtua": "catalog:",
"web-vitals": "5.1.0",
"zod": "catalog:",
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-typescript": "catalog:",
"@happy-dom/global-registrator": "20.0.11",
"@lingui/cli": "catalog:",
"@lingui/format-po": "catalog:",
"@lingui/vite-plugin": "catalog:",
"@tailwindcss/vite": "catalog:",
"@tsconfig/bun": "1.0.9",
"@types/babel__core": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"babel-preset-solid": "catalog:",
"playwright": "1.61.0",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-icons-spritesheet": "3.0.1",
"vite-plugin-solid": "catalog:",
},
},
"benchmark": {
"name": "@ericsanchezok/synergy-benchmark",
"version": "0.1.0",
"dependencies": {
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-library": "workspace:*",
"@ericsanchezok/synergy-product-runtime": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
},
},
"packages/agent-integrations": {
"name": "@ericsanchezok/synergy-agent-integrations",
"version": "1.1.26",
"dependencies": {
"@agentclientprotocol/sdk": "0.5.1",
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@modelcontextprotocol/sdk": "1.29.0",
"ai": "catalog:",
"hono": "catalog:",
"hono-openapi": "catalog:",
"open": "10.1.2",
"remeda": "catalog:",
"vscode-jsonrpc": "8.2.1",
"vscode-languageserver-types": "3.17.5",
"zod": "catalog:",
},
"devDependencies": {
"@ast-grep/cli-darwin-arm64": "0.40.5",
"@ast-grep/cli-darwin-x64": "0.40.5",
"@ast-grep/cli-linux-arm64-gnu": "0.40.5",
"@ast-grep/cli-linux-x64-gnu": "0.40.5",
"@ast-grep/cli-win32-x64-msvc": "0.40.5",
"@ericsanchezok/synergy-connections": "workspace:*",
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/browser": {
"name": "@ericsanchezok/synergy-browser",
"version": "1.1.26",
"dependencies": {
"zod": "catalog:",
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:",
},
},
"packages/browser-runtime": {
"name": "@ericsanchezok/synergy-browser-runtime",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-browser": "workspace:*",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"hono": "catalog:",
"hono-openapi": "catalog:",
"playwright-core": "1.61.0",
"unzipper": "^0.12.3",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/unzipper": "0.10.11",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"@zip.js/zip.js": "2.8.26",
"typescript": "catalog:",
},
},
"packages/cli": {
"name": "@ericsanchezok/synergy-cli",
"version": "1.1.26",
"bin": {
"synergy": "./bin/synergy",
},
"dependencies": {
"@ai-sdk/openai-compatible": "1.0.42",
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"ai": "catalog:",
"boxen": "8.0.1",
"figlet": "1.11.0",
"gradient-string": "3.0.0",
"jsonc-parser": "3.3.1",
"remeda": "catalog:",
"yargs": "18.0.0",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/yargs": "17.0.33",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/computer": {
"name": "@ericsanchezok/synergy-computer",
"version": "1.1.26",
"dependencies": {
"zod": "catalog:",
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:",
},
},
"packages/computer-runtime": {
"name": "@ericsanchezok/synergy-computer-runtime",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-computer": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@hono/standard-validator": "^0.2.0",
"hono": "catalog:",
"hono-openapi": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/connections": {
"name": "@ericsanchezok/synergy-connections",
"version": "1.1.26",
"dependencies": {
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@ericsanchezok/synergy-workflows": "workspace:*",
"@larksuiteoapi/node-sdk": "1.71.1",
"@resvg/resvg-wasm": "2.6.2",
"@sii-holos/holos-cli": "0.1.1",
"hono": "catalog:",
"hono-openapi": "catalog:",
"imapflow": "1.3.2",
"mailparser": "3.9.14",
"nodemailer": "8.0.3",
"open": "10.1.2",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-link": "workspace:*",
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/mailparser": "3.4.6",
"@types/node": "catalog:",
"@types/nodemailer": "7.0.11",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/harness": {
"name": "@ericsanchezok/synergy-harness",
"version": "1.1.26",
"dependencies": {
"@ai-sdk/provider": "2.0.3",
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-secret-detection": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@zip.js/zip.js": "2.8.26",
"ai": "catalog:",
"ajv": "8.18.0",
"decimal.js": "10.5.0",
"diff": "catalog:",
"fuzzysort": "3.1.0",
"gray-matter": "4.0.3",
"hono": "catalog:",
"js-tiktoken": "1.0.21",
"jsonc-parser": "3.3.1",
"remeda": "catalog:",
"ulid": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"hono-openapi": "catalog:",
"typescript": "catalog:",
},
},
"packages/library": {
"name": "@ericsanchezok/synergy-library",
"version": "1.1.26",
"dependencies": {
"@ai-sdk/openai-compatible": "1.0.42",
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@huggingface/transformers": "4.2.0",
"ai": "catalog:",
"hono": "catalog:",
"hono-openapi": "catalog:",
"onnxruntime-web": "1.26.0-dev.20260416-b7804b056c",
"sqlite-vec": "0.1.7-alpha.2",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"sqlite-vec-darwin-arm64": "0.1.7-alpha.2",
"sqlite-vec-darwin-x64": "0.1.7-alpha.2",
"sqlite-vec-linux-arm64": "0.1.7-alpha.2",
"sqlite-vec-linux-x64": "0.1.7-alpha.2",
"sqlite-vec-windows-x64": "0.1.7-alpha.2",
"typescript": "catalog:",
},
},
"packages/media": {
"name": "@ericsanchezok/synergy-media",
"version": "1.1.26",
"dependencies": {
"@ai-sdk/openai": "2.0.111",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@zip.js/zip.js": "2.8.26",
"ai": "catalog:",
"hono": "catalog:",
"hono-openapi": "catalog:",
"markitdown-ts": "0.0.10",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/note": {
"name": "@ericsanchezok/synergy-note",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"hono": "catalog:",
"hono-openapi": "catalog:",
"remeda": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/plugin": {
"name": "@ericsanchezok/synergy-plugin",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
},
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"solid-js": "catalog:",
"typescript": "catalog:",
"zod": "catalog:",
},
"peerDependencies": {
"solid-js": ">=1.9.10 <2.0.0",
"zod": ">=4.0.0",
},
},
"packages/plugin-host": {
"name": "@ericsanchezok/synergy-plugin-host",
"version": "1.1.26",
"dependencies": {
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-plugin-kit": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"ajv": "8.18.0",
"hono": "catalog:",
"hono-openapi": "catalog:",
"yargs": "18.0.0",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/yargs": "17.0.33",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/plugin-kit": {
"name": "@ericsanchezok/synergy-plugin-kit",
"version": "1.1.26",
"bin": {
"synergy-plugin": "./dist/cli.js",
"synergy-plugin-kit": "./dist/cli.js",
},
"dependencies": {
"@babel/core": "catalog:",
"@babel/preset-typescript": "catalog:",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"babel-preset-solid": "catalog:",
"css-tree": "3.2.1",
"json-schema-to-typescript": "16.0.0",
"prettier": "3.6.2",
"yargs": "18.0.0",
},
"devDependencies": {
"@happy-dom/global-registrator": "catalog:",
"@tsconfig/node22": "catalog:",
"@types/babel__core": "catalog:",
"@types/bun": "catalog:",
"@types/css-tree": "3.2.0",
"@types/node": "catalog:",
"@types/yargs": "17.0.33",
"@typescript/native-preview": "catalog:",
"ajv": "8.18.0",
"solid-js": "catalog:",
"typescript": "catalog:",
"zod": "catalog:",
},
"peerDependencies": {
"zod": ">=4.0.0",
},
},
"packages/product-runtime": {
"name": "@ericsanchezok/synergy-product-runtime",
"version": "1.1.26",
"dependencies": {
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-agent-integrations": "workspace:*",
"@ericsanchezok/synergy-browser-runtime": "workspace:*",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-computer-runtime": "workspace:*",
"@ericsanchezok/synergy-connections": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-library": "workspace:*",
"@ericsanchezok/synergy-media": "workspace:*",
"@ericsanchezok/synergy-note": "workspace:*",
"@ericsanchezok/synergy-plugin-host": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@ericsanchezok/synergy-workbench": "workspace:*",
"@ericsanchezok/synergy-workflows": "workspace:*",
"hono": "catalog:",
"hono-openapi": "catalog:",
"open": "10.1.2",
"yargs": "18.0.0",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-plugin-kit": "workspace:*",
"@ericsanchezok/synergy-testing": "workspace:*",
"@modelcontextprotocol/sdk": "1.29.0",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/yargs": "17.0.33",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"@zip.js/zip.js": "2.8.26",
"ai": "catalog:",
"croner": "10.0.1",
"jsonc-parser": "3.3.1",
"playwright-core": "1.61.0",
"typescript": "catalog:",
},
},
"packages/runtime-local": {
"name": "@ericsanchezok/synergy-runtime-local",
"version": "1.1.26",
"dependencies": {
"@ai-sdk/amazon-bedrock": "3.0.57",
"@ai-sdk/anthropic": "2.0.98",
"@ai-sdk/azure": "2.0.82",
"@ai-sdk/cerebras": "1.0.33",
"@ai-sdk/cohere": "2.0.21",
"@ai-sdk/deepinfra": "1.0.30",
"@ai-sdk/gateway": "2.0.23",
"@ai-sdk/google": "2.0.49",
"@ai-sdk/google-vertex": "3.0.81",
"@ai-sdk/groq": "2.0.33",
"@ai-sdk/mistral": "2.0.26",
"@ai-sdk/openai": "2.0.111",
"@ai-sdk/openai-compatible": "1.0.42",
"@ai-sdk/perplexity": "2.0.22",
"@ai-sdk/togetherai": "1.0.30",
"@ai-sdk/vercel": "1.0.31",
"@ai-sdk/xai": "2.0.42",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@openrouter/ai-sdk-provider": "1.5.2",
"@parcel/watcher": "2.5.6",
"@zip.js/zip.js": "2.8.26",
"bun-pty": "0.4.4",
"diff": "catalog:",
"fuzzysort": "3.1.0",
"ignore": "7.0.5",
"jsonc-parser": "3.3.1",
"lru-cache": "catalog:",
"tree-sitter-bash": "0.25.0",
"turndown": "7.2.0",
"ulid": "catalog:",
"web-tree-sitter": "0.25.10",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@parcel/watcher-darwin-arm64": "2.5.6",
"@parcel/watcher-darwin-x64": "2.5.6",
"@parcel/watcher-linux-arm64-glibc": "2.5.6",
"@parcel/watcher-linux-arm64-musl": "2.5.6",
"@parcel/watcher-linux-x64-glibc": "2.5.6",
"@parcel/watcher-linux-x64-musl": "2.5.6",
"@parcel/watcher-win32-arm64": "2.5.6",
"@parcel/watcher-win32-x64": "2.5.6",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/turndown": "5.0.5",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"ai": "catalog:",
"typescript": "catalog:",
},
},
"packages/sdk/js": {
"name": "@ericsanchezok/synergy-sdk",
"version": "1.1.26",
"devDependencies": {
"@hey-api/openapi-ts": "0.88.1",
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"typescript": "catalog:",
},
},
"packages/secret-detection": {
"name": "@ericsanchezok/synergy-secret-detection",
"version": "1.1.26",
"dependencies": {
"zod": "catalog:",
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:",
},
},
"packages/server": {
"name": "@ericsanchezok/synergy-server",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@hono/standard-validator": "^0.2.0",
"bonjour-service": "1.3.0",
"hono": "catalog:",
"hono-openapi": "catalog:",
"remeda": "catalog:",
"zod": "catalog:",
"zod-openapi": "4.2.4",
"zod-to-json-schema": "3.24.5",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/synergy-link": {
"name": "@ericsanchezok/synergy-link",
"version": "2.0.0",
"bin": {
"synergy-link": "./src/cli.ts",
},
"dependencies": {
"@clack/prompts": "1.0.0-alpha.1",
"@ericsanchezok/synergy-link-protocol": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"jsonc-parser": "3.3.1",
"picocolors": "1.1.1",
"zod": "catalog:",
},
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:",
},
},
"packages/synergy-link-protocol": {
"name": "@ericsanchezok/synergy-link-protocol",
"version": "2.0.0",
"dependencies": {
"zod": "catalog:",
},
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:",
},
},
"packages/testing": {
"name": "@ericsanchezok/synergy-testing",
"version": "1.1.26",
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@zip.js/zip.js": "2.8.26",
},
"devDependencies": {
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:",
"typescript": "catalog:",
},
},
"packages/ui": {
"name": "@ericsanchezok/synergy-ui",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-sdk": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"@kobalte/core": "catalog:",
"@pierre/diffs": "catalog:",
"@shikijs/themes": "catalog:",
"@shikijs/transformers": "3.9.2",
"@solid-primitives/bounds": "0.1.3",
"@solid-primitives/media": "2.3.3",
"@solid-primitives/resize-observer": "2.1.3",
"@solidjs/meta": "catalog:",
"@typescript/native-preview": "catalog:",
"dompurify": "3.4.11",
"fuzzysort": "catalog:",
"katex": "catalog:",
"lru_map": "0.4.1",
"lucide-solid": "0.577.0",
"marked": "catalog:",
"marked-katex-extension": "5.1.6",
"marked-shiki": "catalog:",
"remeda": "catalog:",
"shiki": "catalog:",
"solid-js": "catalog:",
"solid-list": "catalog:",
"streaming-markdown": "0.2.15",
"virtua": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@lingui/core": "catalog:",
"@lingui/solid": "catalog:",
"@tailwindcss/vite": "catalog:",
"@tsconfig/node22": "catalog:",
"@types/bun": "catalog:",
"@types/jsdom": "21.1.7",
"jsdom": "25.0.1",
"playwright": "1.61.0",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-icons-spritesheet": "3.0.1",
"vite-plugin-solid": "catalog:",
},
"peerDependencies": {
"@lingui/core": "catalog:",
"@lingui/solid": "catalog:",
},
},
"packages/util": {
"name": "@ericsanchezok/synergy-util",
"version": "1.1.26",
"dependencies": {
"zod": "catalog:",
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:",
},
},
"packages/workbench": {
"name": "@ericsanchezok/synergy-workbench",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-agent-integrations": "workspace:*",
"@ericsanchezok/synergy-browser-runtime": "workspace:*",
"@ericsanchezok/synergy-cli": "workspace:*",
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-plugin-host": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"hono": "catalog:",
"hono-openapi": "catalog:",
"web-push": "3.6.7",
"yargs": "18.0.0",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/web-push": "3.6.4",
"@types/yargs": "17.0.33",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
"packages/workflows": {
"name": "@ericsanchezok/synergy-workflows",
"version": "1.1.26",
"dependencies": {
"@ericsanchezok/synergy-harness": "workspace:*",
"@ericsanchezok/synergy-library": "workspace:*",
"@ericsanchezok/synergy-note": "workspace:*",
"@ericsanchezok/synergy-plugin": "workspace:*",
"@ericsanchezok/synergy-plugin-host": "workspace:*",
"@ericsanchezok/synergy-runtime-local": "workspace:*",
"@ericsanchezok/synergy-server": "workspace:*",
"@ericsanchezok/synergy-util": "workspace:*",
"croner": "10.0.1",
"hono": "catalog:",
"hono-openapi": "catalog:",
"zod": "catalog:",
},
"devDependencies": {
"@ericsanchezok/synergy-testing": "workspace:*",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"typescript": "catalog:",
},
},
},
"trustedDependencies": [
"electron",
"esbuild",
"protobufjs",
"web-tree-sitter",
"tree-sitter-bash",
],
"patchedDependencies": {
"@pierre/diffs@1.3.3": "patches/@pierre%2Fdiffs@1.3.3.patch",
"ghostty-web@0.3.0": "patches/ghostty-web@0.3.0.patch",
},
"overrides": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"eventsource-parser": "3.1.0",
"prosemirror-model": "1.25.10",
"prosemirror-transform": "1.12.0",
"prosemirror-view": "1.42.0",
},
"catalog": {
"@babel/core": "7.28.4",
"@babel/preset-typescript": "7.28.5",
"@cloudflare/workers-types": "4.20251008.0",
"@happy-dom/global-registrator": "20.0.11",
"@hono/zod-validator": "0.4.2",
"@kobalte/core": "0.13.11",
"@lingui/cli": "6.5.0",
"@lingui/core": "6.5.0",
"@lingui/format-po": "6.5.0",
"@lingui/solid": "6.5.0",
"@lingui/vite-plugin": "6.5.0",
"@octokit/rest": "22.0.0",
"@pierre/diffs": "1.3.3",
"@shikijs/themes": "4.2.0",
"@solid-primitives/storage": "4.3.3",
"@solidjs/meta": "0.29.4",
"@solidjs/router": "0.15.4",
"@solidjs/start": "https://pkg.pr.new/@solidjs/start@dfb2020",
"@tailwindcss/vite": "4.1.11",
"@tsconfig/bun": "1.0.9",
"@tsconfig/node22": "22.0.2",
"@types/babel__core": "7.20.5",
"@types/bun": "1.3.14",
"@types/node": "22.13.9",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"ai": "5.0.212",
"babel-preset-solid": "1.9.10",
"diff": "8.0.2",
"fuzzysort": "3.1.0",
"hono": "4.12.30",
"hono-openapi": "1.1.2",
"katex": "0.16.38",
"lru-cache": "11.2.4",
"marked": "17.0.1",
"marked-shiki": "1.2.1",
"pdfjs-dist": "5.4.296",
"remeda": "2.26.0",
"shiki": "3.20.0",
"solid-js": "1.9.15",
"solid-list": "0.3.0",
"tailwindcss": "4.1.11",
"typescript": "5.8.2",
"ulid": "3.0.1",
"virtua": "0.42.3",
"vite": "7.1.4",
"vite-plugin-solid": "2.11.10",
"zod": "4.1.8",
},
"packages": {
"@aarkue/tiptap-math-extension": ["@aarkue/tiptap-math-extension@1.4.0", "", { "dependencies": { "evaluatex": "^2.2.0", "katex": "^0.16.7" }, "peerDependencies": { "@tiptap/core": "^3.0.0", "@tiptap/pm": "^3.0.0" } }, "sha512-vCu/6WgO2yJ2cFnvsOL6kQCcWRWDm7OJ5I64KLyXIGGzIA2HuVhSyfuWeoNg51YVkEqlxZNTUgy0MXw6OTvrQg=="],
"@agentclientprotocol/sdk": ["@agentclientprotocol/sdk@0.5.1", "", { "dependencies": { "zod": "^3.0.0" } }, "sha512-9bq2TgjhLBSUSC5jE04MEe+Hqw8YePzKghhYZ9QcjOyonY3q2oJfX6GoSO83hURpEnsqEPIrex6VZN3+61fBJg=="],
"@ai-sdk/amazon-bedrock": ["@ai-sdk/amazon-bedrock@3.0.57", "", { "dependencies": { "@ai-sdk/anthropic": "2.0.45", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.17", "@smithy/eventstream-codec": "^4.0.1", "@smithy/util-utf8": "^4.0.0", "aws4fetch": "^1.0.20" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-mOUSLe+RgZzx0rtL1p9QXmSd/08z1EkBR+vQ1ydpd1t5P0Nx2kB8afiukEgM8nuDvmO9eYQlp7VTy1n5ffPs2g=="],
"@ai-sdk/anthropic": ["@ai-sdk/anthropic@2.0.98", "", { "dependencies": { "@ai-sdk/provider": "2.0.3", "@ai-sdk/provider-utils": "3.0.35" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/e7XjaLSm72prXRDfOgJNYOQJ1UTli40/Wx7EV2I2mGfmdgX5ALFCyy74t79Hbelpq1N707XBrWXwmb1BPzZCQ=="],
"@ai-sdk/azure": ["@ai-sdk/azure@2.0.82", "", { "dependencies": { "@ai-sdk/openai": "2.0.80", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.18" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-Bpab51ETBB4adZC1xGMYsryL/CB8j1sA+t5aDqhRv3t3WRLTxhaBDcFKtQTIuxiEQTFosz9Q2xQqdfBvQm5jHw=="],
"@ai-sdk/cerebras": ["@ai-sdk/cerebras@1.0.33", "", { "dependencies": { "@ai-sdk/openai-compatible": "1.0.29", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-2gSSS/7kunIwMdC4td5oWsUAzoLw84ccGpz6wQbxVnrb1iWnrEnKa5tRBduaP6IXpzLWsu8wME3+dQhZy+gT7w=="],
"@ai-sdk/cohere": ["@ai-sdk/cohere@2.0.21", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-ZjaZFvJlc5XOPi3QwTLEFZbHIgTJc6YGvxz+8zIMGVZi/hdynR8/f/C1A9x6mhzmBtAqi/dZ2h11oouAQH5z4g=="],
"@ai-sdk/deepinfra": ["@ai-sdk/deepinfra@1.0.30", "", { "dependencies": { "@ai-sdk/openai-compatible": "1.0.29", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-XK8oRZFApzo6xnS5C+FhWUUkB2itA5Nfon3pU9dJVM0goViq8GwdleZTBRqhu4DE4KJURo5DGWpJr2hfV54cEg=="],
"@ai-sdk/gateway": ["@ai-sdk/gateway@2.0.23", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19", "@vercel/oidc": "3.0.5" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-qmX7afPRszUqG5hryHF3UN8ITPIRSGmDW6VYCmByzjoUkgm3MekzSx2hMV1wr0P+llDeuXb378SjqUfpvWJulg=="],
"@ai-sdk/google": ["@ai-sdk/google@2.0.49", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-efwKk4mOV0SpumUaQskeYABk37FJPmEYwoDJQEjyLRmGSjtHRe9P5Cwof5ffLvaFav2IaJpBGEz98pyTs7oNWA=="],
"@ai-sdk/google-vertex": ["@ai-sdk/google-vertex@3.0.81", "", { "dependencies": { "@ai-sdk/anthropic": "2.0.50", "@ai-sdk/google": "2.0.44", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.18", "google-auth-library": "^9.15.0" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-yrl5Ug0Mqwo9ya45oxczgy2RWgpEA/XQQCSFYP+3NZMQ4yA3Iim1vkOjVCsGaZZ8rjVk395abi1ZMZV0/6rqVA=="],
"@ai-sdk/groq": ["@ai-sdk/groq@2.0.33", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-FWGl7xNr88NBveao3y9EcVWYUt9ABPrwLFY7pIutSNgaTf32vgvyhREobaMrLU4Scr5G/2tlNqOPZ5wkYMaZig=="],
"@ai-sdk/mistral": ["@ai-sdk/mistral@2.0.26", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-jxDB++4WI1wEx5ONNBI+VbkmYJOYIuS8UQY13/83UGRaiW7oB/WHiH4ETe6KzbKpQPB3XruwTJQjUMsMfKyTXA=="],
"@ai-sdk/openai": ["@ai-sdk/openai@2.0.111", "", { "dependencies": { "@ai-sdk/provider": "2.0.3", "@ai-sdk/provider-utils": "3.0.28" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-cpkXl1yK58E2A6xBrVKNkdKDePG6Y+8SkfZQz5+F+18IdWBw68YPT+qM1Id4R2hlBO6FHx/31KZngxKO5ZV4Rw=="],
"@ai-sdk/openai-compatible": ["@ai-sdk/openai-compatible@1.0.42", "", { "dependencies": { "@ai-sdk/provider": "2.0.3", "@ai-sdk/provider-utils": "3.0.28" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-zEvULhRonXDacqpjJGgOhADHsQnPwrx3dWj0wOev5ASUlzVlOO8PhUhXE+tr8v70xc4xmXHEkVSAV/MGVqu69w=="],
"@ai-sdk/perplexity": ["@ai-sdk/perplexity@2.0.22", "", { "dependencies": { "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-zwzcnk08R2J3mZcQPn4Ifl4wYGrvANR7jsBB0hCTUSbb+Rx3ybpikSWiGuXQXxdiRc1I5MWXgj70m+bZaLPvHw=="],
"@ai-sdk/provider": ["@ai-sdk/provider@2.0.3", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-h88OPkavHTiN9tMn2l5awAznGB0lXzjcLhgR1/rvjB2zlLprsNxbM2tt6OJsHUxduLC3klq0/eqaSf6fX5XVww=="],
"@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@3.0.28", "", { "dependencies": { "@ai-sdk/provider": "2.0.3", "@standard-schema/spec": "^1.0.0", "eventsource-parser": "^3.0.6" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-bXlX1WX7E50a2N+AJW+1a/x63m52aPhm+6xYe5THxWrx9vW9NR7E2Ay+1G1ndlCdMdYKo2Fnsd7kBhuyQPaphw=="],
"@ai-sdk/togetherai": ["@ai-sdk/togetherai@1.0.30", "", { "dependencies": { "@ai-sdk/openai-compatible": "1.0.29", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-9bxQbIXnWSN4bNismrza3NvIo+ui/Y3pj3UN6e9vCszCWFCN45RgISi4oDe10RqmzaJ/X8cfO/Tem+K8MT3wGQ=="],
"@ai-sdk/vercel": ["@ai-sdk/vercel@1.0.31", "", { "dependencies": { "@ai-sdk/openai-compatible": "1.0.30", "@ai-sdk/provider": "2.0.1", "@ai-sdk/provider-utils": "3.0.20" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-ggvwAMt/KsbqcdR6ILQrjwrRONLV/8aG6rOLbjcOGvV0Ai+WdZRRKQj5nOeQ06PvwVQtKdkp7S4IinpXIhCiHg=="],
"@ai-sdk/xai": ["@ai-sdk/xai@2.0.42", "", { "dependencies": { "@ai-sdk/openai-compatible": "1.0.29", "@ai-sdk/provider": "2.0.0", "@ai-sdk/provider-utils": "3.0.19" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-wlwO4yRoZ/d+ca29vN8SDzxus7POdnL7GBTyRdSrt6icUF0hooLesauC8qRUC4aLxtqvMEc1YHtJOU7ZnLWbTQ=="],
"@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="],
"@andrewbranch/untar.js": ["@andrewbranch/untar.js@1.0.3", "", {}, "sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw=="],
"@antfu/install-pkg": ["@antfu/install-pkg@1.1.0", "", { "dependencies": { "package-manager-detector": "^1.3.0", "tinyexec": "^1.0.1" } }, "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ=="],
"@apidevtools/json-schema-ref-parser": ["@apidevtools/json-schema-ref-parser@11.9.3", "", { "dependencies": { "@jsdevtools/ono": "^7.1.3", "@types/json-schema": "^7.0.15", "js-yaml": "^4.1.0" } }, "sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ=="],
"@arethetypeswrong/cli": ["@arethetypeswrong/cli@0.18.4", "", { "dependencies": { "@arethetypeswrong/core": "0.18.4", "chalk": "^4.1.2", "cli-table3": "^0.6.3", "commander": "^10.0.1", "marked": "^9.1.2", "marked-terminal": "^7.1.0", "semver": "^7.5.4" }, "bin": { "attw": "./dist/index.js" } }, "sha512-kNWo6LTzGAuLYPpJ7Sgo63whSUeeSuKMlYx6IBgzs4ONEG807gW4hSSENvpeCHzO2H2wIzG5EFl0OKBbqGBAyA=="],
"@arethetypeswrong/core": ["@arethetypeswrong/core@0.18.4", "", { "dependencies": { "@andrewbranch/untar.js": "^1.0.3", "@loaderkit/resolve": "^1.0.2", "cjs-module-lexer": "^1.2.3", "fflate": "^0.8.3", "lru-cache": "^11.0.1", "semver": "^7.5.4", "typescript": "5.6.1-rc", "validate-npm-package-name": "^5.0.0" } }, "sha512-M5F0ePyN6h2Z6XxRiyIPqjGbltotXLjR0CKA0uKspsDu0QmgTNYvRb4RSQPMUs2ZXZHCCYpbaZbFbYOXLxCjUA=="],
"@asamuzakjp/css-color": ["@asamuzakjp/css-color@3.2.0", "", { "dependencies": { "@csstools/css-calc": "^2.1.3", "@csstools/css-color-parser": "^3.0.9", "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "lru-cache": "^10.4.3" } }, "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw=="],
"@ast-grep/cli-darwin-arm64": ["@ast-grep/cli-darwin-arm64@0.40.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-T9CzwJ1GqQhnANdsu6c7iT1akpvTVMK+AZrxnhIPv33Ze5hrXUUkqan+j4wUAukRJDqU7u94EhXLSLD+5tcJ8g=="],
"@ast-grep/cli-darwin-x64": ["@ast-grep/cli-darwin-x64@0.40.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-ez9b2zKvXU8f4ghhjlqYvbx6tWCKJTuVlNVqDDfjqwwhGeiTYfnzMlSVat4ElYRMd21gLtXZIMy055v2f21Ztg=="],
"@ast-grep/cli-linux-arm64-gnu": ["@ast-grep/cli-linux-arm64-gnu@0.40.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-VXa2L1IEYD66AMb0GuG7VlMMbPmEGoJUySWDcwSZo/D9neiry3MJ41LQR5oTG2HyhIPBsf9umrXnmuRq66BviA=="],
"@ast-grep/cli-linux-x64-gnu": ["@ast-grep/cli-linux-x64-gnu@0.40.5", "", { "os": "linux", "cpu": "x64" }, "sha512-GQC5162eIOWXR2eQQ6Knzg7/8Trp5E1ODJkaErf0IubdQrZBGqj5AAcQPcWgPbbnmktjIp0H4NraPpOJ9eJ22A=="],
"@ast-grep/cli-win32-x64-msvc": ["@ast-grep/cli-win32-x64-msvc@0.40.5", "", { "os": "win32", "cpu": "x64" }, "sha512-/MJ5un7yxlClaaxou9eYl+Kr2xr/yTtYtTq5aLBWjPWA6dmmJ1nAJgx5zKHVuplFXFBrFDQk3paEgAETMTGcrA=="],
"@aws-crypto/crc32": ["@aws-crypto/crc32@5.2.0", "", { "dependencies": { "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" } }, "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg=="],
"@aws-crypto/util": ["@aws-crypto/util@5.2.0", "", { "dependencies": { "@aws-sdk/types": "^3.222.0", "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" } }, "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ=="],
"@aws-sdk/types": ["@aws-sdk/types@3.930.0", "", { "dependencies": { "@smithy/types": "^4.9.0", "tslib": "^2.6.2" } }, "sha512-we/vaAgwlEFW7IeftmCLlLMw+6hFs3DzZPJw7lVHbj/5HJ0bz9gndxEsS2lQoeJ1zhiiLqAqvXxmM43s0MBg0A=="],
"@babel/code-frame": ["@babel/code-frame@7.29.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="],
"@babel/compat-data": ["@babel/compat-data@7.29.0", "", {}, "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg=="],
"@babel/core": ["@babel/core@7.28.4", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.3", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-module-transforms": "^7.28.3", "@babel/helpers": "^7.28.4", "@babel/parser": "^7.28.4", "@babel/template": "^7.27.2", "@babel/traverse": "^7.28.4", "@babel/types": "^7.28.4", "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA=="],
"@babel/generator": ["@babel/generator@7.29.1", "", { "dependencies": { "@babel/parser": "^7.29.0", "@babel/types": "^7.29.0", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" } }, "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw=="],
"@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.29.7", "", { "dependencies": { "@babel/types": "^7.29.7" } }, "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw=="],
"@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.28.6", "", { "dependencies": { "@babel/compat-data": "^7.28.6", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA=="],
"@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.29.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.29.7", "@babel/helper-member-expression-to-functions": "^7.29.7", "@babel/helper-optimise-call-expression": "^7.29.7", "@babel/helper-replace-supers": "^7.29.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7", "@babel/traverse": "^7.29.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg=="],
"@babel/helper-globals": ["@babel/helper-globals@7.28.0", "", {}, "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw=="],
"@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.29.7", "", { "dependencies": { "@babel/traverse": "^7.29.7", "@babel/types": "^7.29.7" } }, "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg=="],
"@babel/helper-module-imports": ["@babel/helper-module-imports@7.28.6", "", { "dependencies": { "@babel/traverse": "^7.28.6", "@babel/types": "^7.28.6" } }, "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw=="],
"@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.28.6", "", { "dependencies": { "@babel/helper-module-imports": "^7.28.6", "@babel/helper-validator-identifier": "^7.28.5", "@babel/traverse": "^7.28.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA=="],