-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbun.lock
More file actions
3721 lines (2248 loc) · 387 KB
/
Copy pathbun.lock
File metadata and controls
3721 lines (2248 loc) · 387 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": "smithers-monorepo",
"devDependencies": {
"@effect/cluster": "^0.58.0",
"@effect/experimental": "^0.60.0",
"@effect/rpc": "^0.75.0",
"@effect/sql": "^0.51.0",
"@effect/workflow": "^0.18.0",
"@happy-dom/global-registrator": "^20.9.0",
"@mdx-js/esbuild": "^3.1.1",
"@smithers-orchestrator/accounts": "workspace:*",
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/cli": "workspace:*",
"@smithers-orchestrator/components": "workspace:*",
"@smithers-orchestrator/control-plane": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/engine": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/gateway": "workspace:*",
"@smithers-orchestrator/gateway-client": "workspace:*",
"@smithers-orchestrator/gateway-react": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/memory": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/openapi": "workspace:*",
"@smithers-orchestrator/pi-plugin": "workspace:*",
"@smithers-orchestrator/protocol": "workspace:*",
"@smithers-orchestrator/react-reconciler": "workspace:*",
"@smithers-orchestrator/sandbox": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/scorers": "workspace:*",
"@smithers-orchestrator/server": "workspace:*",
"@smithers-orchestrator/time-travel": "workspace:*",
"@smithers-orchestrator/tool-context": "workspace:*",
"@smithers-orchestrator/usage": "workspace:*",
"@smithers-orchestrator/vcs": "workspace:*",
"@tanstack/react-query": "^5.99.1",
"@types/bun": "latest",
"@types/mdx": "^2.0.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-reconciler": "^0.33.0",
"@types/ws": "^8.18.1",
"bun-types": "^1.3.12",
"diff": "^9.0.0",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"oxlint": "^1.60.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"smithers-orchestrator": "workspace:*",
"tsup": "^8.5.1",
"twitter-api-v2": "^1.29.0",
"typescript": "~5.9.3",
"yaml": "^2.8.1",
"zod": "^4.3.6",
},
},
".smithers": {
"name": "smithers-workflows",
"dependencies": {
"@smithers-orchestrator/scorers": "workspace:*",
"smithers-orchestrator": "workspace:*",
"zod": "4.3.6",
},
"devDependencies": {
"@types/mdx": "2.0.13",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "5.9.3",
},
},
"apps/cli": {
"name": "@smithers-orchestrator/cli",
"version": "0.24.2",
"dependencies": {
"@clack/prompts": "^0.10.1",
"@effect/workflow": "^0.18.0",
"@mdx-js/esbuild": "^3.1.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@smithers-orchestrator/accounts": "workspace:*",
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/components": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/engine": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/memory": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/openapi": "workspace:*",
"@smithers-orchestrator/protocol": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/server": "workspace:*",
"@smithers-orchestrator/time-travel": "workspace:*",
"@smithers-orchestrator/usage": "workspace:*",
"@smithers-orchestrator/vcs": "workspace:*",
"cron-parser": "^5.5.0",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"incur": "^0.4.1",
"picocolors": "^1.1.1",
"react": "^19.2.5",
"smithers-orchestrator": "workspace:*",
"yaml": "^2.8.3",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"apps/observability": {
"name": "@smithers-orchestrator/observability",
"version": "0.24.2",
"dependencies": {
"@effect/opentelemetry": "^0.63.0",
"@effect/platform": "^0.96.0",
"@effect/platform-bun": "^0.89.0",
"@smithers-orchestrator/agents": "workspace:*",
"effect": "^3.21.1",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"apps/review": {
"name": "@smithers-orchestrator/review",
"version": "0.0.1",
"bin": {
"smithers-review": "./src/cli/main.ts",
},
"dependencies": {
"@pierre/diffs": "^1.2.9",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/engine": "workspace:*",
"effect": "3.21.1",
"mermaid": "^11.15.0",
"smithers-orchestrator": "workspace:*",
"smithers-workflows": "workspace:*",
"zod": "4.3.6",
},
"devDependencies": {
"@types/node": "25.6.0",
"alchemy": "^0.93.11",
"bun-types": "^1.3.12",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "~5.9.3",
},
},
"apps/smithers": {
"name": "@smithers-orchestrator/smithers",
"version": "0.1.0",
"dependencies": {
"@smithers-orchestrator/gateway-client": "workspace:*",
"@smithers-orchestrator/gateway-react": "workspace:*",
"@tanstack/ai": "^0.27.0",
"@tanstack/ai-openai": "^0.13.0",
"@tanstack/ai-react": "^0.15.3",
"@tanstack/react-router": "^1.135.5",
"@xyflow/react": "^12.10.2",
"dagre": "^0.8.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zustand": "^5.0.13",
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.39.2",
"@cloudflare/workers-types": "^4.20260604.1",
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "^1.60.0",
"@types/dagre": "^0.7.54",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"alchemy": "^0.93.11",
"cloudflare": "^6.3.0",
"playwright": "^1.60.0",
"tsx": "^4.22.4",
"typescript": "~5.9.3",
"vite": "^8.0.14",
},
},
"apps/smithers-demo": {
"name": "@smithers-orchestrator/smithers-demo",
"version": "0.21.0",
"dependencies": {
"@xyflow/react": "^12.10.2",
"dagre": "^0.8.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/dagre": "^0.7.54",
"@vitejs/plugin-react": "^6.0.2",
"vite": "^8.0.14",
"vitest": "^4.0.16",
},
},
"apps/smithers-studio-2": {
"name": "@smithers-orchestrator/smithers-studio-2",
"version": "0.1.0",
"dependencies": {
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/gateway-client": "workspace:*",
"@uidotdev/usehooks": "^2.4.1",
"@vitejs/plugin-react": "^6.0.2",
"@wterm/dom": "0.3.0",
"@wterm/ghostty": "0.3.0",
"@wterm/react": "0.3.0",
"electrobun": "^1.18.1",
"node-pty": "^1.1.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "~5.9.3",
"vite": "^8.0.14",
"zustand": "^5.0.13",
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"playwright": "^1.60.0",
},
},
"apps/smithers-tui-demo": {
"name": "@smithers-orchestrator/smithers-tui-demo",
"version": "0.21.0",
"dependencies": {
"@dino-dna/react-tui": "^1.0.1",
"neo-blessed": "^0.2.0",
"react": "16.13.1",
},
},
"packages/accounts": {
"name": "@smithers-orchestrator/accounts",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/errors": "workspace:*",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/agents": {
"name": "@smithers-orchestrator/agents",
"version": "0.24.2",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/openai": "^3.0.53",
"@modelcontextprotocol/sdk": "^1.29.0",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"ai": "^6.0.168",
"effect": "^3.21.1",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"react": "^19.2.5",
"typescript": "~5.9.3",
},
},
"packages/components": {
"name": "@smithers-orchestrator/components",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/memory": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/react-reconciler": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"bippy": "^0.5.39",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zod": "^4.3.6",
},
"devDependencies": {
"@tanstack/react-query": "^5.99.1",
"@types/bun": "latest",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"typescript": "~5.9.3",
},
},
"packages/control-plane": {
"name": "@smithers-orchestrator/control-plane",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/errors": "workspace:*",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/db": {
"name": "@smithers-orchestrator/db",
"version": "0.24.2",
"dependencies": {
"@effect/experimental": "^0.60.0",
"@effect/sql": "^0.51.0",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"effect": "^3.21.1",
"zod": "^4.3.6",
},
"devDependencies": {
"@electric-sql/pglite": "0.5.1",
"@electric-sql/pglite-socket": "0.2.1",
"@types/bun": "latest",
"pg": "^8.13.1",
"typescript": "~5.9.3",
},
},
"packages/devtools": {
"name": "@smithers-orchestrator/devtools",
"version": "0.24.2",
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/driver": {
"name": "@smithers-orchestrator/driver",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"effect": "^3.21.1",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/engine": {
"name": "@smithers-orchestrator/engine",
"version": "0.24.2",
"dependencies": {
"@effect/cluster": "^0.58.0",
"@effect/experimental": "^0.60.0",
"@effect/platform-bun": "^0.89.0",
"@effect/rpc": "^0.75.0",
"@effect/sql": "^0.51.0",
"@effect/sql-sqlite-bun": "^0.52.0",
"@effect/workflow": "^0.18.0",
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/components": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/react-reconciler": "workspace:*",
"@smithers-orchestrator/sandbox": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/scorers": "workspace:*",
"@smithers-orchestrator/time-travel": "workspace:*",
"@smithers-orchestrator/tool-context": "workspace:*",
"@smithers-orchestrator/vcs": "workspace:*",
"diff": "^9.0.0",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
"optionalDependencies": {
"@electric-sql/pglite": "0.5.1",
"@electric-sql/pglite-socket": "0.2.1",
"pg": "^8.13.1",
},
},
"packages/errors": {
"name": "@smithers-orchestrator/errors",
"version": "0.24.2",
"dependencies": {
"effect": "^3.21.1",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/gateway": {
"name": "@smithers-orchestrator/gateway",
"version": "0.24.2",
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/gateway-client": {
"name": "@smithers-orchestrator/gateway-client",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/gateway": "workspace:*",
"@tanstack/db": "0.6.8",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/gateway-react": {
"name": "@smithers-orchestrator/gateway-react",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/gateway": "workspace:*",
"@smithers-orchestrator/gateway-client": "workspace:*",
"@tanstack/react-db": "0.1.86",
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.9.0",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "~5.9.3",
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
},
},
"packages/graph": {
"name": "@smithers-orchestrator/graph",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/errors": "workspace:*",
"drizzle-orm": "^0.45.2",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/jj-darwin-arm64": {
"name": "@smithers-orchestrator/jj-darwin-arm64",
"version": "0.24.2",
},
"packages/jj-darwin-x64": {
"name": "@smithers-orchestrator/jj-darwin-x64",
"version": "0.24.2",
},
"packages/jj-linux-arm64": {
"name": "@smithers-orchestrator/jj-linux-arm64",
"version": "0.24.2",
},
"packages/jj-linux-x64": {
"name": "@smithers-orchestrator/jj-linux-x64",
"version": "0.24.2",
},
"packages/jj-win32-x64": {
"name": "@smithers-orchestrator/jj-win32-x64",
"version": "0.24.2",
},
"packages/memory": {
"name": "@smithers-orchestrator/memory",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/openapi": {
"name": "@smithers-orchestrator/openapi",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"ai": "^6.0.168",
"effect": "^3.21.1",
"yaml": "^2.8.3",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/pi-plugin": {
"name": "@smithers-orchestrator/pi-plugin",
"version": "0.24.2",
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.70.2",
"@mariozechner/pi-tui": "^0.70.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sinclair/typebox": "^0.34.49",
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/cli": "workspace:*",
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/protocol": "workspace:*",
"ws": "^8.20.0",
},
"devDependencies": {
"@types/bun": "latest",
"@types/ws": "^8.18.1",
"typescript": "~5.9.3",
},
},
"packages/protocol": {
"name": "@smithers-orchestrator/protocol",
"version": "0.24.2",
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/react-reconciler": {
"name": "@smithers-orchestrator/react-reconciler",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"bippy": "^0.5.39",
"react": "^19.2.5",
"react-reconciler": "^0.33.0",
},
"devDependencies": {
"@types/bun": "latest",
"effect": "^3.21.1",
"typescript": "~5.9.3",
"zod": "^4.3.6",
},
},
"packages/sandbox": {
"name": "@smithers-orchestrator/sandbox",
"version": "0.24.2",
"dependencies": {
"@effect/cluster": "^0.58.0",
"@effect/rpc": "^0.75.0",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"effect": "^3.21.1",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/scheduler": {
"name": "@smithers-orchestrator/scheduler",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"effect": "^3.21.1",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/scorers": {
"name": "@smithers-orchestrator/scorers",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/server": {
"name": "@smithers-orchestrator/server",
"version": "0.24.2",
"dependencies": {
"@effect/workflow": "^0.18.0",
"@smithers-orchestrator/components": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/devtools": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/engine": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/gateway": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/protocol": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/time-travel": "workspace:*",
"cron-parser": "^5.5.0",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"hono": "^4.12.14",
"ws": "^8.20.0",
},
"devDependencies": {
"@smithers-orchestrator/graph": "workspace:*",
"@types/bun": "latest",
"react": "^19.2.5",
"typescript": "~5.9.3",
"zod": "^4.3.6",
},
},
"packages/smithers": {
"name": "smithers-orchestrator",
"version": "0.24.2",
"bin": {
"smithers": "./src/bin/smithers.js",
},
"dependencies": {
"@mdx-js/esbuild": "^3.1.1",
"@smithers-orchestrator/agents": "workspace:*",
"@smithers-orchestrator/cli": "workspace:*",
"@smithers-orchestrator/components": "workspace:*",
"@smithers-orchestrator/control-plane": "workspace:*",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/driver": "workspace:*",
"@smithers-orchestrator/engine": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/gateway-client": "workspace:*",
"@smithers-orchestrator/gateway-react": "workspace:*",
"@smithers-orchestrator/graph": "workspace:*",
"@smithers-orchestrator/memory": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/openapi": "workspace:*",
"@smithers-orchestrator/react-reconciler": "workspace:*",
"@smithers-orchestrator/sandbox": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/scorers": "workspace:*",
"@smithers-orchestrator/server": "workspace:*",
"@smithers-orchestrator/time-travel": "workspace:*",
"@smithers-orchestrator/tool-context": "workspace:*",
"@smithers-orchestrator/vcs": "workspace:*",
"ai": "^6.0.168",
"diff": "^9.0.0",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"incur": "^0.4.1",
"react": "^19.2.5",
"zod": "^4.3.6",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
"optionalDependencies": {
"@electric-sql/pglite": "0.5.1",
"@electric-sql/pglite-socket": "0.2.1",
"pg": "^8.13.1",
},
},
"packages/time-travel": {
"name": "@smithers-orchestrator/time-travel",
"version": "0.24.2",
"dependencies": {
"@effect/platform": "^0.96.0",
"@effect/platform-bun": "^0.89.0",
"@smithers-orchestrator/db": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
"@smithers-orchestrator/observability": "workspace:*",
"@smithers-orchestrator/scheduler": "workspace:*",
"@smithers-orchestrator/vcs": "workspace:*",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.1",
"picocolors": "^1.1.1",
},
"devDependencies": {
"@types/bun": "latest",
"react": "^19.2.5",
"typescript": "~5.9.3",
},
},
"packages/tool-context": {
"name": "@smithers-orchestrator/tool-context",
"version": "0.24.2",
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/usage": {
"name": "@smithers-orchestrator/usage",
"version": "0.24.2",
"dependencies": {
"@smithers-orchestrator/accounts": "workspace:*",
"@smithers-orchestrator/errors": "workspace:*",
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.9.3",
},
},
"packages/vcs": {
"name": "@smithers-orchestrator/vcs",
"version": "0.24.2",
"dependencies": {
"@effect/platform": "^0.96.0",
"@smithers-orchestrator/observability": "workspace:*",
"effect": "^3.21.1",
},
"devDependencies": {
"@effect/platform-bun": "^0.89.0",
"@types/bun": "latest",
"typescript": "~5.9.3",
},
"optionalDependencies": {
"@smithers-orchestrator/jj-darwin-arm64": "workspace:*",
"@smithers-orchestrator/jj-darwin-x64": "workspace:*",
"@smithers-orchestrator/jj-linux-arm64": "workspace:*",
"@smithers-orchestrator/jj-linux-x64": "workspace:*",
"@smithers-orchestrator/jj-win32-x64": "workspace:*",
},
},
},
"overrides": {
"@effect/cluster": "0.58.0",
"@effect/platform": "0.96.0",
"@effect/rpc": "0.75.0",
"@effect/sql": "0.51.0",
"@effect/workflow": "0.18.0",
"effect": "3.21.1",
},
"packages": {
"@ag-ui/core": ["@ag-ui/core@0.0.52", "", { "dependencies": { "zod": "^3.22.4" } }, "sha512-Xo0bUaNV56EqylzcrAuhUkQX7et7+SZIrqZZtEByGwEq/I1EHny6ZMkWHLkKR7UNi0FJZwJyhKYmKJS3B2SEgA=="],
"@ai-sdk/anthropic": ["@ai-sdk/anthropic@3.0.73", "", { "dependencies": { "@ai-sdk/provider": "3.0.10", "@ai-sdk/provider-utils": "4.0.25" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-SRTIqKK5ljxqUNNOFTysc/nFcn5uh4aCQBPOPZHygfQhWk3CMtV6zZhXx9kBk5X3O4Cz/JpBgauuL7SOEAiBbw=="],
"@ai-sdk/gateway": ["@ai-sdk/gateway@3.0.107", "", { "dependencies": { "@ai-sdk/provider": "3.0.10", "@ai-sdk/provider-utils": "4.0.25", "@vercel/oidc": "3.2.0" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-JwODLcuTe8rWXJwQcNPE5fiadjCOKHxNGtL5pHqEhFQSuWs6x47oVRkLs/Zw6eUhTsuXiZbyJ3QJHVIyLKX5hg=="],
"@ai-sdk/openai": ["@ai-sdk/openai@3.0.55", "", { "dependencies": { "@ai-sdk/provider": "3.0.10", "@ai-sdk/provider-utils": "4.0.25" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-1pZPT/VEKbn/7ItAr5Hkhy41GxbjiJUhsgTFFIPTwYT7Ph/swuByl4YCXLSfuav27zSzQdscOoxCtDasseeQHA=="],
"@ai-sdk/provider": ["@ai-sdk/provider@3.0.10", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-Q3BZ27qfpYqnCYGvE3vt+Qi6LGOF9R5Nmzn+9JoM1lCRsD9mYaIhfJLkSunN48nfGXJ6n+XNV0J/XVpqGQl7Dw=="],
"@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.25", "", { "dependencies": { "@ai-sdk/provider": "3.0.10", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-yjGPZPiJm79ZOYk0anXn2LkVqUFgStZqEOdyoynhkaAg+yOCuv6PJwf+1gUW0eSIUnYEboT2TPbPX/bxZpx4gw=="],
"@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=="],
"@anthropic-ai/sdk": ["@anthropic-ai/sdk@0.90.0", "", { "dependencies": { "json-schema-to-ts": "^3.1.1" }, "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" }, "optionalPeers": ["zod"], "bin": { "anthropic-ai-sdk": "bin/cli" } }, "sha512-MzZtPabJF1b0FTDl6Z6H5ljphPwACLGP13lu8MTiB8jXaW/YXlpOp+Po2cVou3MPM5+f5toyLnul9whKCy7fBg=="],
"@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/sha256-browser": ["@aws-crypto/sha256-browser@5.2.0", "", { "dependencies": { "@aws-crypto/sha256-js": "^5.2.0", "@aws-crypto/supports-web-crypto": "^5.2.0", "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "@aws-sdk/util-locate-window": "^3.0.0", "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" } }, "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw=="],
"@aws-crypto/sha256-js": ["@aws-crypto/sha256-js@5.2.0", "", { "dependencies": { "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" } }, "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA=="],
"@aws-crypto/supports-web-crypto": ["@aws-crypto/supports-web-crypto@5.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg=="],
"@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/client-bedrock-runtime": ["@aws-sdk/client-bedrock-runtime@3.1040.0", "", { "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "^3.974.7", "@aws-sdk/credential-provider-node": "^3.972.38", "@aws-sdk/eventstream-handler-node": "^3.972.14", "@aws-sdk/middleware-eventstream": "^3.972.10", "@aws-sdk/middleware-host-header": "^3.972.10", "@aws-sdk/middleware-logger": "^3.972.10", "@aws-sdk/middleware-recursion-detection": "^3.972.11", "@aws-sdk/middleware-user-agent": "^3.972.37", "@aws-sdk/middleware-websocket": "^3.972.16", "@aws-sdk/region-config-resolver": "^3.972.13", "@aws-sdk/token-providers": "3.1040.0", "@aws-sdk/types": "^3.973.8", "@aws-sdk/util-endpoints": "^3.996.8", "@aws-sdk/util-user-agent-browser": "^3.972.10", "@aws-sdk/util-user-agent-node": "^3.973.23", "@smithy/config-resolver": "^4.4.17", "@smithy/core": "^3.23.17", "@smithy/eventstream-serde-browser": "^4.2.14", "@smithy/eventstream-serde-config-resolver": "^4.3.14", "@smithy/eventstream-serde-node": "^4.2.14", "@smithy/fetch-http-handler": "^5.3.17", "@smithy/hash-node": "^4.2.14", "@smithy/invalid-dependency": "^4.2.14", "@smithy/middleware-content-length": "^4.2.14", "@smithy/middleware-endpoint": "^4.4.32", "@smithy/middleware-retry": "^4.5.7", "@smithy/middleware-serde": "^4.2.20", "@smithy/middleware-stack": "^4.2.14", "@smithy/node-config-provider": "^4.3.14", "@smithy/node-http-handler": "^4.6.1", "@smithy/protocol-http": "^5.3.14", "@smithy/smithy-client": "^4.12.13", "@smithy/types": "^4.14.1", "@smithy/url-parser": "^4.2.14", "@smithy/util-base64": "^4.3.2", "@smithy/util-body-length-browser": "^4.2.2", "@smithy/util-body-length-node": "^4.2.3", "@smithy/util-defaults-mode-browser": "^4.3.49", "@smithy/util-defaults-mode-node": "^4.2.54", "@smithy/util-endpoints": "^3.4.2", "@smithy/util-middleware": "^4.2.14", "@smithy/util-retry": "^4.3.6", "@smithy/util-stream": "^4.5.25", "@smithy/util-utf8": "^4.2.2", "tslib": "^2.6.2" } }, "sha512-tFCqtci1gVGIRwgK3tmv2DV2EawXjBIQgwM/7KaeL4wHUMhNMUA+POUw6vGowtQb51ZaSDjK3KzI3MaQskOyuw=="],
"@aws-sdk/client-cognito-identity": ["@aws-sdk/client-cognito-identity@3.1062.0", "", { "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "^3.974.17", "@aws-sdk/credential-provider-node": "^3.972.51", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/fetch-http-handler": "^5.4.6", "@smithy/node-http-handler": "^4.7.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-QA5z/Pl3aTMR3+bmiHoC6MpKYa4FMk/9lNP7k104uKuUsjMqP4ysRa43IwdcbI9sH023T//kSJCLxrxa2CP/Tw=="],
"@aws-sdk/core": ["@aws-sdk/core@3.974.17", "", { "dependencies": { "@aws-sdk/types": "^3.973.10", "@aws-sdk/xml-builder": "^3.972.27", "@aws/lambda-invoke-store": "^0.2.2", "@smithy/core": "^3.24.6", "@smithy/signature-v4": "^5.4.6", "@smithy/types": "^4.14.3", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "sha512-r8o4h2K7j6P9ngno+8ei0aK0U/4JwDb7A2fMMxGVoSqDN8AFlIzSDeZHME9LcVLR2codyhtr1WAAg+/nmkeeMA=="],
"@aws-sdk/credential-provider-cognito-identity": ["@aws-sdk/credential-provider-cognito-identity@3.972.41", "", { "dependencies": { "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-byGPybEQe9ejeyUzhWjtjfh0ctv25HsRx2djF/Tl2j9+DAuAmhjq0NqSRqYZEoSe8vJObXz5RYDtJYAmdupBig=="],
"@aws-sdk/credential-provider-env": ["@aws-sdk/credential-provider-env@3.972.43", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-g0XVQKzaA/4cq1vz1IvCQwYM+1Pkv01J9yHDpCTXekVuGZRDEz0wqBQ1AuYTq7FM6uik4uBGH8Tb5d9YvgeA7g=="],
"@aws-sdk/credential-provider-http": ["@aws-sdk/credential-provider-http@3.972.45", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/fetch-http-handler": "^5.4.6", "@smithy/node-http-handler": "^4.7.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-w9PuOoKCt6+xoESvY+zlV0u3PKQ0mVL259PcsVR6a3S/uYJJHnIi4r1NxdJHEcNldUVRIciltWnFMGBR4YEm3g=="],
"@aws-sdk/credential-provider-ini": ["@aws-sdk/credential-provider-ini@3.972.49", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/credential-provider-env": "^3.972.43", "@aws-sdk/credential-provider-http": "^3.972.45", "@aws-sdk/credential-provider-login": "^3.972.48", "@aws-sdk/credential-provider-process": "^3.972.43", "@aws-sdk/credential-provider-sso": "^3.972.48", "@aws-sdk/credential-provider-web-identity": "^3.972.48", "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/credential-provider-imds": "^4.3.7", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-83r5MK+PERv9irzky1o5aNbXiLuaLfeB7N8MrktB9USpoebdNtuG0Ek9ieIxpGH1aZ9a0nIaDaLjEr3EmOV3Ng=="],
"@aws-sdk/credential-provider-login": ["@aws-sdk/credential-provider-login@3.972.48", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-amPGeF6fcvLInK4Pu2k2Y2jHFR6MpaIKrZrbaf0QUnV3tjzjWh442eifZ2+KcmzFdsqyvyjBqAhq2JNLt1C5gA=="],
"@aws-sdk/credential-provider-node": ["@aws-sdk/credential-provider-node@3.972.51", "", { "dependencies": { "@aws-sdk/credential-provider-env": "^3.972.43", "@aws-sdk/credential-provider-http": "^3.972.45", "@aws-sdk/credential-provider-ini": "^3.972.49", "@aws-sdk/credential-provider-process": "^3.972.43", "@aws-sdk/credential-provider-sso": "^3.972.48", "@aws-sdk/credential-provider-web-identity": "^3.972.48", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/credential-provider-imds": "^4.3.7", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-mbhSY3ytXIGMuBoJsWCivk+63dtVlenT6wstUra07Lar4Ln2MVL8/j5zCTIOog+ig5/FlFJ8gcFU4nQZV+Jh4Q=="],
"@aws-sdk/credential-provider-process": ["@aws-sdk/credential-provider-process@3.972.43", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-GPokLNyvTfCmuaHk+v3GKVs4ZT3cMu5kgS2a+NPkOMt96cq6fSIK0g+mZHpGS6Cd4QGrPKesANEaLUKgOskTzg=="],
"@aws-sdk/credential-provider-sso": ["@aws-sdk/credential-provider-sso@3.972.48", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/token-providers": "3.1062.0", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-tf0sD47SeTgCDfOWYssctzGgwAuk8/ECjb7bom4wZ7P1om0qE8i2yjniUdvysmANm5haARr35O8vZnTe/UEtpQ=="],
"@aws-sdk/credential-provider-web-identity": ["@aws-sdk/credential-provider-web-identity@3.972.48", "", { "dependencies": { "@aws-sdk/core": "^3.974.17", "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-YYsumc2oe09gl4l+fjfmR64JDn6+0o4Ql5HMBkMuhFazO1tZlE5NjSnZM3oXHwenPjh2qow0TFgSIVjfWfsojg=="],
"@aws-sdk/credential-providers": ["@aws-sdk/credential-providers@3.1062.0", "", { "dependencies": { "@aws-sdk/client-cognito-identity": "3.1062.0", "@aws-sdk/core": "^3.974.17", "@aws-sdk/credential-provider-cognito-identity": "^3.972.41", "@aws-sdk/credential-provider-env": "^3.972.43", "@aws-sdk/credential-provider-http": "^3.972.45", "@aws-sdk/credential-provider-ini": "^3.972.49", "@aws-sdk/credential-provider-login": "^3.972.48", "@aws-sdk/credential-provider-node": "^3.972.51", "@aws-sdk/credential-provider-process": "^3.972.43", "@aws-sdk/credential-provider-sso": "^3.972.48", "@aws-sdk/credential-provider-web-identity": "^3.972.48", "@aws-sdk/nested-clients": "^3.997.16", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/credential-provider-imds": "^4.3.7", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-QS2UT3srjNppZv6mq7V0igqK/ThYKqRWwDscxDsMEmmEE5JqCPPSqFW71aEpkvXaMdgmG8xEpt4RtNHpZ30cTA=="],
"@aws-sdk/eventstream-handler-node": ["@aws-sdk/eventstream-handler-node@3.972.14", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/eventstream-codec": "^4.2.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-m4X56gxG76/CKfxNVbOFuYwnAZcHgS6HOH8lgp15HoGHIAVTcZfZrXvcYzJFOMLEJgVn+JHBu6EiNV+xSNXXFg=="],
"@aws-sdk/middleware-eventstream": ["@aws-sdk/middleware-eventstream@3.972.10", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/protocol-http": "^5.3.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-QUqLs7Af1II9X4fCRAu+EGHG3KHyOp4RkuLhRKoA3NuFlh6TL8i+zXBl8w2LUxqm44B/Kom45hgSlwA1SpTsXQ=="],
"@aws-sdk/middleware-host-header": ["@aws-sdk/middleware-host-header@3.972.10", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/protocol-http": "^5.3.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-IJSsIMeVQ8MMCPbuh1AbltkFhLBLXn7aejzfX5YKT/VLDHn++Dcz8886tXckE+wQssyPUhaXrJhdakO2VilRhg=="],
"@aws-sdk/middleware-logger": ["@aws-sdk/middleware-logger@3.972.10", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-OOuGvvz1Dm20SjZo5oEBePFqxt5nf8AwkNDSyUHvD9/bfNASmstcYxFAHUowy4n6Io7mWUZ04JURZwSBvyQanQ=="],
"@aws-sdk/middleware-recursion-detection": ["@aws-sdk/middleware-recursion-detection@3.972.11", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@aws/lambda-invoke-store": "^0.2.2", "@smithy/protocol-http": "^5.3.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-+zz6f79Kj9V5qFK2P+D8Ehjnw4AhphAlCAsPjUqEcInA9umtSSKMrHbSagEeOIsDNuvVrH98bjRHcyQukTrhaQ=="],
"@aws-sdk/middleware-sdk-s3": ["@aws-sdk/middleware-sdk-s3@3.972.36", "", { "dependencies": { "@aws-sdk/core": "^3.974.7", "@aws-sdk/types": "^3.973.8", "@aws-sdk/util-arn-parser": "^3.972.3", "@smithy/core": "^3.23.17", "@smithy/node-config-provider": "^4.3.14", "@smithy/protocol-http": "^5.3.14", "@smithy/signature-v4": "^5.3.14", "@smithy/smithy-client": "^4.12.13", "@smithy/types": "^4.14.1", "@smithy/util-config-provider": "^4.2.2", "@smithy/util-middleware": "^4.2.14", "@smithy/util-stream": "^4.5.25", "@smithy/util-utf8": "^4.2.2", "tslib": "^2.6.2" } }, "sha512-YhPix+0x/MdQrb1Ug1GDKeS5fqylIy+naz800asX8II4jqfTk2KY2KhmmYCwZcky8YWtRQQwWCGdoqeAnip8Uw=="],
"@aws-sdk/middleware-user-agent": ["@aws-sdk/middleware-user-agent@3.972.37", "", { "dependencies": { "@aws-sdk/core": "^3.974.7", "@aws-sdk/types": "^3.973.8", "@aws-sdk/util-endpoints": "^3.996.8", "@smithy/core": "^3.23.17", "@smithy/protocol-http": "^5.3.14", "@smithy/types": "^4.14.1", "@smithy/util-retry": "^4.3.6", "tslib": "^2.6.2" } }, "sha512-N1oNpdiLoVAWYD3WFBnUi3LlfoDA06ZHo4ozyjbsJNLvILzvt//0CnR8N+CZ0NWeYgVB/5V59ivixHCWCx2ALw=="],
"@aws-sdk/middleware-websocket": ["@aws-sdk/middleware-websocket@3.972.16", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@aws-sdk/util-format-url": "^3.972.10", "@smithy/eventstream-codec": "^4.2.14", "@smithy/eventstream-serde-browser": "^4.2.14", "@smithy/fetch-http-handler": "^5.3.17", "@smithy/protocol-http": "^5.3.14", "@smithy/signature-v4": "^5.3.14", "@smithy/types": "^4.14.1", "@smithy/util-base64": "^4.3.2", "@smithy/util-hex-encoding": "^4.2.2", "@smithy/util-utf8": "^4.2.2", "tslib": "^2.6.2" } }, "sha512-86+S9oCyRVGzoMRpQhxkArp7kD2K75GPmaNevd9B6EyNhWoNvnCZZ3WbgN4j7ZT+jvtvBCGZvI2XHsWZJ+BRIg=="],
"@aws-sdk/nested-clients": ["@aws-sdk/nested-clients@3.997.16", "", { "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "^3.974.17", "@aws-sdk/signature-v4-multi-region": "^3.996.31", "@aws-sdk/types": "^3.973.10", "@smithy/core": "^3.24.6", "@smithy/fetch-http-handler": "^5.4.6", "@smithy/node-http-handler": "^4.7.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-bGvfDgC2KQePjEmZdltScPPLKFoyjPElAXeZcLfvZ58J1AO283//WGtvp9GdnryLHTi7gis0UoCezqh0vl/nig=="],
"@aws-sdk/region-config-resolver": ["@aws-sdk/region-config-resolver@3.972.13", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/config-resolver": "^4.4.17", "@smithy/node-config-provider": "^4.3.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-CvJ2ZIjK/jVD/lbOpowBVElJyC1YxLTIJ13yM0AEo0t2v7swOzGjSA6lJGH+DwZXQhcjUjoYwc8bVYCX5MDr1A=="],
"@aws-sdk/signature-v4-multi-region": ["@aws-sdk/signature-v4-multi-region@3.996.31", "", { "dependencies": { "@aws-sdk/types": "^3.973.10", "@smithy/signature-v4": "^5.4.6", "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-Kn2up9SlG1KC6wRtwf0d7waTGF6rvp9DxYqB54x6UCKdQ6kyaXCqHL4WGb5vUJga5kS8FxnjhY0LqM28aMvnNQ=="],
"@aws-sdk/token-providers": ["@aws-sdk/token-providers@3.1040.0", "", { "dependencies": { "@aws-sdk/core": "^3.974.7", "@aws-sdk/nested-clients": "^3.997.5", "@aws-sdk/types": "^3.973.8", "@smithy/property-provider": "^4.2.14", "@smithy/shared-ini-file-loader": "^4.4.9", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-0KTpz2KqASQwzLOywV1bS2TX6Su0bARkATgpSu236BDM/D/6cMQ2EPiFwoRYwwvXsWSDn8KkKp9NV2ZWWA53Xw=="],
"@aws-sdk/types": ["@aws-sdk/types@3.973.10", "", { "dependencies": { "@smithy/types": "^4.14.3", "tslib": "^2.6.2" } }, "sha512-992QrTO7G9qCvKD0fx1rMlqcL14plUcRAbwmqqYVsuF3GrqcvlAL9qxR+baMafarEZ+l7DUQ5lCMmt5mbMhF7g=="],
"@aws-sdk/util-arn-parser": ["@aws-sdk/util-arn-parser@3.972.3", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-HzSD8PMFrvgi2Kserxuff5VitNq2sgf3w9qxmskKDiDTThWfVteJxuCS9JXiPIPtmCrp+7N9asfIaVhBFORllA=="],
"@aws-sdk/util-endpoints": ["@aws-sdk/util-endpoints@3.996.8", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/types": "^4.14.1", "@smithy/url-parser": "^4.2.14", "@smithy/util-endpoints": "^3.4.2", "tslib": "^2.6.2" } }, "sha512-oOZHcRDihk5iEe5V25NVWg45b3qEA8OpHWVdU/XQh8Zj4heVPAJqWvMphQnU7LkufmUo10EpvFPZuQMiFLJK3g=="],
"@aws-sdk/util-format-url": ["@aws-sdk/util-format-url@3.972.10", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/querystring-builder": "^4.2.14", "@smithy/types": "^4.14.1", "tslib": "^2.6.2" } }, "sha512-DEKiHNJVtNxdyTeQspzY+15Po/kHm6sF0Cs4HV9Q2+lplB63+DrvdeiSoOSdWEWAoO2RcY1veoXVDz2tWxWCgQ=="],
"@aws-sdk/util-locate-window": ["@aws-sdk/util-locate-window@3.965.5", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ=="],
"@aws-sdk/util-user-agent-browser": ["@aws-sdk/util-user-agent-browser@3.972.10", "", { "dependencies": { "@aws-sdk/types": "^3.973.8", "@smithy/types": "^4.14.1", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "sha512-FAzqXvfEssGdSIz8ejatan0bOdx1qefBWKF/gWmVBXIP1HkS7v/wjjaqrAGGKvyihrXTXW00/2/1nTJtxpXz7g=="],
"@aws-sdk/util-user-agent-node": ["@aws-sdk/util-user-agent-node@3.973.23", "", { "dependencies": { "@aws-sdk/middleware-user-agent": "^3.972.37", "@aws-sdk/types": "^3.973.8", "@smithy/node-config-provider": "^4.3.14", "@smithy/types": "^4.14.1", "@smithy/util-config-provider": "^4.2.2", "tslib": "^2.6.2" }, "peerDependencies": { "aws-crt": ">=1.0.0" }, "optionalPeers": ["aws-crt"] }, "sha512-gGwq8L2Euw0aNG6Ey4EktiAo3fSCVoDy1CaBIthd+oeaKHPXUrNaApMewQ6La5Hv0lcznOtECZaNvYyc5LXXfA=="],
"@aws-sdk/xml-builder": ["@aws-sdk/xml-builder@3.972.27", "", { "dependencies": { "@smithy/types": "^4.14.3", "fast-xml-parser": "5.7.3", "tslib": "^2.6.2" } }, "sha512-hpsCXCOI436kxWpjtRuIHVvuPP81MOw8f18jzfZeg+UOiiOvlqWcmWChzEhJEu16cOC6+ku4ncBN+7rdt+DZ9g=="],
"@aws/lambda-invoke-store": ["@aws/lambda-invoke-store@0.2.4", "", {}, "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ=="],
"@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
"@babylonjs/core": ["@babylonjs/core@7.54.3", "", {}, "sha512-P5ncXVd8GEUJLhwloP9V0oVwQYIrvZztguVeLlvd5Rx+9aQnenKjpV8auJ6SRsUlAmNZU4pFTKzwF6o2EUfhAw=="],
"@borewit/text-codec": ["@borewit/text-codec@0.2.2", "", {}, "sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ=="],
"@braintree/sanitize-url": ["@braintree/sanitize-url@7.1.2", "", {}, "sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA=="],
"@cfworker/json-schema": ["@cfworker/json-schema@4.1.1", "", {}, "sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og=="],
"@chevrotain/types": ["@chevrotain/types@11.1.2", "", {}, "sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw=="],
"@clack/core": ["@clack/core@0.4.2", "", { "dependencies": { "picocolors": "^1.0.0", "sisteransi": "^1.0.5" } }, "sha512-NYQfcEy8MWIxrT5Fj8nIVchfRFA26yYKJcvBS7WlUIlw2OmQOY9DhGGXMovyI5J5PpxrCPGkgUi207EBrjpBvg=="],
"@clack/prompts": ["@clack/prompts@0.10.1", "", { "dependencies": { "@clack/core": "0.4.2", "picocolors": "^1.0.0", "sisteransi": "^1.0.5" } }, "sha512-Q0T02vx8ZM9XSv9/Yde0jTmmBQufZhPJfYAg2XrrrxWWaZgq1rr8nU8Hv710BQ1dhoP8rtY7YUdpGej2Qza/cw=="],
"@cloudflare/kv-asset-handler": ["@cloudflare/kv-asset-handler@0.5.0", "", {}, "sha512-jxQYkj8dSIzc0cD6cMMNdOc1UVjqSqu8BZdor5s8cGjW2I8BjODt/kWPVdY+u9zj3ms75Q5qaZgnxUad83+eAg=="],
"@cloudflare/unenv-preset": ["@cloudflare/unenv-preset@2.7.7", "", { "peerDependencies": { "unenv": "2.0.0-rc.21", "workerd": "^1.20250927.0" }, "optionalPeers": ["workerd"] }, "sha512-HtZuh166y0Olbj9bqqySckz0Rw9uHjggJeoGbDx5x+sgezBXlxO6tQSig2RZw5tgObF8mWI8zaPvQMkQZtAODw=="],
"@cloudflare/vite-plugin": ["@cloudflare/vite-plugin@1.40.0", "", { "dependencies": { "@cloudflare/unenv-preset": "2.16.1", "miniflare": "4.20260603.0", "unenv": "2.0.0-rc.24", "wrangler": "4.98.0", "ws": "8.20.1" }, "peerDependencies": { "vite": "^6.1.0 || ^7.0.0 || ^8.0.0" }, "bin": { "cf-vite": "bin/cf-vite" } }, "sha512-v77QQ2AdyBB+XW6uzKpWanbQy7ckYqSXFwJgQN871XITqLdJTdYOAWxt/jLPw9tNnHkKS6HTwV9+9bfQcLWz/w=="],
"@cloudflare/workerd-darwin-64": ["@cloudflare/workerd-darwin-64@1.20260603.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-cEXDWu6V3ZrpmwWkM4OJE9AeXjdAgOY5rh8EHhcBVCuP5rxnzUbPzLtrVOHx0UUUAcCrFq0Xsa6mZKL1VUZsKQ=="],
"@cloudflare/workerd-darwin-arm64": ["@cloudflare/workerd-darwin-arm64@1.20260603.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-uBPK4LaWJNbbCYwPnUAehlHbbVulhVZPZsdcAhBPfZhHb3QAuAEPAQepO/P67R3V6Cni4YGx1fLbL8A5wwoaNA=="],
"@cloudflare/workerd-linux-64": ["@cloudflare/workerd-linux-64@1.20260603.1", "", { "os": "linux", "cpu": "x64" }, "sha512-ht9l6/8Tk7Rp6kA4S9oFZ4X8u0VjnnFdmU/6B3fnABYKREYTKh2RdOqXqXxcp5eNJseireKnWik/hQOPK1CutQ=="],
"@cloudflare/workerd-linux-arm64": ["@cloudflare/workerd-linux-arm64@1.20260603.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-LJZ6x00rAjSrobV4m0ZW0TpH5ilBbKcWBzlH+y+KOUsIE/CpTuhAzKV43TbSnFLRX5+jrWKiz2v0hO91lPXy6A=="],
"@cloudflare/workerd-windows-64": ["@cloudflare/workerd-windows-64@1.20260603.1", "", { "os": "win32", "cpu": "x64" }, "sha512-DvwqkXMAJRPoDN4PxapAwhlz/6ouD+6R1ttbAEK3cWD/QBvFF5STx7Ds/9Irf+rBly3np3uHWkeX+wZnNFEuzA=="],
"@cloudflare/workers-types": ["@cloudflare/workers-types@4.20260605.1", "", {}, "sha512-9YJaGPQwuQYFHoElVhJP40ZmUO/Z2OiBon58sKpHjgwq5btC/B2BZLC45AQ14k+1I+hjcY2z2t2R6uUxU9AqwQ=="],
"@cspotcode/source-map-support": ["@cspotcode/source-map-support@0.8.1", "", { "dependencies": { "@jridgewell/trace-mapping": "0.3.9" } }, "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="],
"@dino-dna/react-tui": ["@dino-dna/react-tui@1.0.1", "", { "dependencies": { "@seznam/compose-react-refs": "^1.0.4", "patch-package": "^6.2.2", "react": "^16.13.1", "react-reconciler": "^0.25.1" } }, "sha512-wyLuVEIqibueoP9YkJymghSJffgR6yZFflT2nYyE635GMUrQi9rY2Fi23FPRoiEDMhscuHmTzwFEbLTH2cbdEg=="],
"@effect/cluster": ["@effect/cluster@0.58.0", "", { "dependencies": { "kubernetes-types": "^1.30.0" }, "peerDependencies": { "@effect/platform": "^0.96.0", "@effect/rpc": "^0.75.0", "@effect/sql": "^0.51.0", "@effect/workflow": "^0.18.0", "effect": "^3.21.0" } }, "sha512-0Zog7s7XdntWcTqdqWPoj6nc7hPaWIzp0k0DsFUWyCynXNPK9dAtgFrSce04NhddNqqbhtZck/lhuqJwNBrprQ=="],
"@effect/experimental": ["@effect/experimental@0.60.0", "", { "dependencies": { "uuid": "^11.0.3" }, "peerDependencies": { "@effect/platform": "^0.96.0", "effect": "^3.21.0", "ioredis": "^5", "lmdb": "^3" }, "optionalPeers": ["ioredis", "lmdb"] }, "sha512-i5zIg7Xup2KgHyqHlYtkgqSE1bNzCL0GbbTQxrpIzKF0q/ebknOk/ox8B/gIq2vImjoEE81h/oxU+6i1NH210g=="],
"@effect/opentelemetry": ["@effect/opentelemetry@0.63.0", "", { "peerDependencies": { "@effect/platform": "^0.96.0", "@opentelemetry/api": "^1.9", "@opentelemetry/resources": "^2.0.0", "@opentelemetry/sdk-logs": ">=0.203.0 <0.300.0", "@opentelemetry/sdk-metrics": "^2.0.0", "@opentelemetry/sdk-trace-base": "^2.0.0", "@opentelemetry/sdk-trace-node": "^2.0.0", "@opentelemetry/sdk-trace-web": "^2.0.0", "@opentelemetry/semantic-conventions": "^1.33.0", "effect": "^3.21.0" } }, "sha512-2yUG2QWNATi1uKP0kwhaP5eLp+c5NDzAL3EOpIcGLBAC0cbXZrx4n9Qw/QwUKxpuV+pbhrBUPCiByyWAFKfuCw=="],
"@effect/platform": ["@effect/platform@0.96.0", "", { "dependencies": { "find-my-way-ts": "^0.1.6", "msgpackr": "^1.11.4", "multipasta": "^0.2.7" }, "peerDependencies": { "effect": "^3.21.0" } }, "sha512-U7PLhkVzg7zzrgFvyWATOzD6reL87KG/fcdOxgLWBQ/J5CCU6qdPAVG+0o6o+IxcsLoqGwxs+rFxaFzrdtDV1A=="],
"@effect/platform-bun": ["@effect/platform-bun@0.89.0", "", { "dependencies": { "@effect/platform-node-shared": "^0.59.0", "multipasta": "^0.2.7" }, "peerDependencies": { "@effect/cluster": "^0.58.0", "@effect/platform": "^0.96.0", "@effect/rpc": "^0.75.0", "@effect/sql": "^0.51.0", "effect": "^3.21.0" } }, "sha512-ReT5f2vujJfffMOBexrgwJd2RLxgfr2G0c1FyCsoflcjdQJ7RZE3cwHDp1M3hAzmG67wWAssMHqLsX6H/n27sQ=="],
"@effect/platform-node-shared": ["@effect/platform-node-shared@0.59.0", "", { "dependencies": { "@parcel/watcher": "^2.5.1", "multipasta": "^0.2.7", "ws": "^8.18.2" }, "peerDependencies": { "@effect/cluster": "^0.58.0", "@effect/platform": "^0.96.0", "@effect/rpc": "^0.75.0", "@effect/sql": "^0.51.0", "effect": "^3.21.0" } }, "sha512-3bq2YKKfLY7UFauZSxqZUneCXoA3SMSls82V+0RKunvRlfPuPQW0hVn6t1RkvEdh0PDoygWG2mZXYQa6Iqgp9A=="],
"@effect/rpc": ["@effect/rpc@0.75.0", "", { "dependencies": { "msgpackr": "^1.11.4" }, "peerDependencies": { "@effect/platform": "^0.96.0", "effect": "^3.21.0" } }, "sha512-VFeJ16cZUXqiIzG9UHOVKGuiBPJ7fV+0lEbJU6xi12JnnxXe/19BQPpOwiRawCUbPOR3/xIURDUgGxU+Ft0pvQ=="],
"@effect/sql": ["@effect/sql@0.51.0", "", { "dependencies": { "uuid": "^11.0.3" }, "peerDependencies": { "@effect/experimental": "^0.60.0", "@effect/platform": "^0.96.0", "effect": "^3.21.0" } }, "sha512-e7hWe46QD15eMCr4kNBMVdItIVK/WLHJG+d8DLL1FjVf5Ra82k2mwUYIXplJewVbHjt3my6GSKPPd1ZrQjVd5A=="],
"@effect/sql-sqlite-bun": ["@effect/sql-sqlite-bun@0.52.0", "", { "peerDependencies": { "@effect/experimental": "^0.60.0", "@effect/platform": "^0.96.0", "@effect/sql": "^0.51.0", "effect": "^3.21.0" } }, "sha512-iqQ7SvSNxq0HLjKW5IQ29FsCTzOD1CuX1wuBEuPLLgPCvuEykEHLn4zDrs2qJ+O3CBEUm4kiCy29tmfHE7uAdw=="],
"@effect/workflow": ["@effect/workflow@0.18.0", "", { "peerDependencies": { "@effect/experimental": "^0.60.0", "@effect/platform": "^0.96.0", "@effect/rpc": "^0.75.0", "effect": "^3.21.0" } }, "sha512-9Zp+x9ADtR0H6CRhU6wLyPcIRjO1PXjvSpUlFlBQ8piw7ldjPmnUWEY8YQuH6eExV2dalQ4z2LMiZ5Bd7XAJbA=="],
"@electric-sql/pglite": ["@electric-sql/pglite@0.5.1", "", {}, "sha512-h2Vc+qkQqsEL5kvyN5nBAxn3Vbyvka7QfDW7Io+CdcwU1+X8JbCAN2og+5dI11S3eJuDfroUCxzJaap6k+ezEw=="],
"@electric-sql/pglite-age": ["@electric-sql/pglite-age@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-0Q+QnbSSZjJt3aF/wycuXpC1HxyemkAumYSodKlIkjobx/Cu/U9a9lazuwlAzB1GOZuCuB6JUiYjGcJMnvN7zA=="],
"@electric-sql/pglite-pg_hashids": ["@electric-sql/pglite-pg_hashids@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-fg+V4XOpmMyNyVq21+Cmxi9ZYX6LHPFRBSvMSm69mv4/0xpBCQcUpo9t4pV0os2FACpUIvFDzB+0CUDTvylcTg=="],
"@electric-sql/pglite-pg_ivm": ["@electric-sql/pglite-pg_ivm@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-S84QSgUyVuworFPs3W+hQhQa3zhKd9egQvBordM60gryo7zZBa3rMbf4PRYtb/aX44yybzI42WKinC7z3REC6g=="],
"@electric-sql/pglite-pg_textsearch": ["@electric-sql/pglite-pg_textsearch@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-hqGo0imL0fDVDsc182wB8+tfvNWZWj9unNqjVu2X2M/2wuOzk/6uWsFjLdOHsnRHMjcRhI8X5k/LK4mtZA1j7g=="],
"@electric-sql/pglite-pg_uuidv7": ["@electric-sql/pglite-pg_uuidv7@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-DqV70JhIUY8vGYwTQRlshZyxyxS9i0ThdegJLfyi3T5rw1ov3HoLlCvLZhroI2/MAvF0s4mBH9Op/wSMzjr8Ew=="],
"@electric-sql/pglite-pgtap": ["@electric-sql/pglite-pgtap@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-5nEhiMxS9qK+Yxnx8pnKLREDXymLba7cevTRpQL4hvcW0W4Y+spJbMV2gRwC9qWLQFrEIWlYucP+EBdVUucXSQ=="],
"@electric-sql/pglite-pgvector": ["@electric-sql/pglite-pgvector@0.0.2", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1" } }, "sha512-Gu9Nv7JHlg6BgOLqPCR6lCjI+3xlb7ej5qUtHWmzEYA0ZKzuNgeDK16nRO0ELInwzhLptLqX7VdWyYRElSXjdQ=="],
"@electric-sql/pglite-socket": ["@electric-sql/pglite-socket@0.2.1", "", { "peerDependencies": { "@electric-sql/pglite": "0.5.1", "@electric-sql/pglite-age": "0.0.2", "@electric-sql/pglite-pg_hashids": "0.0.2", "@electric-sql/pglite-pg_ivm": "0.0.2", "@electric-sql/pglite-pg_textsearch": "0.0.2", "@electric-sql/pglite-pg_uuidv7": "0.0.2", "@electric-sql/pglite-pgtap": "0.0.2", "@electric-sql/pglite-pgvector": "0.0.2" }, "bin": { "pglite-server": "dist/scripts/server.js" } }, "sha512-i/vxFji/crDNIEEwwDcIH0Y7dShG039+uepAyHZqvAM/o+LCnM3LXcoIxtQoo2fUIThaUDVF5NMy7NAQkq79FQ=="],
"@emnapi/core": ["@emnapi/core@1.10.0", "", { "dependencies": { "@emnapi/wasi-threads": "1.2.1", "tslib": "^2.4.0" } }, "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw=="],
"@emnapi/runtime": ["@emnapi/runtime@1.10.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA=="],
"@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.2.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w=="],
"@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.7", "", { "os": "aix", "cpu": "ppc64" }, "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg=="],
"@esbuild/android-arm": ["@esbuild/android-arm@0.27.7", "", { "os": "android", "cpu": "arm" }, "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ=="],
"@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.7", "", { "os": "android", "cpu": "arm64" }, "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ=="],
"@esbuild/android-x64": ["@esbuild/android-x64@0.27.7", "", { "os": "android", "cpu": "x64" }, "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg=="],
"@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.7", "", { "os": "darwin", "cpu": "arm64" }, "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw=="],
"@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.7", "", { "os": "darwin", "cpu": "x64" }, "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ=="],
"@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.7", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w=="],
"@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.7", "", { "os": "freebsd", "cpu": "x64" }, "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ=="],
"@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.7", "", { "os": "linux", "cpu": "arm" }, "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA=="],
"@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.7", "", { "os": "linux", "cpu": "arm64" }, "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A=="],
"@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.7", "", { "os": "linux", "cpu": "ia32" }, "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg=="],
"@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.7", "", { "os": "linux", "cpu": "none" }, "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q=="],
"@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.7", "", { "os": "linux", "cpu": "none" }, "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw=="],
"@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.7", "", { "os": "linux", "cpu": "ppc64" }, "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ=="],
"@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.7", "", { "os": "linux", "cpu": "none" }, "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ=="],
"@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.7", "", { "os": "linux", "cpu": "s390x" }, "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw=="],
"@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.7", "", { "os": "linux", "cpu": "x64" }, "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA=="],
"@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.7", "", { "os": "none", "cpu": "arm64" }, "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w=="],
"@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.7", "", { "os": "none", "cpu": "x64" }, "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw=="],
"@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.7", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A=="],
"@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.7", "", { "os": "openbsd", "cpu": "x64" }, "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg=="],
"@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.7", "", { "os": "none", "cpu": "arm64" }, "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw=="],
"@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.7", "", { "os": "sunos", "cpu": "x64" }, "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA=="],
"@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.7", "", { "os": "win32", "cpu": "arm64" }, "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA=="],
"@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.7", "", { "os": "win32", "cpu": "ia32" }, "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw=="],
"@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.7", "", { "os": "win32", "cpu": "x64" }, "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg=="],