-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
5697 lines (4604 loc) · 254 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
5697 lines (4604 loc) · 254 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: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@deepseek-ai/dsh-agent-default-model':
specifier: ^0.1.0-rc.8
version: 0.1.0-rc.8(ac6069dc8d9c3e66afe57310a7f65206)
'@deepseek-ai/schemastery':
specifier: ^3.18.1
version: 3.18.1
mqtt:
specifier: ^5.15.2
version: 5.15.2
devDependencies:
'@deepseek-ai/cordis':
specifier: ^4.0.1
version: 4.0.1(@deepseek-ai/cordis-plugin-include@1.0.6)(@deepseek-ai/cordis-plugin-loader@1.0.2)
'@deepseek-ai/cordis-plugin-loader':
specifier: ^1.0.2
version: 1.0.2(@deepseek-ai/cordis@4.0.1)
'@deepseek-ai/dsh-agent':
specifier: ^0.1.0-rc.8
version: 0.1.0-rc.8(d0156be6f3072151379a4fc9d5e866ed)
'@deepseek-ai/dsh-client-locale':
specifier: 0.1.0-rc.8
version: 0.1.0-rc.8(4224ac20d424bf813bd9dfbe44c0eff4)
'@deepseek-ai/dsh-client-runtime':
specifier: 0.1.0-rc.8
version: 0.1.0-rc.8(f389034f75c07d902bfdd83862fec97b)
'@deepseek-ai/dsh-client-ui-primitives':
specifier: 0.1.0-rc.8
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-settings':
specifier: 0.1.0-rc.8
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-api-remotes@0.1.0-rc.8(c838222c2ca36f5a6c5ac0d551af7e1e))(@deepseek-ai/dsh-client-connection@0.1.0-rc.8)(@deepseek-ai/dsh-client-runtime@0.1.0-rc.8(f389034f75c07d902bfdd83862fec97b))(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-settings@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/schemastery@3.18.1))
'@deepseek-ai/dsh-client-ui-slots':
specifier: 0.1.0-rc.8
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-llm':
specifier: ^0.1.0-rc.8
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-attachment@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-brand@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-timeout@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.7(@deepseek-ai/cordis@4.0.1)))
'@deepseek-ai/dsh-session':
specifier: ^0.1.0-rc.8
version: 0.1.0-rc.8(81e691027b310392ca13c52fcf4a6b73)
'@testing-library/react':
specifier: ^16.3.2
version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/user-event':
specifier: ^14.6.5
version: 14.6.5(@testing-library/dom@10.4.1)
'@types/node':
specifier: ^22.20.0
version: 22.20.1
'@types/react':
specifier: ~18.3.31
version: 18.3.31
'@types/react-dom':
specifier: ~18.3.7
version: 18.3.7(@types/react@18.3.31)
'@vitejs/plugin-react':
specifier: 5.0.4
version: 5.0.4(vite@6.4.2(@types/node@22.20.1)(lightningcss@1.33.0))
'@vitest/coverage-v8':
specifier: ^4.1.10
version: 4.1.10(vitest@4.1.10)
aedes:
specifier: ^0.51.3
version: 0.51.3
jsdom:
specifier: ^30.0.1
version: 30.0.1
oxlint:
specifier: ^1.76.0
version: 1.78.0
publint:
specifier: ^0.3.21
version: 0.3.23
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
tsdown:
specifier: ^0.22.14
version: 0.22.14(publint@0.3.23)(typescript@6.0.3)
typescript:
specifier: ^6.0.3
version: 6.0.3
vite:
specifier: 6.4.2
version: 6.4.2(@types/node@22.20.1)(lightningcss@1.33.0)
vitest:
specifier: ^4.1.10
version: 4.1.10(@types/node@22.20.1)(@vitest/coverage-v8@4.1.10)(jsdom@30.0.1)(vite@6.4.2(@types/node@22.20.1)(lightningcss@1.33.0))
packages:
'@asamuzakjp/css-color@6.0.7':
resolution: {integrity: sha512-vC/bk1Lz7Tn/EfU9/apOTBk80/8dyGyWMowPoV1tJ52muDGsDqt2HPT2klrFUiY60MQmQv9q8yIht15JnBgDGw==}
engines: {node: ^22.13.0 || >=24.0.0}
'@asamuzakjp/dom-selector@8.3.2':
resolution: {integrity: sha512-93Z1N+BQNXysodoicpOIyNh2drHfz/CTf9nnT0FEx72GJcIiwgydD7tGAr78j41LsYn3hlRn+LdGPuBLn1Bl8Q==}
engines: {node: ^22.13.0 || >=24.0.0}
'@babel/code-frame@7.29.7':
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.29.7':
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.29.7':
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.8':
resolution: {integrity: sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.29.7':
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.29.7':
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.29.7':
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.29.7':
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.29.7':
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.29.7':
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.29.7':
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.29.7':
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.29.7':
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.29.8':
resolution: {integrity: sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-transform-react-jsx-self@7.29.7':
resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.29.7':
resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.29.7':
resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.29.7':
resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.29.8':
resolution: {integrity: sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.29.8':
resolution: {integrity: sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@1.0.2':
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
'@bramus/specificity@2.4.2':
resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==}
hasBin: true
'@csstools/color-helpers@6.1.1':
resolution: {integrity: sha512-gLNsunvwf3mCi5u5o46/Z/JcJMnhbHSaZ69rkgPzNM3J4s8hWwpPUQB6/tt0EDFyCiWzxANlx+2LJwpYj4zS1w==}
engines: {node: '>=20.19.0'}
'@csstools/css-calc@3.3.0':
resolution: {integrity: sha512-c5ihYsPkdG6JCkU2zTMm4+k6r7RXuGxtWYhu5DHMIiF1FHzrfmHL5so11AoFpUv/tu61xfcmT4AmKoFfMPoqdQ==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
'@csstools/css-tokenizer': ^4.0.0
'@csstools/css-color-parser@4.2.0':
resolution: {integrity: sha512-5+5LEmFuY1AjXdYhmgjTJogtQnP1evJ1zrBZGUNZ0thkpwnnmKxcHdAMn/OtFjAb25zA+jKDVYVRl+5G7rjv1A==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
'@csstools/css-tokenizer': ^4.0.0
'@csstools/css-parser-algorithms@4.0.0':
resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-tokenizer': ^4.0.0
'@csstools/css-syntax-patches-for-csstree@1.1.8':
resolution: {integrity: sha512-CpMLjAvwQg3BL5S0IeqsZNMH7EQrEWi0kLKOC13ZBF0ZwERiLWlibNPJr8G1kdU3Ms/r2KiNrF81pUh2HwAHdg==}
peerDependencies:
css-tree: ^3.2.1
peerDependenciesMeta:
css-tree:
optional: true
'@csstools/css-tokenizer@4.0.0':
resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
engines: {node: '>=20.19.0'}
'@deepseek-ai/cordis-plugin-include@1.0.6':
resolution: {integrity: sha512-i1VXrZCbv6tk/iUgedCNjrxxArbWT3IvRZGB5sdqJ3ectnihivXXQbRZ8JJ73DSmAPvlMGmrbtjFAfm10yvXRg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
'@deepseek-ai/cordis-plugin-loader@1.0.2':
resolution: {integrity: sha512-RIW9hoVyhYDWdCI9BsvtZccPde1ECLC4OAxupwowGTak78vwVTVdb3HezTSOK1Y1/Ax3Ru0LA1pYOB04CnTxIQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
node-addon-require-builtin: ^0.1.4
peerDependenciesMeta:
node-addon-require-builtin:
optional: true
'@deepseek-ai/cordis@4.0.1':
resolution: {integrity: sha512-YBdskTU2Po1kru3GgcUWUbkTsPMA9LkSQDAY8rBkFJeajdgcQad3QPJZE26JyK99Xb6HaASvoXg2DSUTeN/0Nw==}
hasBin: true
peerDependencies:
'@deepseek-ai/cordis-plugin-include': ^1.0.6
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
peerDependenciesMeta:
'@deepseek-ai/cordis-plugin-include':
optional: true
'@deepseek-ai/cordis-plugin-loader':
optional: true
'@deepseek-ai/cosmokit@1.8.2':
resolution: {integrity: sha512-muBOKtSrUKU5m/xpq8ZXWL6hQ/jgd4PhU2PqH97bcxIiLEJfNwZOGQEx4t/aS/GgxRAR+ra9pMHPMtTHU4sqqA==}
'@deepseek-ai/dsh-agent-default-model@0.1.0-rc.8':
resolution: {integrity: sha512-FSmgVy8yeVYx3krUwfWZR3JokLD202FSuEd/ZfGdxA+BhOKAOfhNv539kujatVqXyzCG3XiRNda7zWxCh2h7/A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-agent-presets@0.1.0-rc.8':
resolution: {integrity: sha512-7h+kE0KDrJCk2Y8GAqF4fu4YqZmFi5U8/AarFkGUqRI3HDugD6oYf05c7ZWNF7lQXh1OmwmrSbuPhT/YXJapOg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/cordis-plugin-include': ^1.0.6
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-atomic-write': ^0.1.0-rc.8
'@deepseek-ai/dsh-home-paths': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.8
'@deepseek-ai/dsh-agent@0.1.0-rc.8':
resolution: {integrity: sha512-fOl46ZvzoYHalrlyfOJAHNhzyKeVDTUnZZKNSJEr9GY/98WJTjcV21agVEofTXldkJ7a/ws2HpJkVNJVFMtslg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-api-gateway@0.1.0-rc.8':
resolution: {integrity: sha512-rNA9+Sq3lXFDmyoFLpXNbcuWg7iFeepCwDi+jt1oGjwZTdZJ2nEWpU6GKlOiqadQjHYzfwEbCqmcuJy32qke/A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-registry': ^0.1.0-rc.8
'@deepseek-ai/dsh-api-remotes@0.1.0-rc.8':
resolution: {integrity: sha512-s/zmFmU6R+dDxUWbHucIyfVgJG4v8kXa3YRjwjMO+Bu871ZG5Zsht6cvRqeSyu0A/Gs06ZfKYeKE0sdbCZ1NiA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.8
'@deepseek-ai/dsh-api-gateway': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.0-rc.8
'@deepseek-ai/dsh-credentials': ^0.1.0-rc.8
'@deepseek-ai/dsh-file-reference': ^0.1.0-rc.8
'@deepseek-ai/dsh-goal': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-plugin-inventory': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-message-feedback': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-reference': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-registry': ^0.1.0-rc.8
'@deepseek-ai/dsh-atomic-write@0.1.0-rc.8':
resolution: {integrity: sha512-SWP+NAat3oteaPi47zLPz4vxeYCHNVmFpN1aeKDuPHpe/ouNTl+WcyIONAJ+1MbZ+8APWhSaJIVu6ORJEUhVGw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-attachment@0.1.0-rc.7':
resolution: {integrity: sha512-rsR/xVNOGIig8gXxhrKnkd6YD7aYliGtA/e7b4DlPawMpLhsItAh0HQ832n8LJn1aGZxKf68y9PRgzfljsveOQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.7
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-attachment@0.1.0-rc.8':
resolution: {integrity: sha512-cCrg4WWiav7pGtbdU8dJTpAG28cPnkWVB2YPOrlBCgBbhQziGcG9Dv67Ti6L3PI4OQKC55gYBFinQghFO/7FGg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand@0.1.0-rc.7':
resolution: {integrity: sha512-P7+w0fN40yXXQkV360p6jQi63pcl68OOWebNGN5gf8w8sguvni2mA1cU8RLZzDkRNFSZD+BCw3D4uWYM+hhh7A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-brand@0.1.0-rc.8':
resolution: {integrity: sha512-402aUAfHxIZJrArBV4gDf0I/A/69A/By26FX6HTIOyFmCnB4wUBKh8jnglz1CorKWdZy8AKldAhh8HQhQEbGOQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-connection@0.1.0-rc.8':
resolution: {integrity: sha512-O1Y1NmkvJjpR/rCYkzulRrKbFwUbpMlINR4G6fbpGXaLy0VzTqN+ptk0b3wJ4RrnKPi4WWLKNNdV647Fg/1sCw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-attachment': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-apiproxy': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-webserver': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-locale@0.1.0-rc.8':
resolution: {integrity: sha512-S8ztym/oFU1aWPDtSZLTGWfprUBIuhfOrRNlw/qMAwhavJiQU/Ag0plg19JffGiOMAQuz2BU2n2mW/xhbpA5Vw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime@0.1.0-rc.8':
resolution: {integrity: sha512-wW/nktO/GVbGO/k163NlyJab/rK4D6xS5EL0bhYw4ojF1mxmWfrb3RUEYR5LcEUpFx/yXUHsUSgeO1ezmgIrvw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-api-remotes': ^0.1.0-rc.8
'@deepseek-ai/dsh-attachment': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-apiproxy': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm-retry': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-title': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-registry': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-primitives@0.1.0-rc.8':
resolution: {integrity: sha512-P3/n4jWT5kp4kTH67h+nmLu8LhKl9KsbFn8plumQFPXKGj2ythwmVoK3Nc329ANcYlxKXVtnoLPwYrTxkSeIpA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-settings@0.1.0-rc.8':
resolution: {integrity: sha512-qSOjpmglOPsLzx6Q5yysrU4c4W6QWFOkyVyqePA5lNPOdny2MH19qbuNleQHbiBo4Zadh/dtBn/SuNRfSp+pjw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-slots@0.1.0-rc.8':
resolution: {integrity: sha512-mwmSDuUG2BTcmPSL/o6esCYmjiwlW+uV3+ZZKIHzCxNVZ0AFMsfPQNZLhNSC2SYYw3SuIPb2R1W9DorB++KVyQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-code-runtime@0.1.0-rc.8':
resolution: {integrity: sha512-6ZKyEE7dHH1UkKe5b0lg18Byww/7ocZyrNMVjAoUWEWp5i96Brf9Eavu9q3zepBMDMZJErCfV0pyt7KDhBJSig==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands@0.1.0-rc.8':
resolution: {integrity: sha512-/i99EDLrUyd4bUVn4d7XS46vg09ZE0ervbE/aQaVUWLjDYKrarb7hPx9slADAg5/cUlJsN6L6CP544h9qlUo4g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-attachment': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-compaction@0.1.0-rc.8':
resolution: {integrity: sha512-sWNqZqejzpKsnEMPsNVA/WYK4S59XlYJtnWw8wCPushzQdUt5zhf+g7LVx0cStSozEfwurxRvaZdOmNaa4WhNQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-cordis-host-runner@0.1.0-rc.8':
resolution: {integrity: sha512-DCJr6INHCI0Dypr1JAJj/BnvN31tpIt3Y8+KQ3GDfHW6pUBsc9GnXHpKsuQ4sK/fTj80GjaDYPGdWeB/uKMMdw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-credentials@0.1.0-rc.8':
resolution: {integrity: sha512-VopOhtUEa/fSmJr3fyKbsEG043kX1oGuBrmELAbkhmuDigl1cN88g0VPb9rMG2/dJ1h08wg+h0RJP+Ex4LjRWw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-file-reference@0.1.0-rc.8':
resolution: {integrity: sha512-SoU4Zm7L8E9ud5nTs1tVAINFrgKvIKypCdOOMLBjJkjLUvXMYmKFxfCM7xaJjOmK/C5suEVUtpukZhZZvZALNA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-goal@0.1.0-rc.8':
resolution: {integrity: sha512-PR/9JjRn2H/33eyAVbtYBxzRWQhFO5N0S/188eAV9gjUTtHe5oSOnPxYy8iNkkMXxr+VE8Nno25Sun8WYmS8lQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-home-paths@0.1.0-rc.8':
resolution: {integrity: sha512-9cQhH9CZsw7Zi73VnZk7CcuEVA6yR/Ox+7lp3VHq53fFYSPi0RL+kMWmh5XCrZB4U1OM3+PVsWsA5II9tB+t0Q==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-apiproxy@0.1.0-rc.8':
resolution: {integrity: sha512-viq2CoS6bRavSe1t9sLjgunykO+Vn/m83uSgONMH8O7QN0Pk3+FnZGHlPZ1lQ4auNJTwQjxFG6w372cGq9usWw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.8
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-directory-picker@0.1.0-rc.8':
resolution: {integrity: sha512-aOUaUX0MTl8oLIuL27OkATMm+x2oTANuhhHpeGizn7+kfOX5bRKB3tyi7h6lGZ9O7WDiDLl2JajRqzBXlIPAAg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-plugin-inventory@0.1.0-rc.8':
resolution: {integrity: sha512-knPtxCDZn1jbwRfOUnskjaj8hSXUCfBcjD9LPFXnKffsM6TFOeQrFGhkNKlZteXAMSChtY6pV9bpJj17y3SPNg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-host-webserver@0.1.0-rc.8':
resolution: {integrity: sha512-MEKFrhvsYfj970QHLaKPpF/sIBpCe8NuSA0HGiWYJctX6TM9N3rLRhXx5p3zATDmXZclu1rbYhIbsqWw/twPig==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants@0.1.0-rc.7':
resolution: {integrity: sha512-PnO1F4aZGUmqZPyuPJpBUfQ4DZmjCGCNGr0yuN2iURTP/e6h0kGnTNTYgR2NqMvAtpP66WNiHhvH2LMqumk1+A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-jobs@0.1.0-rc.8':
resolution: {integrity: sha512-HqQudOA4VkjCMpxWiqTCMmuiTa/pehW6yG7dDsctO1vW5K48hWQ/h7czdJKgrh4SMuK4kchv3IipS1KaJmdaog==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm-retry@0.1.0-rc.8':
resolution: {integrity: sha512-DmcOajgiku5l7aa5hU9DtwnIZu+i/XCGdb+Wego5W9bAswYeBAwbceloRNE3O6+jdRzy+K5U7KQ9V+olBsNqRQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-timeout': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm@0.1.0-rc.8':
resolution: {integrity: sha512-hf6RmX2Stn1UtzpktSHQLkIktQkBm9i/3yFfJlbGSkwyw5Cv9sTYJbyoHzsSnnh6i8nRRcMcBhvMgm23I00oIw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-attachment': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-timeout': ^0.1.0-rc.8
'@deepseek-ai/dsh-message-feedback@0.1.0-rc.8':
resolution: {integrity: sha512-5DYXVLcnvTRs74Att52LGNR+x+RCf1X5s5+gOSUddsjnQ0wn4f3pzfc0o4F+91aE2zX3xzQ3/LhlW5UOJdkB0Q==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-native-command@0.1.0-rc.8':
resolution: {integrity: sha512-bRaT8LOb2xmWQ88oSzM4+Y3N4Yy4J0tf15/kQTP53PY1FnOA5hGYWoRglQgfxIcJCrw4fEdUPie8Fff0dCOwdQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-output-retention@0.1.0-rc.8':
resolution: {integrity: sha512-DeVjqZ9TtH2AEG57GBsHYT68274VygzuP9EqQLL01Ht1TrdK75xlVet1l3jdEbA7Eik4aSGDjAZD9/MsnlUIXg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope@0.1.0-rc.7':
resolution: {integrity: sha512-8gn+sANXhpv+9egbNwq49/uI3XhbmB33obo9yMyzyzruan3zFoxeH4UV54jTC2hjbu8gFNPsyNam9AAtRV8/Cg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-session-persistence@0.1.0-rc.8':
resolution: {integrity: sha512-JujorG/UCern0+zxJzNswyWl2tFG9sLzfVNvA5YkTLaRLZt7ZsEhxG4DxWZ6uj+3RJ8sf4bqdKqvpIn9t1pwUw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-timeout': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection-cache@0.1.0-rc.8':
resolution: {integrity: sha512-IPvO7k9FlekOJXn4XLWUwU5+JDQn7khu8Oa04GFDystU3c1CnOwoa7SGMHOfJau3r177M4ncXApwN5Ra6uhyXw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection@0.1.0-rc.8':
resolution: {integrity: sha512-q00B+rl7WAuK0Bgh93SY2+ZpqaH2kJhfJ9n6Jg6R/m4plnH0Ip4oCAHl6u8rBzDgb1mniQGEQDz/7BN5Q3It8Q==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-query@0.1.0-rc.8':
resolution: {integrity: sha512-q8eyfpgPuJx24l1fEevDkc3Dux3lNp/yDzVkDL4nSTGNaDx/h9Y6iG7SZdqWM5nxOET3iwxi4AkPM7lYyLg3cQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-title': ^0.1.0-rc.8
peerDependenciesMeta:
'@deepseek-ai/dsh-session-persistence':
optional: true
'@deepseek-ai/dsh-session-reference@0.1.0-rc.8':
resolution: {integrity: sha512-meNS02BOkLc2SnF2qWvl5X1Psk59t0Q1vvwjfCkczD29g4nm7Y02EZ089HJKii0VAsSB39RYA2rf6MCSl6vhow==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-compaction': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-output-retention': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-query': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-title@0.1.0-rc.8':
resolution: {integrity: sha512-OFG9kHFGnM5ND4LCkqg8oZr57qgF6xMkBxR/4MRaJJ42QrPI9QKzoZVRpNpXEl3v3uw8oR7Jj0jbc7WClNl3ow==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-session@0.1.0-rc.8':
resolution: {integrity: sha512-Qs5Mgn32WPPVB4rKHjsZBgLOkh0TQurUAcc9GaDVudK4dUkpno2HDh++qu/PrwRA3CZ/iwPAoFHCpB3AMMaoLg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings@0.1.0-rc.7':
resolution: {integrity: sha512-cS1+StK2xIVykrskw+KrO+hKJxYaVVgY2Jex2we5zASTNLHYCj74WQluPlaFjFgnXoZ1RYz8HNXL5/Ho6h1Ynw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.7
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/schemastery': ^3.18.1
'@deepseek-ai/dsh-settings@0.1.0-rc.8':
resolution: {integrity: sha512-pqbMoiSP+Ieww9/4gcHYXcBCDlno1zYDu2OPq+5xdZ+McnK+5YBtHsiRpnR9cHQxGTH7lkfIv+adkOueQW0utg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/schemastery': ^3.18.1
'@deepseek-ai/dsh-skill@0.1.0-rc.8':
resolution: {integrity: sha512-MqcOzl4Y5pQEvFBNVAi5w0IZWH5kVbXmp1RYScrl+8HpVATZbgumDhztVnEc2kUrZu+o6LKb1hnbunK6JHUE5g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage-domain@0.1.0-rc.8':
resolution: {integrity: sha512-rHphQ0jveKoCurwh9TX+VAVFsMQivBgghQBOAsWdVDZ3W6boeXNhMZWuGWZ7WjMPD3iJKgiFCx+650hhsao+LQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage@0.1.0-rc.8':
resolution: {integrity: sha512-KcxiNFAC1X0GhbS9yWGo7FLARBNsxoyU9JatxQtA23MuqOZaN4Nzy3bsMViK4/snzpPGwm//I+wfUywSjM6uBA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-subagent@0.1.0-rc.8':
resolution: {integrity: sha512-EI94+hYMfAe8BQkkH/FTcciGxajFfAdQe66Jhy2/eyR3dssRAZ+oJsV6SzU20x3m2yd0gmMaXzO1iV3gwYhY+g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-jobs': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-sandbox': ^0.1.0-rc.8
'@deepseek-ai/dsh-sandbox-policy': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection-cache': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-approval': ^0.1.0-rc.8
peerDependenciesMeta:
'@deepseek-ai/dsh-agent-presets':
optional: true
'@deepseek-ai/dsh-jobs':
optional: true
'@deepseek-ai/dsh-sandbox':
optional: true
'@deepseek-ai/dsh-sandbox-policy':
optional: true
'@deepseek-ai/dsh-session-persistence':
optional: true
'@deepseek-ai/dsh-session-projection':
optional: true
'@deepseek-ai/dsh-session-projection-cache':
optional: true
'@deepseek-ai/dsh-user-approval':
optional: true
'@deepseek-ai/dsh-system-prompt@0.1.0-rc.7':
resolution: {integrity: sha512-Rair2ZkzgoIIr+UstYVYeqeUgORNPIW1LNcsXz3Zjglx4FGjsmzs0UALdNYvSBpBvCLNmt4E6+XQIrBbS/s9jw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-llm': ^0.1.0-rc.7
'@deepseek-ai/dsh-scope': ^0.1.0-rc.7
'@deepseek-ai/dsh-timeout@0.1.0-rc.7':
resolution: {integrity: sha512-Ufl9G7zP7Tky/zkXscavEiolEfAwutfbPeLb5sUU/tPQlDykhh1NwGrarNJ11fdR723zmA/3co4LgxtDtWCOEQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-tools@0.1.0-rc.8':
resolution: {integrity: sha512-tvuGAVUS4yoPW9zH7CGWJgMlAzGjfu2UlRiricldlcwSKAaJZPZx/K/YfTivUyDTER6aK1DJUnIpVG7RD/DoHQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-code-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-approval': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-protocol@0.1.0-rc.7':
resolution: {integrity: sha512-R7qdvaRRHbz5xijoVOxueeBB/VT0eDzuQNQN4iNEBUbI/L9xG9bZutktTQlgrIlBSn1sPH4pLqiCiM6ErQPTaQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.7
'@deepseek-ai/dsh-typert-protocol@0.1.0-rc.8':
resolution: {integrity: sha512-scwEAefRBL7gRpaXiEdiHRMvlr8dLmUbiEvy0LOAX/8X3FZBd/5tHQ/8lCppAQNTDZMI/LSiSMpu5XrFId+7cQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-typert-registry@0.1.0-rc.8':
resolution: {integrity: sha512-pxfRE5f1y81h2lNqj0uooYrErTVgpzKfYm4W+ppRafN5s/+1jlLIYWiG3wWD3bnxyoD2NLcTEhi/GXoaqiwdaw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-approval@0.1.0-rc.8':
resolution: {integrity: sha512-6SFCxp7dgNFEyzQIcs5i9C+5djgXsAeV0iKmZUCLlcIeVM1chcCMHyGcoXlw8yyB14qFMrMs+TPvhvpu2WWxAw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-questions@0.1.0-rc.8':
resolution: {integrity: sha512-kiOAlpKKfB89iObWiiVpueD4XCaday203LGUs7+eGb2isolY6VppoGb7ZmcJQqsW63bjbAA7wZeJuN3CoxcvSQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm': ^0.1.0-rc.8
'@deepseek-ai/dsh-workspace@0.1.0-rc.8':
resolution: {integrity: sha512-Uyw44WcYvXRQjb0kUstTEJmL83hkGQbWnJzglaGWcAvsZBjQHeBgKuLzOZin1yc/dRX2pKuk1InFwxKXpaHjBA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage': ^0.1.0-rc.8
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.8
'@deepseek-ai/schemastery@3.18.1':
resolution: {integrity: sha512-Qn0FCSwCQnpnj6SB31I6i2sIKgKWnkbJM8O0EU91Gv2UsYVvtZTl6IA0sCwk2e2MZf5S8w5hpq9QkeVvK9qwxg==}
'@esbuild/aix-ppc64@0.25.12':
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.25.12':
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.25.12':
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.25.12':
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.25.12':
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.25.12':
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.25.12':
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.25.12':
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.25.12':
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.25.12':
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.25.12':
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.25.12':
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.25.12':
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.25.12':
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.25.12':
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.25.12':
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.25.12':
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.25.12':
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.25.12':
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.25.12':
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.25.12':
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/openharmony-arm64@0.25.12':
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
'@esbuild/sunos-x64@0.25.12':
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.25.12':
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.25.12':
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.25.12':
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@exodus/bytes@1.15.1':
resolution: {integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
'@noble/hashes': ^1.8.0 || ^2.0.0
peerDependenciesMeta:
'@noble/hashes':
optional: true
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
'@jridgewell/remapping@2.3.5':