-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
6031 lines (4866 loc) · 285 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
6031 lines (4866 loc) · 285 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/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/dsh-client-runtime':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(91dfbd886a32a38bc2dd7800bcff76b5)
'@deepseek-ai/dsh-client-ui-conversation':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(99f1b03f10076d9ddd13a6dd767c8f75)
'@deepseek-ai/dsh-client-ui-input-trigger':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-client-locale@0.1.0-rc.6(e1ecb392fc11a103c10df6c0e339f5fc))(@deepseek-ai/dsh-client-runtime@0.1.0-rc.8(91dfbd886a32a38bc2dd7800bcff76b5))(@deepseek-ai/dsh-file-reference@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-agent@0.1.0-rc.6(4b1a1b4b7e7e4748be534ee296d68dcf))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-typert-protocol@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-primitives':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-slots':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-client-ui-tool':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-api-remotes@0.1.0-rc.6(ee4ab61d15e3f45f04922aee4c443386))(@deepseek-ai/dsh-client-connection@0.1.0-rc.6)(@deepseek-ai/dsh-client-locale@0.1.0-rc.6(e1ecb392fc11a103c10df6c0e339f5fc))(@deepseek-ai/dsh-client-runtime@0.1.0-rc.8(91dfbd886a32a38bc2dd7800bcff76b5))(@deepseek-ai/dsh-client-ui-conversation@0.1.0-rc.8(99f1b03f10076d9ddd13a6dd767c8f75))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))
'@deepseek-ai/dsh-invariants':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)
'@deepseek-ai/dsh-llm':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-attachment@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-timeout@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))
'@deepseek-ai/dsh-session':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(4345a04528ba5fe6fca14c14c75a9257)
'@deepseek-ai/dsh-skill':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.1-rc.2(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-llm@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-attachment@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-timeout@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))))(@deepseek-ai/dsh-scope@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))
'@deepseek-ai/dsh-system-prompt':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-llm@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-attachment@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-brand@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))(@deepseek-ai/dsh-timeout@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1))))(@deepseek-ai/dsh-scope@0.1.0-rc.6(@deepseek-ai/cordis@4.0.1)(@deepseek-ai/dsh-invariants@0.1.0-rc.8(@deepseek-ai/cordis@4.0.1)))
'@deepseek-ai/dsh-tools':
specifier: ^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0
version: 0.1.0-rc.8(fa9f847b9305c7d2f6c97b55bcd5511f)
react:
specifier: ^18.3.1
version: 18.3.1
devDependencies:
'@testing-library/dom':
specifier: ^10.4.1
version: 10.4.1
'@testing-library/react':
specifier: ^16.0.0
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)
'@types/node':
specifier: ^22.19.0
version: 22.20.1
'@types/react':
specifier: ^18.0.0
version: 18.3.31
'@types/react-dom':
specifier: ^18.0.0
version: 18.3.7(@types/react@18.3.31)
'@types/three':
specifier: ^0.185.4
version: 0.185.4
echarts:
specifier: ^5.6.0
version: 5.6.0
jsdom:
specifier: ^25.0.0
version: 25.0.1
lightningcss:
specifier: ^1.25.0
version: 1.33.0
mermaid:
specifier: 11.16.0
version: 11.16.0
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
three:
specifier: ^0.180.0
version: 0.180.0
tsdown:
specifier: ^0.22.2
version: 0.22.14(tsx@4.23.12)(typescript@5.9.3)
tsx:
specifier: ^4.0.0
version: 4.23.12
typescript:
specifier: ^5.6.0
version: 5.9.3
vite:
specifier: ^6.0.0
version: 6.4.3(@types/node@22.20.1)(lightningcss@1.33.0)(tsx@4.23.12)(yaml@2.9.0)
vitest:
specifier: ^3.0.0
version: 3.2.7(@types/debug@4.1.13)(@types/node@22.20.1)(jsdom@25.0.1)(lightningcss@1.33.0)(tsx@4.23.12)(yaml@2.9.0)
yaml:
specifier: ^2.4.2
version: 2.9.0
packages:
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
'@asamuzakjp/css-color@3.2.0':
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
'@babel/code-frame@7.29.7':
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
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/runtime@7.29.7':
resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
engines: {node: '>=6.9.0'}
'@braintree/sanitize-url@7.1.2':
resolution: {integrity: sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA==}
'@chevrotain/types@11.1.2':
resolution: {integrity: sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw==}
'@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.0-rc.6':
resolution: {integrity: sha512-5Fl15p5mHVMlp69Ea0qeS81ej1Bt9vSJtCed+gjvzkKzv5y3VbJQ8PPBV34F1rTSyhTtjj5Q7TuDugQI5ZpjfA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-settings': ^0.1.0-rc.6
'@deepseek-ai/dsh-agent-presets@0.1.0-rc.6':
resolution: {integrity: sha512-LtDz0TYE7YNhJOhMDZ8s45xQG57bWF4F1SN3tjYDosaBdINIRTxJ0O80BC+KeliqFDw071ZNOzTUEelwEAIx7w==}
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.6
'@deepseek-ai/dsh-atomic-write': ^0.1.0-rc.6
'@deepseek-ai/dsh-home-paths': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-settings': ^0.1.0-rc.6
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.6
'@deepseek-ai/dsh-agent@0.1.0-rc.6':
resolution: {integrity: sha512-vtqq2pWTrzn0dKfj5kREZRpP82AwtGjGx9V1lYnKvF+Uc/a8zyWbSvjDE7V1d3YQAQJzs2cWO31hURWDekDXIA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-api-gateway@0.1.0-rc.6':
resolution: {integrity: sha512-pmdQXBEJpUtr87jIfTyzyPWKGbUghzJno/nZpBWfhk+ZTjGwj0jKpyA5GhhS/tzzo67f5IdmEjcxddoDr3o3Kw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-registry': ^0.1.0-rc.6
'@deepseek-ai/dsh-api-remotes@0.1.0-rc.6':
resolution: {integrity: sha512-yYsHgPr5ZiLk+i2RTREdMj8Gin7J8jG2qnTehZmLpCONGbJv2+grPPRuH7OwcQd+HguXL0ay/rlg6L1O1t8xDg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.6
'@deepseek-ai/dsh-api-gateway': ^0.1.0-rc.6
'@deepseek-ai/dsh-commands': ^0.1.0-rc.6
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.0-rc.6
'@deepseek-ai/dsh-credentials': ^0.1.0-rc.6
'@deepseek-ai/dsh-goal': ^0.1.0-rc.6
'@deepseek-ai/dsh-host-plugin-inventory': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-message-feedback': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-settings': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-registry': ^0.1.0-rc.6
'@deepseek-ai/dsh-atomic-write@0.1.0-rc.6':
resolution: {integrity: sha512-Ot/2aygDzWuN4ypUkDJA6MpSlGbcvzzKnWAms0lg+2WUtPZr7O0cGb83K3TEO2NoAu0LJfVxlbo8Eya3tDaFtw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-attachment@0.1.0-rc.6':
resolution: {integrity: sha512-3P6N17NQ8jqSQGzeCs+svCIqArU8oq0YmgEAo+axN9aVuUDferWU4DLRSX59UGpmyldX4LQn81toA+c+DqMcHg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand@0.1.0-rc.6':
resolution: {integrity: sha512-E8j9Nby24qP4rfrdcfc7bpt1CHpGT3tYmycOJJkEOH4ptIdT1m2ro9nmnSd5CWYukTr64A77vjm2WGqHRI92UA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-connection@0.1.0-rc.6':
resolution: {integrity: sha512-ZHqZXmmdcxzw7HKwrSJDlU3/GVulvX/yAc1xHu7hw+cXWws2QK7ahQMpfdiywnxAVYadhFnsvLLkEPp38mOREg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-host-webserver': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-locale@0.1.0-rc.6':
resolution: {integrity: sha512-IoSLGxfHgcoaNzIlQ7YRTHRTy/MQCvvusrPCwlT30Xc9lpQe6Yo/LiRLDXlm9zbhN6imf/AoQZIfO+T3VGqneg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-ui-primitives': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-ui-settings': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-ui-slots': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
react: ^18.2.0
'@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-schema-form@0.1.0-rc.6':
resolution: {integrity: sha512-2kFkweuNJlcnYRTy6rXx1gWoWNapFCDOvcYs7Kkir8n3JwQVB6xwTkQxVuZDBTD4jrdIpKTeetx4ghig49joTw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-ui-conversation@0.1.0-rc.8':
resolution: {integrity: sha512-GnQSE47/goSm1UzxQpYQrQnMJLyTmYFH6NENdrOxrVJxQnB55ruactgM1kVwfFnc/WUQVYy0599AK7pxjbxjMg==}
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-brand': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-locale': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-input-trigger': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-layout': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-compaction': ^0.1.0-rc.8
'@deepseek-ai/dsh-goal': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-llm-retry': ^0.1.0-rc.8
'@deepseek-ai/dsh-permission-presets': ^0.1.0-rc.8
'@deepseek-ai/dsh-plan-mode': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-stats': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-token-meter': ^0.1.0-rc.8
'@deepseek-ai/dsh-tool-todo': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-input-trigger@0.1.0-rc.8':
resolution: {integrity: sha512-uVJEZ1ftUdMemLvNf17gzB6ThYw0DL4k+0kcQrUPc6LHNQ2ZeuuvOz/931OlqzzUKMtlAGZgy0LvWyJ62LlSog==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-locale': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-file-reference': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-layout@0.1.0-rc.8':
resolution: {integrity: sha512-tbHawbf8FsJqdwnXrU46V8u13bfAFVQQf0hA0OXH4k0PiLiThdZgQFn/T94+56JMUzD1QLqe7DLmNz29cwmjvQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-theme': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^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.6':
resolution: {integrity: sha512-g+6w62SWnwMWkn6VuLK6MHcSKbXQZD7oTYLG5wjhDRDULOEBCgikXD3LJo/esOsVncXABDiih8KuDW3Fg8TfSQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-api-remotes': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-connection': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-schema-form': ^0.1.0-rc.6
'@deepseek-ai/dsh-client-ui-slots': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-settings': ^0.1.0-rc.6
react: ^18.2.0
'@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-client-ui-theme@0.1.0-rc.8':
resolution: {integrity: sha512-orLl5eoWOnvjj76lI6xucE+lT+o+ouniRMSFsuYwF1DNH2pbyfVPQYJWL3iM55gE28yyZJGgmtmABnQBiEF5iA==}
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-locale': ^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-host-webserver': ^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-tool@0.1.0-rc.8':
resolution: {integrity: sha512-+Mtgx56PptrtoN4Q36yISe3u0lnVazdqV9s+1cLU2C2sAw7bB7o2Y/J9PBPiuBSsK8rmCLbUPYK6QefenwFE7Q==}
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-locale': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-runtime': ^0.1.0-rc.8
'@deepseek-ai/dsh-client-ui-conversation': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-code-runtime@0.1.0-rc.6':
resolution: {integrity: sha512-aw8D4IOeMo11A3uxQeE4LFoW3bvaQnVkGFqqtS+lsINDARrOCJHXLUgecoKpys+Lc5erZZ4UQDnymJmL4OCcKA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-commands@0.1.0-rc.6':
resolution: {integrity: sha512-dq1GZmGTPXEGG01ksZ6Jj6DxAkzAbg+nepvfnM/P74d6EUcsFsEy7CfS18n0VJ6/2Wp0xOWsQyyuFElqbynO7w==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-compaction@0.1.0-rc.6':
resolution: {integrity: sha512-Uu8qgrHom13gdwwxAnqmNuWM8MqafkRlhjQMMJYmaMVVxjEUewSJ6lwtMbUEBR5ViLsfv4pTm5TnhxNCjedBUw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-commands': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-cordis-host-runner@0.1.0-rc.6':
resolution: {integrity: sha512-opN+kvxYf40rBVWhURZmq2E8uGWkv8r9L0YfynYAu/2YE7W/oGEQx2x1Mp0LxuWq1uec8rtu2GL2U17ORNuuVw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-tools': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-credentials@0.1.0-rc.6':
resolution: {integrity: sha512-zyYRs3A9gxfZjZfONzJdMhM0Gzbslpha+FGYkLDRAozgPj0N7mZdE+Qflx2V4WNrCnsSjuvOW0HFBxWtSRUTUw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@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.6':
resolution: {integrity: sha512-cONQOvFqZmjtw5HSgbXJ5/8rZ2gHqdf69ONhH21cLFu5jJKVy9YbLt42SlD2sdGMv/co9nN8Kt9bWQiZ/96VbQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-home-paths@0.1.0-rc.6':
resolution: {integrity: sha512-gIiUBmqB3L8inFr+hvjZv2/i6EVJOHIHCHg7bBFVhcl4HDK94+8wUCXTLGy80tcuISzIQiIaLuJq/NhSmV9Amw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-host-apiproxy@0.1.0-rc.6':
resolution: {integrity: sha512-sydiTngUEtvCyUwtCpXusQXVuiq0Kv7t2Axe8UKbimhhQLktnfhAmsEF+QHFTG5zcnxAuuigPiUTeY0Cr8+CnA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.6
'@deepseek-ai/dsh-cordis-host-runner': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-host-directory-picker@0.1.0-rc.6':
resolution: {integrity: sha512-1XafIFC2H5sPi720ATQWgCTgjZum7ZUng6H+z9uDMOhkKLFO7X2n8D2ddmGuQINnKV7sjlw0Q1uBr/sFiY4Bqw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-host-plugin-inventory@0.1.0-rc.6':
resolution: {integrity: sha512-FObaWsBb1Wlyg5/UH7nSNRUCjslZmUEOO90E2g01asefzXICmvY9rDsaAHzOvuAljX9+IDWn678kDJBK+3OFkA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/cordis-plugin-loader': ^1.0.2
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-host-webserver@0.1.0-rc.6':
resolution: {integrity: sha512-Zod2L+JPss8uGuVMc+5VMQYidCyOZWV8H7LsvyzVR73dhB9zIIm4smuRwuHrk6ss+F/QWmHWV+/yUgqbBJTLjA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants@0.1.0-rc.8':
resolution: {integrity: sha512-u0lYqyxOYwfsVnbsfGXZos5vFvA4cqFnBEW3/ezgljNwkYwzeUP/Y5wjPnQjP+ZzBn3CnVeIF6s2N2Vk3iA5mQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-jobs@0.1.0-rc.6':
resolution: {integrity: sha512-fmyvSOVsNObmRnciuH57ZntuCSb0gflRleCeQx1ToGHRoGrR4Ndnstx33SuIXUQt6OSUhD2w2WKQTReXogpnSQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm-retry@0.1.0-rc.6':
resolution: {integrity: sha512-HdjBWcQ6spwA8B5dScRhndLQNiKoQTkq36O+kmJ80B9V4z08K5XrJwAInH9cCxJ91CqNzx/sxCdDds0oZDH1Pw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-timeout': ^0.1.0-rc.6
'@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.6':
resolution: {integrity: sha512-yqI49BjgVODSPQex7KdRhc4fUquvhifRYe73QP3w6snXYB6058tH8WQk2Yx+m1APi60dLEAZ1AJibRA4oCo6WQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-protocol': ^0.1.0-rc.6
'@deepseek-ai/dsh-native-command@0.1.0-rc.6':
resolution: {integrity: sha512-b2AwcAlNmTDPho/dMQ5wOicEwkDG1FSNSCUvluFp9JBbM8AqUMI3rVuOGFPIT0BEOi+ehpW/if0BZ2S35FSEwA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-permission-presets@0.1.0-rc.8':
resolution: {integrity: sha512-EeTn8Av5kmb1Qj53D7myRnKcNQrrupGrM2m9LVUO8ieWvlIaYX7n2g0y8kg14SUpcD2YzaT40oGJ6VeDuhTZAA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-commands': ^0.1.0-rc.8
'@deepseek-ai/dsh-invariants': ^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-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-shell': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-approval': ^0.1.0-rc.8
'@deepseek-ai/dsh-plan-mode@0.1.0-rc.8':
resolution: {integrity: sha512-/SY/iil7KLDvveqKRUZxO4HiADwDlOX9u3xyG/93h785mWSfRXooiv4Zp2tiBjU+pJB0tJXMsQNAXDdg7DWtwA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^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-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@deepseek-ai/dsh-user-questions': ^0.1.0-rc.8
peerDependenciesMeta:
'@deepseek-ai/dsh-commands':
optional: true
'@deepseek-ai/dsh-sandbox-policy@0.1.0-rc.8':
resolution: {integrity: sha512-xQOlYWbUr1Oj6cnRd5aHZIz52EOEAdSO1HJIfeDkQrVaOgohFsiiCIp6PNFumuGNWdCEnf4Q18ebafLNtazYlA==}
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-sandbox': ^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-sandbox@0.1.0-rc.8':
resolution: {integrity: sha512-dJpy5p/KjKkHG9AnMKU4+/ilj/4DCglsq3kof/jhIwtsZJCix07TEXP9vV8LCv4fU8af7cK3antXw4eVMqkwuQ==}
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-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-scope@0.1.0-rc.6':
resolution: {integrity: sha512-UlDLV4syLoJinNg9imhXrSAHrdaTa5Ff8gg46rzjFJGPUOhAk3DZff0hryT5OhrBi0A5Tj92qVpg2pRVvxnUzQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence@0.1.0-rc.6':
resolution: {integrity: sha512-AbNBe+IYCbZqSHqOACVdj8QTynm2HZ0cThrEuI6nGMtlWLYLx6lzZ1rgO/56Av9mIScjyTBGJAIKhEYaMTBG9g==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-timeout': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection-cache@0.1.0-rc.6':
resolution: {integrity: sha512-Fqyd5aN7MvIiRMWxs0Q4dWmSMKLqdWNk5U97EFdeWY3Ol5bk8SSFfFrij4941B5y4K2f7C0mE9nLSQ3mfL2KHg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection@0.1.0-rc.6':
resolution: {integrity: sha512-DYLALBPdEI1LZjJ4B6rdGdGY4gy+iR2+5Xh2xJoAGa/pTyN5Z55TNfvuMJrmeRBjAuDXNUQpmURbvos5rJ4veg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-query@0.1.0-rc.6':
resolution: {integrity: sha512-bGzRrZnWuXDUtAmwkRxT74Nuc4PLQJmJ4IeGgSSTIGJ9JQCNbvVjr4ZWDWg+D/PvbZwh9mpYJspDZdUP42eWAA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-title': ^0.1.0-rc.6
peerDependenciesMeta:
'@deepseek-ai/dsh-session-persistence':
optional: true
'@deepseek-ai/dsh-session-stats@0.1.0-rc.6':
resolution: {integrity: sha512-B2Rwp1klSl7DmRpViPnuIlmlPgsARdxqRpsz7MwoXTC1oKYipWgoCw8JFOsDxVj8Rno1o1kWVjVAM10I/FC1aw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-title@0.1.0-rc.6':
resolution: {integrity: sha512-RHV1ujuomvQB63HPI/n25c2/2It5XQ7zNQKozSqYOPQw7AIr16PT9iFqC7sCQ4l2gAY5GI3FbI1cQgHzjHNOag==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@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.6':
resolution: {integrity: sha512-5ZlH2FNRU0kkdcCoEJohvdb2fiNnxM+iZqN3icbR3WQbMm8RPRrXlZlps5YUaQKPRbNRHA2LkOXW998QRlhHcA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/schemastery': ^3.18.1
'@deepseek-ai/dsh-shell@0.1.0-rc.8':
resolution: {integrity: sha512-RNhp7Y25DXUH7o36X4GcN0lnOLg6NXTlWZpYNURT7aDj3UHcLLajRsyddiAh1EbwQnl0GRKRZhLaZHrrG6gMIw==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-sandbox': ^0.1.0-rc.8
'@deepseek-ai/dsh-settings': ^0.1.0-rc.8
'@deepseek-ai/dsh-subprocess': ^0.1.0-rc.8
'@deepseek-ai/dsh-skill@0.1.0-rc.6':
resolution: {integrity: sha512-VyRlCOASIRuTflKwn4NvbdAXxSPnnLJ+RAQUI4GK5pOtPwI2DhJrbovqpyp5kNAkZMsqvIeHWu5PcCEJ+FpQ2w==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@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.0-rc.6':
resolution: {integrity: sha512-/5qDCIIf9JNpoRG5VrY/CXFIuch1tDE0H5XREHsKd6LE26TOHcTAUH6gyersFG4e3TPoOLJYDp1+SapFLd7+kQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage@0.1.0-rc.6':
resolution: {integrity: sha512-zq15tNz5ywWuM15eqWADn7SKAPKyDYBto1WxZDIVJxHwQTBqu8gVaCdZo5IonH827qnabyiuJedgh9SkbSrTjg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-subagent@0.1.0-rc.6':
resolution: {integrity: sha512-vROmBDAlaFAzzSlTBOlvg/7fO55zxhUztnLtB3lKmN5RevrNQBjTsbeIMDQ8ow5ZplxEOnLU+sikFoA5JaoH8A==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-agent-presets': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-jobs': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-sandbox': ^0.1.0-rc.6
'@deepseek-ai/dsh-sandbox-policy': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection-cache': ^0.1.0-rc.6
'@deepseek-ai/dsh-tools': ^0.1.0-rc.6
'@deepseek-ai/dsh-user-approval': ^0.1.0-rc.6
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.0-rc.8':
resolution: {integrity: sha512-rTWwWCq/WrBTjaXhApu7gaho6UHwMZq0+l7nZ06YMUreNZoCHfg67pAXopMqTgr/iotphmXQdChrLgBabzL1gA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.8
'@deepseek-ai/dsh-system-prompt@0.1.0-rc.8':
resolution: {integrity: sha512-yk8Z85rzX2EwpKNWA5i+K3I3mqsIIUc9niwbDpXO8vlHvpC2qR3RNHjJIJN2EZYDqfSzTVtkbxHFsuMzDXIbew==}
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-timeout@0.1.0-rc.6':
resolution: {integrity: sha512-CUean0fAnfsJVszFEip7PsU/S26W+JfDFfsza2dCtlw8n6xlkbHA9Gjxdk2aTwqDGCgXEPkRW7mYkdJ0n6FR7w==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-token-meter@0.1.0-rc.6':
resolution: {integrity: sha512-qU5FT4n1RJXP3Ss8NJ5TTvPo8rZ6cxcrCedp1t0sTAj93SGssAanq47voSmznPP52nwz/SLeunznAIT0jhbsZQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-compaction': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.6
'@deepseek-ai/dsh-tool-todo@0.1.0-rc.8':
resolution: {integrity: sha512-eWxwTeX5WsQPSsz1qyJq+UMiASYB5UHLdObVd4vFLYKbFOoglUK0X+Ie5OjlAkFTP+OzCQMAzUl2gJMwJPWKig==}
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-session': ^0.1.0-rc.8
'@deepseek-ai/dsh-session-projection': ^0.1.0-rc.8
'@deepseek-ai/dsh-tools': ^0.1.0-rc.8
'@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.6':
resolution: {integrity: sha512-weWzN8r01YCkoDCAM7BsKw2YhRrD4zL8N2SAZu9hovYtXSq8xHXsP4Zh8RLYIlYcuotjyff/6hic+0TJPd14YA==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-typert-registry@0.1.0-rc.6':
resolution: {integrity: sha512-ry2AApGn0vEEIRWDC7TlLiLj5K8+2OblxXlGHs1u9APVxhPjZLok6Kfo57yfeJyW+EONGXv1DQcU05U+aYE7Tg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-user-approval@0.1.0-rc.6':
resolution: {integrity: sha512-9rnkSDGOpu2XUeGwbPeTzVUTFWTND1PMPM5L/ZQPptV5yyZlQiNxM2rCC6OdL+ZVerwxEqrRhZIQn/KVtQfKag==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-scope': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-system-prompt': ^0.1.0-rc.6
'@deepseek-ai/dsh-user-questions@0.1.0-rc.6':
resolution: {integrity: sha512-5vG4Ug+hVQuwU4KN7CFpF9qObBEYY/mPe1FHhToYO8Y2ICdHt3eX0Or9oEJFW68bZAMfuiAshZL8oUubr7obRg==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-agent': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-llm': ^0.1.0-rc.6
'@deepseek-ai/dsh-workspace@0.1.0-rc.6':
resolution: {integrity: sha512-3R5mX5JTBD9jDpUdauqaswDlxxJzlrRtJ7aH4Ok5jPdlxw0LhC5aIsS5S5RCtFLI1xDzonnInEczjmqmdGQcDQ==}
peerDependencies:
'@deepseek-ai/cordis': ^4.0.1
'@deepseek-ai/dsh-brand': ^0.1.0-rc.6
'@deepseek-ai/dsh-invariants': ^0.1.0-rc.6
'@deepseek-ai/dsh-session': ^0.1.0-rc.6
'@deepseek-ai/dsh-session-persistence': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage': ^0.1.0-rc.6
'@deepseek-ai/dsh-storage-domain': ^0.1.0-rc.6
'@deepseek-ai/schemastery@3.18.1':
resolution: {integrity: sha512-Qn0FCSwCQnpnj6SB31I6i2sIKgKWnkbJM8O0EU91Gv2UsYVvtZTl6IA0sCwk2e2MZf5S8w5hpq9QkeVvK9qwxg==}
'@dimforge/rapier3d-compat@0.12.0':
resolution: {integrity: sha512-uekIGetywIgopfD97oDL5PfeezkFpNhwlzlaEYNOA0N6ghdsOvh/HYjSMek5Q2O1PYvRSDFcqFVJl4r4ZBwOow==}
'@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'}