-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
8910 lines (8910 loc) · 316 KB
/
Copy pathpackage-lock.json
File metadata and controls
8910 lines (8910 loc) · 316 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
{
"name": "@fairmint/canton-dev-tools",
"version": "0.1.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@fairmint/canton-dev-tools",
"version": "0.1.5",
"license": "MIT",
"dependencies": {
"yaml": "2.9.0"
},
"bin": {
"canton-dev-tools": "bin/canton-dev-tools"
},
"devDependencies": {
"@fairmint/canton-node-sdk": "0.0.259",
"@types/jest": "30.0.0",
"@types/node": "22.15.29",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"eslint": "9.39.2",
"eslint-plugin-unused-imports": "4.4.1",
"jest": "30.4.2",
"prettier": "3.8.4",
"ts-jest": "29.4.11",
"tsx": "4.23.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22"
},
"peerDependencies": {
"@fairmint/canton-node-sdk": ">=0.0.232 <0.1.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.29.7",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
"integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
"integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.29.7",
"@babel/generator": "^7.29.7",
"@babel/helper-compilation-targets": "^7.29.7",
"@babel/helper-module-transforms": "^7.29.7",
"@babel/helpers": "^7.29.7",
"@babel/parser": "^7.29.7",
"@babel/template": "^7.29.7",
"@babel/traverse": "^7.29.7",
"@babel/types": "^7.29.7",
"@jridgewell/remapping": "^2.3.5",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.29.8",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.8.tgz",
"integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.29.8",
"@babel/types": "^7.29.8",
"@jridgewell/gen-mapping": "^0.3.12",
"@jridgewell/trace-mapping": "^0.3.28",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
"integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.29.7",
"@babel/helper-validator-option": "^7.29.7",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-globals": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
"integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.29.7",
"@babel/types": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
"integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.29.7",
"@babel/helper-validator-identifier": "^7.29.7",
"@babel/traverse": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
"integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
"integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
"integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/template": "^7.29.7",
"@babel/types": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.29.8",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.8.tgz",
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.29.8"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-bigint": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-static-block": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-attributes": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz",
"integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-json-strings": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.29.7.tgz",
"integrity": "sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-logical-assignment-operators": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-numeric-separator": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-private-property-in-object": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-typescript": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.29.7.tgz",
"integrity": "sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/template": {
"version": "7.29.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.29.7",
"@babel/parser": "^7.29.7",
"@babel/types": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.29.8",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.8.tgz",
"integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.29.7",
"@babel/generator": "^7.29.8",
"@babel/helper-globals": "^7.29.7",
"@babel/parser": "^7.29.8",
"@babel/template": "^7.29.7",
"@babel/types": "^7.29.8",
"debug": "^4.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.29.8",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.8.tgz",
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.29.7",
"@babel/helper-validator-identifier": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-acs-reader": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-acs-reader/-/core-acs-reader-1.18.1.tgz",
"integrity": "sha512-1sxa2wbg49lp78+pgJSp3I4nvhDFij2jLsPb+z0ElLdaugdqd4xulIPpHyYGCBtt2Vb5Y45rR2wmxBreY2HQsA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-provider-ledger": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"bignumber.js": "^9.3.1",
"dayjs": "^1.11.21",
"openapi-fetch": "^0.15.2",
"pino": "^10.3.1",
"typescript-lru-cache": "^2.0.0"
}
},
"node_modules/@canton-network/core-acs-reader/node_modules/openapi-fetch": {
"version": "0.15.2",
"resolved": "https://registry.npmjs.org/openapi-fetch/-/openapi-fetch-0.15.2.tgz",
"integrity": "sha512-rdYTzUmSsJevmNqg7fwUVGuKc2Gfb9h6ph74EVPkPfIGJaZTfqdIbJahtbJ3qg1LKinln30hqZniLnKpH0RJBg==",
"dev": true,
"license": "MIT",
"dependencies": {
"openapi-typescript-helpers": "^0.0.15"
}
},
"node_modules/@canton-network/core-acs-reader/node_modules/openapi-typescript-helpers": {
"version": "0.0.15",
"resolved": "https://registry.npmjs.org/openapi-typescript-helpers/-/openapi-typescript-helpers-0.0.15.tgz",
"integrity": "sha512-opyTPaunsklCBpTK8JGef6mfPhLSnyy5a0IN9vKtx3+4aExf+KxEqYwIy3hqkedXIB97u357uLMJsOnm3GVjsw==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-amulet-service": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-amulet-service/-/core-amulet-service-1.10.1.tgz",
"integrity": "sha512-p+Hhtp9MfsG1LjEPJdnAUFd44f7qvigLdA5FyeCvAO3A2Al2HoBDXAeJi0scyoE9fMDdcDYTg+i6MDfB74Bmrg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client": "^1.10.1",
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-splice-client": "^1.10.1",
"@canton-network/core-token-standard-service": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"bignumber.js": "^10.0.2",
"dayjs": "^1.11.21",
"decimal.js": "^10.6.0",
"openapi-fetch": "^0.17.0",
"pino": "^10.3.1"
}
},
"node_modules/@canton-network/core-amulet-service/node_modules/bignumber.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-10.0.2.tgz",
"integrity": "sha512-E8Wp9O06QA6lneJ4aRUXKYf/1GIomqUEmUMwtIOMtDxf1U52ffJY+y7JBk/8wRafA8qOIqLnXQGqonYXZdBnFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-asyncapi-client": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-asyncapi-client/-/core-asyncapi-client-1.10.1.tgz",
"integrity": "sha512-KfKuXg2t+pAR9q5/va3fzU9bBQ4xVcdwKFYmMxFFi/lzd9xYc72Smssm6IrjaxYTqdUiYnUvEbsRbGD7x7T/bg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"bignumber.js": "^10.0.2",
"pino": "^10.3.1"
}
},
"node_modules/@canton-network/core-asyncapi-client/node_modules/bignumber.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-10.0.2.tgz",
"integrity": "sha512-E8Wp9O06QA6lneJ4aRUXKYf/1GIomqUEmUMwtIOMtDxf1U52ffJY+y7JBk/8wRafA8qOIqLnXQGqonYXZdBnFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-ledger-client": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-ledger-client/-/core-ledger-client-1.10.1.tgz",
"integrity": "sha512-ZZcQ40VHz5dhJdDGPe3EqpRuhw8Q1tmUHMvF0E+G7wQTR7FbgugUqJCFzotfDDV4dt6hzwmHafJ5nd+GNwfBtA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-ledger-proto": "^1.9.1",
"@canton-network/core-splice-client": "^1.10.1",
"@canton-network/core-token-standard": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"bignumber.js": "^10.0.2",
"dayjs": "^1.11.21",
"openapi-fetch": "^0.17.0",
"pino": "^10.3.1",
"typescript-lru-cache": "^2.0.0"
}
},
"node_modules/@canton-network/core-ledger-client-types": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-ledger-client-types/-/core-ledger-client-types-1.10.1.tgz",
"integrity": "sha512-SxiXlmNbF6Js4H/WJPF0WAr03cgNWLhXGPo39PMZ4EAD6CfFi15VgR8szzTDjtEvDO/AyZtYe6u8Pe1e7F+yXQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-types": "^1.10.1",
"bignumber.js": "^10.0.2",
"dayjs": "^1.11.21",
"openapi-fetch": "^0.17.0",
"pino": "^10.3.1"
}
},
"node_modules/@canton-network/core-ledger-client-types/node_modules/bignumber.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-10.0.2.tgz",
"integrity": "sha512-E8Wp9O06QA6lneJ4aRUXKYf/1GIomqUEmUMwtIOMtDxf1U52ffJY+y7JBk/8wRafA8qOIqLnXQGqonYXZdBnFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-ledger-client/node_modules/bignumber.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-10.0.2.tgz",
"integrity": "sha512-E8Wp9O06QA6lneJ4aRUXKYf/1GIomqUEmUMwtIOMtDxf1U52ffJY+y7JBk/8wRafA8qOIqLnXQGqonYXZdBnFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-ledger-proto": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-ledger-proto/-/core-ledger-proto-1.9.1.tgz",
"integrity": "sha512-ol3eYkoMxUbXhPmNmI3Fqcrublo7nzJhu7uWHkNGhIG1FPgZqeEA8JXKyNB1btzcQ0QaJgzkhoNOkPurZv3njg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@protobuf-ts/runtime": "^2.11.1",
"@protobuf-ts/runtime-rpc": "^2.11.1"
}
},
"node_modules/@canton-network/core-provider-dapp": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-provider-dapp/-/core-provider-dapp-1.10.1.tgz",
"integrity": "sha512-K2hwUu9/EoJ6ClaTWYfVNbhgh2s1pZZxeVXJKie/diue3uBBT0ZezjdclEZM/EgaOr/xhh693DWv5OrebY4SJw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-rpc-transport": "^1.10.1",
"@canton-network/core-splice-provider": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-dapp-remote-rpc-client": "^1.10.1",
"@canton-network/core-wallet-dapp-rpc-client": "^1.10.1"
}
},
"node_modules/@canton-network/core-provider-ledger": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-provider-ledger/-/core-provider-ledger-1.10.1.tgz",
"integrity": "sha512-5XfRgsORJvd+FOGWv9qs8NrCV6yZsVqEEPmkYJZM9LuS3bGKUhtJdwVdjZ9pEHnhXR0nzli0UD15k463RjsSUA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client": "^1.10.1",
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-splice-provider": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"pino": "^10.3.1"
}
},
"node_modules/@canton-network/core-rpc-errors": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-rpc-errors/-/core-rpc-errors-1.9.1.tgz",
"integrity": "sha512-BZwmE1gVDnPuBLkFuJ301W5bH6ZJNoVXKsCHtZh4L4pMPV91dPJJ/MiuPflFTVzHKfmjPL5xhCrQsW22WR1SUA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@metamask/rpc-errors": "^7.0.3"
}
},
"node_modules/@canton-network/core-rpc-transport": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-rpc-transport/-/core-rpc-transport-1.10.1.tgz",
"integrity": "sha512-fkrV1JXnc3NUri2/y4WYV5k6R5CVgjinRoUoyP7VUNt+meSkXO8cZ/occ2lPi9cCyYDF/IikDQ/5DSKpoZzFlg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-types": "^1.10.1",
"uuid": "^14.0.1"
}
},
"node_modules/@canton-network/core-signing-lib": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-signing-lib/-/core-signing-lib-1.10.1.tgz",
"integrity": "sha512-7QUW0lILOnul/iDmSvs82b014Q1SWFaP0nDVGe1h7HlWbT7vx5GASSJV8GZQs3rS11kfndKPc/aBTJKwkLiFvg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-wallet-auth": "^1.10.1",
"fs-extra": "^11.3.6",
"lodash": "^4.18.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"zod": "^4.4.3"
}
},
"node_modules/@canton-network/core-splice-client": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-splice-client/-/core-splice-client-1.10.1.tgz",
"integrity": "sha512-e8RTHpjaW4KbA7F47RmcYLW2xX8hj8nrG4/0bzqhT9sreoRAQrGXFHhpMpwytGF/UhWZwpMbJXfbImtKBWMxDg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"openapi-fetch": "^0.17.0",
"uuid": "^14.0.1",
"zod": "^4.4.3"
}
},
"node_modules/@canton-network/core-splice-provider": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-splice-provider/-/core-splice-provider-1.10.1.tgz",
"integrity": "sha512-xOfD/2r6rsDwxPRY2W2oB89GHImxPqEf25o8NsAx6eHVIy8UwkDUPRZ07CZpgtP/BPVZmQRHAMkpaA10YS+4sw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-rpc-transport": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-dapp-remote-rpc-client": "^1.10.1",
"@canton-network/core-wallet-dapp-rpc-client": "^1.10.1"
}
},
"node_modules/@canton-network/core-token-standard": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-token-standard/-/core-token-standard-1.10.1.tgz",
"integrity": "sha512-i2tJpJmKtBRMJ+OJfxPuBK5+hHLeqr1LL5AMcydnVlf3iLbiLUobuUOYJtX5zUh+GHOxqJ8cXypvo2nFKEFuUQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"@daml/types": "^3.5.2",
"@mojotech/json-type-validation": "^3.1.0",
"lodash": "^4.18.1",
"openapi-fetch": "^0.17.0",
"uuid": "^14.0.1",
"zod": "^4.4.3"
}
},
"node_modules/@canton-network/core-token-standard-service": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-token-standard-service/-/core-token-standard-service-1.10.1.tgz",
"integrity": "sha512-FMiqwmz+DiC53cGw8MRjOB4/Xw7KEgeJGsBaKuLufmoqa+SFr5CciKxNIiB7IVYibRz2RDCBeJqcM38H0Mycqg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-acs-reader": "^1.18.1",
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-provider-ledger": "^1.10.1",
"@canton-network/core-splice-client": "^1.10.1",
"@canton-network/core-token-standard": "^1.10.1",
"@canton-network/core-tx-parser": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"dayjs": "^1.11.21",
"decimal.js": "^10.6.0",
"openapi-fetch": "^0.17.0",
"pino": "^10.3.1",
"typescript-lru-cache": "^2.0.0"
}
},
"node_modules/@canton-network/core-tx-parser": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-tx-parser/-/core-tx-parser-1.10.1.tgz",
"integrity": "sha512-0n0+6vusD8xX4uMPSqjmRBoknbR8G87l/G8RgoaEBGwhy+pJF+Bp+9yCabc6C5yCpxWQZ6f5RbchthYG6otHZQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-client-types": "^1.10.1",
"@canton-network/core-ledger-proto": "^1.9.1",
"@canton-network/core-provider-ledger": "^1.10.1",
"@canton-network/core-splice-client": "^1.10.1",
"@canton-network/core-token-standard": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"@canton-network/core-wallet-auth": "^1.10.1",
"bignumber.js": "^10.0.2",
"dayjs": "^1.11.21",
"openapi-fetch": "^0.17.0",
"pino": "^10.3.1"
}
},
"node_modules/@canton-network/core-tx-parser/node_modules/bignumber.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-10.0.2.tgz",
"integrity": "sha512-E8Wp9O06QA6lneJ4aRUXKYf/1GIomqUEmUMwtIOMtDxf1U52ffJY+y7JBk/8wRafA8qOIqLnXQGqonYXZdBnFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-tx-visualizer": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-tx-visualizer/-/core-tx-visualizer-1.9.1.tgz",
"integrity": "sha512-yRjM+Q1GxzemExxHQM9B0KHgwS0OZ2lpKYECB/oY94Gs0fN1l34EXJ0NFGhnei20IKX2UuPDvS49HG0mGyp/Cg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-ledger-proto": "^1.9.1",
"@types/node": "^25.9.4",
"camelcase-keys": "^10.0.2"
}
},
"node_modules/@canton-network/core-tx-visualizer/node_modules/@types/node": {
"version": "25.9.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.5.tgz",
"integrity": "sha512-OScDchr2fwuUmWdf4kZ9h7PcJiYDVInhJizG/biAq3cAvqwYktuy/TYGGdZNMtNTFUP7rnb0NU4TUdm82kt4Rg==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": ">=7.24.0 <7.24.7"
}
},
"node_modules/@canton-network/core-tx-visualizer/node_modules/undici-types": {
"version": "7.24.6",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
"dev": true,
"license": "MIT"
},
"node_modules/@canton-network/core-types": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-types/-/core-types-1.10.1.tgz",
"integrity": "sha512-sX5bPnyn3xFPC2RhUPuSWNL7IknuwhF49iLLQpTWwKqCddLjfY6R2eFmi5qEvv/ahWotMEiGjg2ohYMbIf+6+A==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@daml/types": "^3.5.2",
"uuid": "^14.0.1",
"zod": "^4.4.3"
}
},
"node_modules/@canton-network/core-wallet-auth": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-wallet-auth/-/core-wallet-auth-1.10.1.tgz",
"integrity": "sha512-iebwO5P+L1O8J3qU7Kzti5wrq4EZ/c8/d81Rgvb6XT6xadP55y0LFocGurIPp4fgFOr6j3gNl7XvJsLZKUVzUg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-rpc-errors": "^1.9.1",
"@canton-network/core-types": "^1.10.1",
"jose": "^6.2.3",
"zod": "^4.4.3"
}
},
"node_modules/@canton-network/core-wallet-dapp-remote-rpc-client": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-wallet-dapp-remote-rpc-client/-/core-wallet-dapp-remote-rpc-client-1.10.1.tgz",
"integrity": "sha512-4m9oFUnErk4D4kFV/E6rv1dfGfTlBnMuZeDDacYvgZ0d1sgzr8OLAybLsq+u8nEV2ZrdhrONqcLsQcVqRTc0HQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-rpc-transport": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"lodash": "^4.18.1"
}
},
"node_modules/@canton-network/core-wallet-dapp-rpc-client": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@canton-network/core-wallet-dapp-rpc-client/-/core-wallet-dapp-rpc-client-1.10.1.tgz",
"integrity": "sha512-84T1JW3NgneyOOK8Y59zl39+hqFGKrnOAftxhepnzodMGWMjDYnG1A292PjmxWqTB5Nl/wImggcgJffqNENO0w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-rpc-transport": "^1.10.1",
"@canton-network/core-types": "^1.10.1",
"lodash": "^4.18.1"
}
},
"node_modules/@canton-network/wallet-sdk": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@canton-network/wallet-sdk/-/wallet-sdk-1.4.0.tgz",
"integrity": "sha512-uskdurYd9HgNSXisFUHFkpEFnZTusd0XJ4oBIDnyI2DrM+9TfJk1Z/s2qF1+J2f6B6OswE3oHwyjY39tyXLURg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@canton-network/core-acs-reader": "^1.16.0",
"@canton-network/core-amulet-service": "^1.8.0",
"@canton-network/core-asyncapi-client": "^1.8.0",
"@canton-network/core-ledger-client-types": "^1.8.0",
"@canton-network/core-ledger-proto": "^1.7.0",
"@canton-network/core-provider-dapp": "^1.8.0",
"@canton-network/core-provider-ledger": "^1.8.0",
"@canton-network/core-signing-lib": "^1.8.0",
"@canton-network/core-splice-client": "^1.8.0",
"@canton-network/core-splice-provider": "^1.8.0",
"@canton-network/core-token-standard": "^1.8.0",
"@canton-network/core-token-standard-service": "^1.8.0",
"@canton-network/core-tx-parser": "^1.8.0",
"@canton-network/core-tx-visualizer": "^1.7.0",
"@canton-network/core-types": "^1.8.0",
"@canton-network/core-wallet-auth": "^1.8.0",
"decimal.js": "^10.6.0",
"jose": "^6.2.3",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"typescript-lru-cache": "^2.0.0",
"uuid": "^14.0.0"
}
},
"node_modules/@daml/types": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@daml/types/-/types-3.5.2.tgz",
"integrity": "sha512-lWAXNOl1tdzodvDDw7XTv6dUZA0MeAQZtTklh+5kegNt1asKAhreppYkD+bogYU1DnMXUTeMgGmmMBZt1gZpJg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@mojotech/json-type-validation": "^3.1.0",
"@types/lodash": "^4.5",
"lodash": "^4.5"
}
},
"node_modules/@emnapi/core": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"@emnapi/wasi-threads": "1.2.1",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/wasi-threads": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",