-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
3984 lines (3283 loc) · 210 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
3984 lines (3283 loc) · 210 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:
.:
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-include':
specifier: 1.0.6
version: 1.0.6(@deepseek-ai/cordis-plugin-loader@1.0.2)(@deepseek-ai/cordis@4.0.1)
'@deepseek-ai/cordis-plugin-loader':
specifier: 1.0.2
version: 1.0.2(@deepseek-ai/cordis@4.0.1)
'@deepseek-ai/dsh-api-remotes':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(0037c360ed8ef45e74e856e82932995e)
'@deepseek-ai/dsh-client-locale':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(a92db0d7a1efaa32e2e5167651b5ed77)
'@deepseek-ai/dsh-client-runtime':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(e10031def47e53b41553a09942cca28a)
'@deepseek-ai/dsh-client-ui-conversation':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(ff759c8df3198f7de2cb654d5792be01)
'@deepseek-ai/dsh-client-ui-layout':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-client-runtime@0.1.1-rc.2(e10031def47e53b41553a09942cca28a))(@deepseek-ai/dsh-client-ui-theme@0.1.1-rc.2(dd58571ded973b4f461e7f8ef67d2007))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-settings':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-api-remotes@0.1.1-rc.2(0037c360ed8ef45e74e856e82932995e))(@deepseek-ai/dsh-client-connection@0.1.1-rc.2)(@deepseek-ai/dsh-client-runtime@0.1.1-rc.2(e10031def47e53b41553a09942cca28a))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-settings@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/schemastery@3.18.1))
'@deepseek-ai/dsh-client-ui-sidebar':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-client-locale@0.1.1-rc.2(a92db0d7a1efaa32e2e5167651b5ed77))(@deepseek-ai/dsh-client-runtime@0.1.1-rc.2(e10031def47e53b41553a09942cca28a))(@deepseek-ai/dsh-client-ui-layout@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-client-runtime@0.1.1-rc.2(e10031def47e53b41553a09942cca28a))(@deepseek-ai/dsh-client-ui-theme@0.1.1-rc.2(dd58571ded973b4f461e7f8ef67d2007))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-slots':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-settings':
specifier: 0.1.1-rc.2
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.1-rc.2(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/schemastery@3.18.1)
'@deepseek-ai/schemastery':
specifier: ^3.18.1
version: 3.18.1
'@types/node':
specifier: 22.19.0
version: 22.19.0
'@types/react':
specifier: 18.3.0
version: 18.3.0
'@vitest/coverage-v8':
specifier: 3.2.7
version: 3.2.7(supports-color@7.2.0)(vitest@3.2.7(@types/node@22.19.0)(jsdom@26.0.0(supports-color@7.2.0))(supports-color@7.2.0))
esbuild:
specifier: ^0.25.0
version: 0.25.12
jsdom:
specifier: 26.0.0
version: 26.0.0(supports-color@7.2.0)
oxlint:
specifier: 0.18.1
version: 0.18.1
playwright:
specifier: ^1.62.1
version: 1.62.1
react:
specifier: 18.3.1
version: 18.3.1
typescript:
specifier: ^5.8.0
version: 5.9.3
vitest:
specifier: ^3.2.0
version: 3.2.7(@types/node@22.19.0)(jsdom@26.0.0(supports-color@7.2.0))(supports-color@7.2.0)
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@asamuzakjp/css-color@3.2.0':
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
'@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/parser@7.29.8':
resolution: {integrity: sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@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'}
'@csstools/color-helpers@5.1.0':
resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.1.4':
resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.5
'@csstools/css-tokenizer': ^3.0.4
'@csstools/css-color-parser@3.1.0':
resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.5
'@csstools/css-tokenizer': ^3.0.4
'@csstools/css-parser-algorithms@3.0.5':
resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-tokenizer': ^3.0.4
'@csstools/css-tokenizer@3.0.4':
resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
engines: {node: '>=18'}
'@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.1-rc.2':
resolution: {integrity: sha512-Pv+4p20Eol7Ds/n0OS0vjtChCWfFTJAMThxugXcEcLKEJ9WAtpI4mzWfLgjmeVXnwD2yvp6HlLKDrrQV9PIkww==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-agent-presets@0.1.1-rc.2':
resolution: {integrity: sha512-88r3jkrbdwTgcP3MZLIUX458Ecu8JcLmZa7PtPszwf33yFoWlZvZmgjyn5ETHV55plNQ8gKMRm9a0RwzGGmzCw==}
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.1-rc.2
'@deepseek-ai/dsh-atomic-write': ^0.1.1-rc.2
'@deepseek-ai/dsh-home-paths': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-agent@0.1.1-rc.2':
resolution: {integrity: sha512-cC7lnJe7JgPFcreNXxcxLMxQd78LnpVO9ZXROjZsGRQN1zGH6i/DduI892F1am85IfzzO+XTxMwwUHmfwamb0g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-api-gateway@0.1.1-rc.2':
resolution: {integrity: sha512-i/e/Ecg1QCjMePUFHBfjRQU3NbDV0IdORwQbQD6RpiirzyvAIm4vvZgmW/FfgkO2XYJHHIVjo3i1i0YaHPcQag==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-registry': ^0.1.1-rc.2
'@deepseek-ai/dsh-api-remotes@0.1.1-rc.2':
resolution: {integrity: sha512-mtmMxA0TZwTjy46E2DF0kmsPCXVq6RBhrwEHWXBaRzc0DLjnYqmJODrZ0X+XwXOkwFZtDxWSv/uheiIsXf8now==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-agent-presets': ^0.1.1-rc.2
'@deepseek-ai/dsh-api-gateway': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.1-rc.2
'@deepseek-ai/dsh-credentials': ^0.1.1-rc.2
'@deepseek-ai/dsh-file-reference': ^0.1.1-rc.2
'@deepseek-ai/dsh-goal': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-plugin-inventory': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-message-feedback': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-reference': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-registry': ^0.1.1-rc.2
'@deepseek-ai/dsh-atomic-write@0.1.1-rc.2':
resolution: {integrity: sha512-QqNSF0+Ddn6qWY480dlilwEy6FLv3JKEWx1UQgoNJrxD4y54SDRzqBQB9yDXWKOoOGyC+05TN6/Px10GNIzMWA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-attachment@0.1.1-rc.2':
resolution: {integrity: sha512-rCYAt8QsawP1yfDCU7XxNwYT/XWvyFsxYrkwhLLkdfW83QVD0CQHizSkTQE7RFX74nKUD1z3sTLfnLr7xneArw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand@0.1.1-rc.2':
resolution: {integrity: sha512-8vXsAXoUdzKAgvd/E9DgyT6HKmR6ZM4rtJ3fs/XoJ6n2kBk4tWil8Lv+jxCMWJeMOnTJF55gu2+NWQ3ECFPtJw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection@0.1.1-rc.2':
resolution: {integrity: sha512-YX2WLA/aZdDQsien4Zo7IHTEfYVJ+4QhRXbgA6BrRUM23NSP/+V3K00dQYyQVsF3ZwocE5uyvlZvbYeg1Iz4ug==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-attachment': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-apiproxy': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-webserver': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-locale@0.1.1-rc.2':
resolution: {integrity: sha512-AMoR4FwMPLmt6WlYd4m0PCoxXj4qqMhpElBQZSc3r3NyGCZIuleU8tCG1xphGtr/w9mA1Y0kUX7Ftdmf7yV4FQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime@0.1.1-rc.2':
resolution: {integrity: sha512-o1FH7Rlns0Xaxh4SBOWZ1wpa0ViGw6DXWNm5NFpsBTGYD94RGdIrud3QxgrfzmQKLzu33gvS8JL/IjqbzWyYsg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-api-remotes': ^0.1.1-rc.2
'@deepseek-ai/dsh-attachment': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-apiproxy': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm-retry': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-title': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-registry': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-conversation@0.1.1-rc.2':
resolution: {integrity: sha512-5PCyHw2Y7nz9geEUT23et3h2XghJm7/3iWDAKa1/4ldIfCnjfxiZ5ZNRdZ9Xxpj32tBmh2lc6yxIJwrtepIyTg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-api-remotes': ^0.1.1-rc.2
'@deepseek-ai/dsh-attachment': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-locale': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-input-trigger': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-layout': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-compaction': ^0.1.1-rc.2
'@deepseek-ai/dsh-goal': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm-retry': ^0.1.1-rc.2
'@deepseek-ai/dsh-permission-presets': ^0.1.1-rc.2
'@deepseek-ai/dsh-plan-mode': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-stats': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-token-meter': ^0.1.1-rc.2
'@deepseek-ai/dsh-tool-todo': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-input-trigger@0.1.1-rc.2':
resolution: {integrity: sha512-jro0WgcJdi/ClpyKGWg+/0nEq9mmcda1KIoMsB+o9lLqebDUce/enxdEP0UtIEpQVOJ6EMMDY5Bsn+WtrdJNhg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-locale': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-file-reference': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-layout@0.1.1-rc.2':
resolution: {integrity: sha512-y7xSQyQYGuahLyJcSXpB+JbH1F5lGEc3L9K8cjLy5vd/L9N6gLFLWyeGdlGxxM4jxRt1+rAHDDZ/zl7b8GC5zQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-theme': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-settings@0.1.1-rc.2':
resolution: {integrity: sha512-WqEQkyjW467leTJoA31BgqM+nALI3JnrvN1IXDhJuKd8E9nXhTLJcRgDrovEUkh2cjbHF8g8gQJ5Qafg9PzJiQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-sidebar@0.1.1-rc.2':
resolution: {integrity: sha512-UCilyaNPwMO54JYtpCW5leLL+ecwtoRd4sHNVNG94aPQAqZOrqH+hqrBBsuolDJ9d0cKG9K5Mtew0fPz/hByZA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-locale': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-layout': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-slots@0.1.1-rc.2':
resolution: {integrity: sha512-6uBi+Wq+dH1Q8RaJpbK66TjzPlkcSNDWvNZgQXw45RRQCi1gnm/gxFOyJcSQvgqk4pvm2/h/aIvaM/Pa5PRFCA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-theme@0.1.1-rc.2':
resolution: {integrity: sha512-gRKI92D+EZtOy7UBkRfNvyL4e/3HikZ7exQSfgGpLEJ278/aXMvStNbL5ZgWVC41+MSZsBUk3dZAfbXNjelz2g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-connection': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-locale': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-client-ui-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-webserver': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-code-runtime@0.1.1-rc.2':
resolution: {integrity: sha512-SgFresqH5UABzRQZ7tOfqzOLMHF7089VeH+mfcwNQH5peOavgEKrAGOYz/9RnISH0XmMrj/x177t8gfO8Uvo/w==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands@0.1.1-rc.2':
resolution: {integrity: sha512-BOIe4Sht9rmMv1a6b3GWjWBbeWr7PtHlAy41vgpaymvUUuzOapOIA648ZMGCI/crRIt72Umev2FHtSwCNSbYZg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-attachment': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-compaction@0.1.1-rc.2':
resolution: {integrity: sha512-LV5GAIx7GO8DCRivnN2bmLmuucsYDG+ifG18BaXBqsVKdrzmaIu5o+CBxQAI2bX1N6mfBenLxmvCnROkyumLTg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-cordis-host-runner@0.1.1-rc.2':
resolution: {integrity: sha512-+AQGegPy+gdtcjTTPxDDYwAFUn6BB1J/MFFbmpPr+WIqJoDyVsuCDe8Rr8mCJmxs12CmTZXXSOE03LW203W8fA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-credentials@0.1.1-rc.2':
resolution: {integrity: sha512-aeVBaH07rox7NuSNbSqbz8g0eNb2IIhNbrZngj/VxUsr/TR9TXOq7lm1CL6SBUDlstGw3vNWeXyhim/DmA5iSQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-file-reference@0.1.1-rc.2':
resolution: {integrity: sha512-8Pd4SNHhV6OlbwfV5K4qmFb709I0Z68qgaUQJ7zM4BTjClNe1/dktQnETtWPfqbPTx/2sNKXM1rz4WXuROrIfQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-goal@0.1.1-rc.2':
resolution: {integrity: sha512-lSHTh4vfS6eRb9to/y+bjRf2+0QkNpY3tHJ29HMTewR9fJYZsEVVu4Hc+GPhPEjF7RpiD35/sKx+akijtDasyg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-home-paths@0.1.1-rc.2':
resolution: {integrity: sha512-lGsP7sbnu20AiRAb+gxYiKx9oa9r1D/8Fr6BwWHXpaPx6ZE4Qg0+ybh5SZVfGQ+XhLcQisu3nwWemEjtTJGiig==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-apiproxy@0.1.1-rc.2':
resolution: {integrity: sha512-dplRnGGXXsQYFQ1KMHymAM0iaxuE9Z153JHYcGEgOwXNkS3HA20gSi3yMt6fz+zi/cMHYXvY1JQhS54BTc761A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent-presets': ^0.1.1-rc.2
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-directory-picker@0.1.1-rc.2':
resolution: {integrity: sha512-m3puwS+bvJQ1eASdpEEwlQqKa9znhBSgtoSSI0GZN5VMynZVl7E31HMltENz3QC2Nd+C3bh7vNjrJFtumUDsLQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-plugin-inventory@0.1.1-rc.2':
resolution: {integrity: sha512-Hud9ezW0bexWfhX7C+c5rdUDX1xzbEGDzj1lGQyj/QxdrxHYHjGrJq3tLRyvN6K4FSmEdG2IBKdQGCOLVrIthA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-host-webserver@0.1.1-rc.2':
resolution: {integrity: sha512-t9MrjC65QHiiWhG9V8UZxgfE/aWYhJHHrIM0kbTvtXxg4tLGIKo/upHp7iiag65F3HTkVLrH/DUyPMi4v2ZA7g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants@0.1.1-rc.2':
resolution: {integrity: sha512-l+1Om/EDFyMjhgSuEx2WDLLA2fia/+ga9mBTCoT/MMslsnWaK5G0/lWwbwlTBSaJ6OfmYc3DuBgox8DbgIGHRQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-jobs@0.1.1-rc.2':
resolution: {integrity: sha512-SXvDJMvcUrGrlzIyE7j8/lI4Pj1nDe/UOR8C05Zagp+/0R8p46n6KylySvZdPAFENV5t8WX3Fw3eOaS4No0+wQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm-retry@0.1.1-rc.2':
resolution: {integrity: sha512-a13Fpmn8HFy8LCjl6gljaNPxcVjO/R+/uMPDl0QLjwQcHWVyGW38ZA8jP5iRuFgdyNNXpyxLWuZXi/0VOH00tA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-timeout': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm@0.1.1-rc.2':
resolution: {integrity: sha512-ASJfjIdZbIXvLwi3rGo+eZb/GxMVV/WO5/XVD3B96mT8EIzrlw3+nMR6/CvmJVzcycKQ2XN0wj7jD6TasPRySA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-attachment': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-timeout': ^0.1.1-rc.2
'@deepseek-ai/dsh-message-feedback@0.1.1-rc.2':
resolution: {integrity: sha512-GzxDiNvyUVs/bbbm+Hr3MfuU3wM8ErRF5z9XadnSGPYZvipZDAMrvrS5v6JgOUaZt6ApBpEMJ4xVgIel1VnGYQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage-domain': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-native-command@0.1.1-rc.2':
resolution: {integrity: sha512-GIknPrwU7vZOUQ2o/ES7Z0uUhUrZGp/yigKP+RXEu41VI9tcybiXQAA8CEdDFmNQ11R2wfYQhr3WO5vy35akWg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-output-retention@0.1.1-rc.2':
resolution: {integrity: sha512-tCni+bTEp/FWokfz3fqn4p6SzHn6pkY6H3HkS9UY5PHrztUE1ESUQUp41kIVtwUhRmJU7yissqjxe6kLDB6t2Q==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-permission-presets@0.1.1-rc.2':
resolution: {integrity: sha512-k9hdF0lXV6dmVNBeWTmJpk0okaaH3hnvpQVRfUja8mlpJgPr482QMReuQsGJkY8ztzSE+JtzZndPSXjRrvLzSw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox-policy': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-shell': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-approval': ^0.1.1-rc.2
'@deepseek-ai/dsh-plan-mode@0.1.1-rc.2':
resolution: {integrity: sha512-jIQ71skseprYkwcIkZfS5jtClF6Z5oDC8JIwMN5ukGRDkkoKTT+uLWnw3AgArAOBi0CIy8j5Khy7GP7v+02F5g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-commands': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-questions': ^0.1.1-rc.2
peerDependenciesMeta:
'@deepseek-ai/dsh-commands':
optional: true
'@deepseek-ai/dsh-sandbox-policy@0.1.1-rc.2':
resolution: {integrity: sha512-cpoIUxCzpZJDTMXVt9gS+qgWEDAWf6rIe715uY1NF0ROoiEXPlmToLsHLF+4pXTW3wWWzpGVswO0bPYEKrQr3g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox@0.1.1-rc.2':
resolution: {integrity: sha512-rnO2RqZ+ycpwrXrXlMcrhWAICdui3ZVTjNQ8eZrOPE18hAbX3tw0nLFq26sBjMSnBfDQHNZ4VaFpt0p8qhkPWQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope@0.1.1-rc.2':
resolution: {integrity: sha512-Xy3ejL6dwVSluZL7XOWy76ya4pCw1uHwxodDK4O9XiQUiUV4FBXnt0aNJUtMeAFN0c1YujxxCmRniMvuuNn1Nw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence@0.1.1-rc.2':
resolution: {integrity: sha512-dxdYxRfmK5jWtiFFabqRNb/jGGjkXyF2djI7O8IIKmDVjhQiv170zpvhbAhRUuqClEdseCtbQpLBrRm2blzt3g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-timeout': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection-cache@0.1.1-rc.2':
resolution: {integrity: sha512-UvCRpIb+LoQI/nCLof17xc2P2KuZoucU3VuzfAukfsF3dYZAy5OP7jrCRdVZIvjRfvFUd7G+awdS9sWbnjcolg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage-domain': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection@0.1.1-rc.2':
resolution: {integrity: sha512-SNaOrjRS4RMXocna6uL33TeS/uhcQ7jDJtJZ1HyDPL06mXUdAgje2MVt8OZCh6dH95xIiqpQQm+KjzeiQnhYSQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-query@0.1.1-rc.2':
resolution: {integrity: sha512-QxQFRg/KnrZnYiO7fNtTJVTakuGs9ZFRkGGgYuNPzSz1pRqiohGNE/JZzBtq+HMv38RRTRZrM4aIOUV8OgqoXQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-title': ^0.1.1-rc.2
peerDependenciesMeta:
'@deepseek-ai/dsh-session-persistence':
optional: true
'@deepseek-ai/dsh-session-reference@0.1.1-rc.2':
resolution: {integrity: sha512-c9mz19ndxjVxSnXEhmJwGDjyKG4oNmu4Sfneix8OUJ+mAr3jIgb/QZZ8rYEc8Bi+Dd1z7Wr90IeWOBF0nolU3A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-compaction': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-output-retention': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-query': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-stats@0.1.1-rc.2':
resolution: {integrity: sha512-SKGUZicnHHU8+zCswoluBCHSbTkA5ARQjl7YNxN6qY01ud/azpPdbcVaKO2MUy60Q1myx3W0Xk93VzF7sMt6cA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-title@0.1.1-rc.2':
resolution: {integrity: sha512-qHv+9nE6J/piHsWwckmbJBS1sJjunCWsv00arhsgjW1XMLCHxG6QOB+U48P4EBZjve798Tz8AQIlWZy+9T8XmA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-session@0.1.1-rc.2':
resolution: {integrity: sha512-4/cv6X9HPhm47eyRhCu/WZwzrtJKegk5J+0xaxcZ9i8S0smdxP57tqy8a0jkSshLQn7BzMFxneQrlYExrLrDhQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings@0.1.1-rc.2':
resolution: {integrity: sha512-iGdKEt91Im3gE7xA9CzRfTJsPcFcxDeDOCLhAjzbpjEv7TAjx/EoYP7lPtiy+QmOjKSKy206SEtAKol9PXWbOw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/schemastery': ^3.18.1
'@deepseek-ai/dsh-shell@0.1.1-rc.2':
resolution: {integrity: sha512-gEqPUxKOpOV66wvM4o8Z5FEuWmsEvYzD9OQy3cyo/kjzlx+2+KUWi22cl/YWtBs/zUtRJbdG5UqMnh8GUeO8Hg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox': ^0.1.1-rc.2
'@deepseek-ai/dsh-settings': ^0.1.1-rc.2
'@deepseek-ai/dsh-subprocess': ^0.1.1-rc.2
'@deepseek-ai/dsh-skill@0.1.1-rc.2':
resolution: {integrity: sha512-FACjlOqdsWX+0RtSs3RWrdY0QQEpPJrBfvxUbWSh7E8UyCM8dKdIbsQnuXIjsAgC7GgYp7lyFDSCMovQ3ARp8g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage-domain@0.1.1-rc.2':
resolution: {integrity: sha512-9/3OuaZpxf9NZWhrARpgZ7UBa03pPaTIiDBw+SfESfwVk42NNLVCQgvnEbrWoNwdtzmv0aYCEV23sKwwlQ0LBA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage@0.1.1-rc.2':
resolution: {integrity: sha512-ptJ1ss8spF+Y2VXjsMV37Qh1+hviYWZylDvXtfEBXjLbPi/BP3dktT4B6OMIAD1rRN+0A4HdTqJBgLk7Gp1rig==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-subagent@0.1.1-rc.2':
resolution: {integrity: sha512-CNa0WuFCR69TMnBKYQInz49/olDSaVHiYkDTyTuDh7YW7Y80/f/HjQe5G0fQaqZMLla3IUSXCIPl5EssWmjcQw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-agent-presets': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-jobs': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox': ^0.1.1-rc.2
'@deepseek-ai/dsh-sandbox-policy': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection-cache': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-approval': ^0.1.1-rc.2
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-subprocess@0.1.1-rc.2':
resolution: {integrity: sha512-YXEBaUfdkCJm4Wj/w08imS+1TMd3K4Rjr/xD5tuJR1I4/EnBCseP6AOlwjcrDP5PPWfOZghrK8H01sk6cqiK8Q==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt@0.1.1-rc.2':
resolution: {integrity: sha512-on4hjAlYI5uX9q7Sf95YkMMBVe6heywtA/H50ksrIMUub8U2B98hO9iQpHhjwIO1F1vu+5pLcPvRr6yUGGmtXQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-timeout@0.1.1-rc.2':
resolution: {integrity: sha512-RrouVgU3G5gXr9zHhpThkMG6YKdcRJzXXdPm1dq3ioBxbvxlfMSfNY4tN8lWMJxLyGtvWkPra0HQX+YWxvdOOA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-token-meter@0.1.1-rc.2':
resolution: {integrity: sha512-XHSgvMga4h73LHzuG8gztocs74+6NYg7ciHdu2aM2PYC59/rPfxq4Kz9Hq6TTvYa4a/sDgCij/T0tZBNvQixDQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-compaction': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-tool-todo@0.1.1-rc.2':
resolution: {integrity: sha512-YKP77X/fiKxva/ZzcqkDy6WhNUWYA9oTrAPLAVf3GP+ubIu+r4/cPxu6f2+/8rXLYSi47HXAHajeqQbw2UNXnQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-projection': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools': ^0.1.1-rc.2
'@deepseek-ai/dsh-tools@0.1.1-rc.2':
resolution: {integrity: sha512-0GGL4D55MwYDepzZMOI3L0ycu5b2qr96GL0Y7snwhAnpK2Di61rbX3fJE+PB3ZrovGX0csIRdt9n3iJZDVtDrw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-code-runtime': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-approval': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-protocol@0.1.1-rc.2':
resolution: {integrity: sha512-lxBssDc5Pz1qBE5kuIyaArA7AvIPq9rpaVclylodiSzVJe95e2xruBg73tflyjtd8y00toet+DLgQ6tSSsq6Kw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-typert-registry@0.1.1-rc.2':
resolution: {integrity: sha512-ATZu3i7UId+ktsWW3pUFm5Hi1fVsRXFmByATVPp2RlxH1zjxXnauVW6k70ZwU/4FOsphRzo65SXOlAXA+natYg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-approval@0.1.1-rc.2':
resolution: {integrity: sha512-SdsO4Rs+NeJFoertkVilXBACREOLfkKPJJznYKqDhJxeRo38RJ56dtj0Xd0/6rERmsQiMck4Bwdrzg1ubUqPNA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-scope': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-system-prompt': ^0.1.1-rc.2
'@deepseek-ai/dsh-user-questions@0.1.1-rc.2':
resolution: {integrity: sha512-9lYoB7qCFE+Vvgwjny3MnRfS7QUefOspj4KpE3b30DAAJfxwrU4hRtLCHOKxyurF01qrkoEBBpXn4H5ilXYTKg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-llm': ^0.1.1-rc.2
'@deepseek-ai/dsh-workspace@0.1.1-rc.2':
resolution: {integrity: sha512-jBUob4H5TZAiExq9YNVCglKAFmAKMtd1UbyqFfnZZ1Owm+3c3NbAXY947MHiD6NwCwFEW1y7FjrFj66UQvG90A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.1-rc.2
'@deepseek-ai/dsh-invariants': ^0.1.1-rc.2
'@deepseek-ai/dsh-session': ^0.1.1-rc.2
'@deepseek-ai/dsh-session-persistence': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage': ^0.1.1-rc.2
'@deepseek-ai/dsh-storage-domain': ^0.1.1-rc.2
'@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/aix-ppc64@0.28.2':
resolution: {integrity: sha512-XExcO+dvLKvVtNTibSTBej1NCAbaGhWn9Ww1ZPx80qsahhPFe/8jgWP0IchNe0F3HwkU7n8ejhH8bjonqht8mQ==}
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-arm64@0.28.2':
resolution: {integrity: sha512-5YfKeeI8qWfBZIX+u2xZC3Zlb3Os/gLS2sbEKM+I4ZOcsWmHS2WLysCcQZDAFRslDUU5Oiq44gf6PYN1vGwG5A==}
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-arm@0.28.2':
resolution: {integrity: sha512-kXXoiPVVGQcnIYGOeaovwOURpniDBpSq4A03qkQ+BMQqtGG6HYap3xne9C1O1yo4TR3qxlCX5IqqmX6fFo2Lqg==}
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/android-x64@0.28.2':
resolution: {integrity: sha512-O387ite7SzUyCcy3JQX4P4bLtEA7bLLkx+esve5JHnyYfNTxcVpXZo9jhdB0lTKN44gztELTdU7nS8Nr16Fs1Q==}
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-arm64@0.28.2':
resolution: {integrity: sha512-n4KqkOQrraxHJcgjM1RvwbigfQKIKJVpM7xp+KsxiyUSrRdIXnt73VhrPAx0fV44hgfmIVKjxMN9J1t5jySVkw==}
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/darwin-x64@0.28.2':
resolution: {integrity: sha512-uq6suIWYP37qzGddBKPw5QEQPi6HiLGsO7UmkpfyaYNQ3D+rN6w6WfwH+nuqcGXWvawGwxOEroO4YGnFh95azw==}
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-arm64@0.28.2':
resolution: {integrity: sha512-n+I0BTSRIoy+d6RPKnEVwql5UwBJolytvY4mAOIEJorKlqgPII8ix6slVVrfZ5Tnj7glIZvloylbB/EJPMWEXw==}
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/freebsd-x64@0.28.2':
resolution: {integrity: sha512-78XJTJkvPs0kz2w61301PJjXl4g7q3JqiYMZ/M/yVI73EHBrCRTgkhu9oqG7vPqq+a/yadEW8aD+agKlk5xrmg==}
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-arm64@0.28.2':
resolution: {integrity: sha512-pW4AC0P3it8c7do9MVM4p51FzHzdM/TZrerurgRcHJ2WTa1VQ1CIq18xncfpBJw4ojkiZZrKW2yIBWBP92j6Ug==}
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-arm@0.28.2':
resolution: {integrity: sha512-XlDnu2q5yoqems+xay6wSAcg9DDD7K9RLKZEBOMZm3ckNpJBvOX20tSfby8KfrrhINDyv9V2YVZKY/SpoGJI8w==}
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-ia32@0.28.2':
resolution: {integrity: sha512-CYbnj78HsIeA+DhgUKgFCfvNsTHFhMMrinUrMZpDXJXKN8T3XViTZ/+wtHeVxEWY8ewSzTFN+nRmSwO2tZaLUQ==}
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-loong64@0.28.2':
resolution: {integrity: sha512-buwkd8nsph4R+ajRvw0qM5Hja/TXQow3ptzWO2EbG/cqcIkHloRrdlBtQlshyYGTNFvfkfJ5tpPLVkY4DtsPfQ==}
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]