-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage-lock.kdl
4330 lines (4330 loc) · 181 KB
/
package-lock.kdl
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
// This file is automatically generated and not intended for manual editing.
lockfile-version 1
root {
dependencies {
browserslist "4.24.4"
cssnano "7.0.6"
google-protobuf "3.21.4"
jszip "3.10.1"
postcss "8.5.1"
preact "10.25.4"
react "19.0.0"
react-dom "19.0.0"
typescript "5.7.3"
web-streams-polyfill "3.3.3"
}
dev-dependencies {
"@biomejs/biome" "1.9.4"
"@commitlint/cli" "19.6.1"
"@commitlint/config-conventional" "19.6.0"
"@mdx-js/esbuild" "3.1.0"
"@mitata/counters" "0.0.8"
"@prettier/plugin-xml" "3.4.1"
"@types/google-protobuf" "3.15.12"
"@types/node" "22.10.10"
"@typescript-eslint/eslint-plugin" "8.21.0"
"@typescript-eslint/parser" "8.21.0"
commitlint "19.6.1"
esbuild "0.24.2"
eslint "9.19.0"
husky "9.1.7"
lint-staged "15.4.3"
mitata "1.0.32"
postcss-cli "11.0.0"
prettier "3.4.2"
prettier-plugin-java "2.6.7"
prettier-plugin-properties "0.3.0"
prettier-plugin-sh "0.14.0"
prettier-plugin-toml "2.0.1"
readable-stream "4.5.2"
}
}
pkg "@babel/code-frame" {
version "7.24.7"
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz"
integrity "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA=="
dependencies {
"@babel/highlight" ">=7.24.7 <8.0.0-0"
picocolors ">=1.0.0 <2.0.0-0"
}
}
pkg "@babel/helper-validator-identifier" {
version "7.24.7"
resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
integrity "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w=="
}
pkg "@babel/highlight" {
version "7.24.7"
resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz"
integrity "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw=="
dependencies {
"@babel/helper-validator-identifier" ">=7.24.7 <8.0.0-0"
chalk ">=2.4.2 <3.0.0-0"
js-tokens ">=4.0.0 <5.0.0-0"
picocolors ">=1.0.0 <2.0.0-0"
}
}
pkg "@babel/highlight" "ansi-styles" {
version "3.2.1"
resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
integrity "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
dependencies {
color-convert ">=1.9.0 <2.0.0-0"
}
}
pkg "@babel/highlight" "chalk" {
version "2.4.2"
resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
integrity "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
dependencies {
ansi-styles ">=3.2.1 <4.0.0-0"
escape-string-regexp ">=1.0.5 <2.0.0-0"
supports-color ">=5.3.0 <6.0.0-0"
}
}
pkg "@babel/highlight" "color-convert" {
version "1.9.3"
resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
integrity "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
dependencies {
color-name "1.1.3"
}
}
pkg "@babel/highlight" "color-name" {
version "1.1.3"
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
integrity "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
}
pkg "@babel/highlight" "escape-string-regexp" {
version "1.0.5"
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
integrity "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
}
pkg "@babel/highlight" "has-flag" {
version "3.0.0"
resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
integrity "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
}
pkg "@babel/highlight" "supports-color" {
version "5.5.0"
resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
integrity "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="
dependencies {
has-flag ">=3.0.0 <4.0.0-0"
}
}
pkg "@biomejs/biome" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/biome/-/biome-1.9.4.tgz"
integrity "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog=="
optional-dependencies {
"@biomejs/cli-darwin-arm64" "1.9.4"
"@biomejs/cli-darwin-x64" "1.9.4"
"@biomejs/cli-linux-arm64" "1.9.4"
"@biomejs/cli-linux-arm64-musl" "1.9.4"
"@biomejs/cli-linux-x64" "1.9.4"
"@biomejs/cli-linux-x64-musl" "1.9.4"
"@biomejs/cli-win32-arm64" "1.9.4"
"@biomejs/cli-win32-x64" "1.9.4"
}
}
pkg "@biomejs/cli-darwin-arm64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-1.9.4.tgz"
integrity "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw=="
}
pkg "@biomejs/cli-darwin-x64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-1.9.4.tgz"
integrity "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg=="
}
pkg "@biomejs/cli-linux-arm64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-1.9.4.tgz"
integrity "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g=="
}
pkg "@biomejs/cli-linux-arm64-musl" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.9.4.tgz"
integrity "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA=="
}
pkg "@biomejs/cli-linux-x64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-1.9.4.tgz"
integrity "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg=="
}
pkg "@biomejs/cli-linux-x64-musl" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-1.9.4.tgz"
integrity "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg=="
}
pkg "@biomejs/cli-win32-arm64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-1.9.4.tgz"
integrity "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg=="
}
pkg "@biomejs/cli-win32-x64" {
version "1.9.4"
resolved "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-1.9.4.tgz"
integrity "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA=="
}
pkg "@chevrotain/cst-dts-gen" {
version "11.0.3"
resolved "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz"
integrity "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ=="
dependencies {
"@chevrotain/gast" "11.0.3"
"@chevrotain/types" "11.0.3"
lodash-es "4.17.21"
}
}
pkg "@chevrotain/gast" {
version "11.0.3"
resolved "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz"
integrity "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q=="
dependencies {
"@chevrotain/types" "11.0.3"
lodash-es "4.17.21"
}
}
pkg "@chevrotain/regexp-to-ast" {
version "11.0.3"
resolved "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz"
integrity "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA=="
}
pkg "@chevrotain/types" {
version "11.0.3"
resolved "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz"
integrity "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ=="
}
pkg "@chevrotain/utils" {
version "11.0.3"
resolved "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz"
integrity "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ=="
}
pkg "@commitlint/cli" {
version "19.6.1"
resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-19.6.1.tgz"
integrity "sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ=="
dependencies {
"@commitlint/format" ">=19.5.0 <20.0.0-0"
"@commitlint/lint" ">=19.6.0 <20.0.0-0"
"@commitlint/load" ">=19.6.1 <20.0.0-0"
"@commitlint/read" ">=19.5.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
tinyexec ">=0.3.0 <0.4.0-0"
yargs ">=17.0.0 <18.0.0-0"
}
}
pkg "@commitlint/config-conventional" {
version "19.6.0"
resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.6.0.tgz"
integrity "sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
conventional-changelog-conventionalcommits ">=7.0.2 <8.0.0-0"
}
}
pkg "@commitlint/config-validator" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz"
integrity "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
ajv ">=8.11.0 <9.0.0-0"
}
}
pkg "@commitlint/config-validator" "ajv" {
version "8.16.0"
resolved "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz"
integrity "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="
dependencies {
fast-deep-equal ">=3.1.3 <4.0.0-0"
json-schema-traverse ">=1.0.0 <2.0.0-0"
require-from-string ">=2.0.2 <3.0.0-0"
uri-js ">=4.4.1 <5.0.0-0"
}
}
pkg "@commitlint/config-validator" "json-schema-traverse" {
version "1.0.0"
resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
integrity "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
}
pkg "@commitlint/ensure" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz"
integrity "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
lodash.camelcase ">=4.3.0 <5.0.0-0"
lodash.kebabcase ">=4.1.1 <5.0.0-0"
lodash.snakecase ">=4.1.1 <5.0.0-0"
lodash.startcase ">=4.4.0 <5.0.0-0"
lodash.upperfirst ">=4.3.1 <5.0.0-0"
}
}
pkg "@commitlint/execute-rule" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz"
integrity "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg=="
}
pkg "@commitlint/format" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz"
integrity "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
chalk ">=5.3.0 <6.0.0-0"
}
}
pkg "@commitlint/is-ignored" {
version "19.6.0"
resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.6.0.tgz"
integrity "sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
semver ">=7.6.0 <8.0.0-0"
}
}
pkg "@commitlint/lint" {
version "19.6.0"
resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-19.6.0.tgz"
integrity "sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg=="
dependencies {
"@commitlint/is-ignored" ">=19.6.0 <20.0.0-0"
"@commitlint/parse" ">=19.5.0 <20.0.0-0"
"@commitlint/rules" ">=19.6.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
}
}
pkg "@commitlint/load" {
version "19.6.1"
resolved "https://registry.npmjs.org/@commitlint/load/-/load-19.6.1.tgz"
integrity "sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA=="
dependencies {
"@commitlint/config-validator" ">=19.5.0 <20.0.0-0"
"@commitlint/execute-rule" ">=19.5.0 <20.0.0-0"
"@commitlint/resolve-extends" ">=19.5.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
chalk ">=5.3.0 <6.0.0-0"
cosmiconfig ">=9.0.0 <10.0.0-0"
cosmiconfig-typescript-loader ">=6.1.0 <7.0.0-0"
lodash.isplainobject ">=4.0.6 <5.0.0-0"
lodash.merge ">=4.6.2 <5.0.0-0"
lodash.uniq ">=4.5.0 <5.0.0-0"
}
}
pkg "@commitlint/message" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz"
integrity "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ=="
}
pkg "@commitlint/parse" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz"
integrity "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw=="
dependencies {
"@commitlint/types" ">=19.5.0 <20.0.0-0"
conventional-changelog-angular ">=7.0.0 <8.0.0-0"
conventional-commits-parser ">=5.0.0 <6.0.0-0"
}
}
pkg "@commitlint/read" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz"
integrity "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ=="
dependencies {
"@commitlint/top-level" ">=19.5.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
git-raw-commits ">=4.0.0 <5.0.0-0"
minimist ">=1.2.8 <2.0.0-0"
tinyexec ">=0.3.0 <0.4.0-0"
}
}
pkg "@commitlint/resolve-extends" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz"
integrity "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA=="
dependencies {
"@commitlint/config-validator" ">=19.5.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
global-directory ">=4.0.1 <5.0.0-0"
import-meta-resolve ">=4.0.0 <5.0.0-0"
lodash.mergewith ">=4.6.2 <5.0.0-0"
resolve-from ">=5.0.0 <6.0.0-0"
}
}
pkg "@commitlint/resolve-extends" "resolve-from" {
version "5.0.0"
resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
integrity "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
}
pkg "@commitlint/rules" {
version "19.6.0"
resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-19.6.0.tgz"
integrity "sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw=="
dependencies {
"@commitlint/ensure" ">=19.5.0 <20.0.0-0"
"@commitlint/message" ">=19.5.0 <20.0.0-0"
"@commitlint/to-lines" ">=19.5.0 <20.0.0-0"
"@commitlint/types" ">=19.5.0 <20.0.0-0"
}
}
pkg "@commitlint/to-lines" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz"
integrity "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ=="
}
pkg "@commitlint/top-level" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz"
integrity "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng=="
dependencies {
find-up ">=7.0.0 <8.0.0-0"
}
}
pkg "@commitlint/top-level" "find-up" {
version "7.0.0"
resolved "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz"
integrity "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g=="
dependencies {
locate-path ">=7.2.0 <8.0.0-0"
path-exists ">=5.0.0 <6.0.0-0"
unicorn-magic ">=0.1.0 <0.2.0-0"
}
}
pkg "@commitlint/top-level" "locate-path" {
version "7.2.0"
resolved "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz"
integrity "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA=="
dependencies {
p-locate ">=6.0.0 <7.0.0-0"
}
}
pkg "@commitlint/top-level" "p-limit" {
version "4.0.0"
resolved "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz"
integrity "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="
dependencies {
yocto-queue ">=1.0.0 <2.0.0-0"
}
}
pkg "@commitlint/top-level" "p-locate" {
version "6.0.0"
resolved "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz"
integrity "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="
dependencies {
p-limit ">=4.0.0 <5.0.0-0"
}
}
pkg "@commitlint/top-level" "path-exists" {
version "5.0.0"
resolved "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz"
integrity "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="
}
pkg "@commitlint/top-level" "yocto-queue" {
version "1.0.0"
resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz"
integrity "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g=="
}
pkg "@commitlint/types" {
version "19.5.0"
resolved "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz"
integrity "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg=="
dependencies {
"@types/conventional-commits-parser" ">=5.0.0 <6.0.0-0"
chalk ">=5.3.0 <6.0.0-0"
}
}
pkg "@esbuild/aix-ppc64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz"
integrity "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA=="
}
pkg "@esbuild/android-arm" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz"
integrity "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q=="
}
pkg "@esbuild/android-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz"
integrity "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg=="
}
pkg "@esbuild/android-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz"
integrity "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw=="
}
pkg "@esbuild/darwin-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz"
integrity "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA=="
}
pkg "@esbuild/darwin-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz"
integrity "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA=="
}
pkg "@esbuild/freebsd-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz"
integrity "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg=="
}
pkg "@esbuild/freebsd-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz"
integrity "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q=="
}
pkg "@esbuild/linux-arm" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz"
integrity "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA=="
}
pkg "@esbuild/linux-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz"
integrity "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg=="
}
pkg "@esbuild/linux-ia32" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz"
integrity "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw=="
}
pkg "@esbuild/linux-loong64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz"
integrity "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ=="
}
pkg "@esbuild/linux-mips64el" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz"
integrity "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw=="
}
pkg "@esbuild/linux-ppc64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz"
integrity "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw=="
}
pkg "@esbuild/linux-riscv64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz"
integrity "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q=="
}
pkg "@esbuild/linux-s390x" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz"
integrity "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw=="
}
pkg "@esbuild/linux-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz"
integrity "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q=="
}
pkg "@esbuild/netbsd-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz"
integrity "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw=="
}
pkg "@esbuild/netbsd-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz"
integrity "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw=="
}
pkg "@esbuild/openbsd-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz"
integrity "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A=="
}
pkg "@esbuild/openbsd-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz"
integrity "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA=="
}
pkg "@esbuild/sunos-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz"
integrity "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig=="
}
pkg "@esbuild/win32-arm64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz"
integrity "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ=="
}
pkg "@esbuild/win32-ia32" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz"
integrity "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA=="
}
pkg "@esbuild/win32-x64" {
version "0.24.2"
resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz"
integrity "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg=="
}
pkg "@eslint-community/eslint-utils" {
version "4.4.0"
resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
integrity "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
dependencies {
eslint-visitor-keys ">=3.3.0 <4.0.0-0"
}
}
pkg "@eslint-community/regexpp" {
version "4.12.1"
resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz"
integrity "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="
}
pkg "@eslint/config-array" {
version "0.19.1"
resolved "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz"
integrity "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA=="
dependencies {
"@eslint/object-schema" ">=2.1.5 <3.0.0-0"
debug ">=4.3.1 <5.0.0-0"
minimatch ">=3.1.2 <4.0.0-0"
}
}
pkg "@eslint/core" {
version "0.10.0"
resolved "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz"
integrity "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw=="
dependencies {
"@types/json-schema" ">=7.0.15 <8.0.0-0"
}
}
pkg "@eslint/eslintrc" {
version "3.2.0"
resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz"
integrity "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w=="
dependencies {
ajv ">=6.12.4 <7.0.0-0"
debug ">=4.3.2 <5.0.0-0"
espree ">=10.0.1 <11.0.0-0"
globals ">=14.0.0 <15.0.0-0"
ignore ">=5.2.0 <6.0.0-0"
import-fresh ">=3.2.1 <4.0.0-0"
js-yaml ">=4.1.0 <5.0.0-0"
minimatch ">=3.1.2 <4.0.0-0"
strip-json-comments ">=3.1.1 <4.0.0-0"
}
}
pkg "@eslint/js" {
version "9.19.0"
resolved "https://registry.npmjs.org/@eslint/js/-/js-9.19.0.tgz"
integrity "sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ=="
}
pkg "@eslint/object-schema" {
version "2.1.5"
resolved "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz"
integrity "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ=="
}
pkg "@eslint/plugin-kit" {
version "0.2.5"
resolved "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz"
integrity "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A=="
dependencies {
"@eslint/core" ">=0.10.0 <0.11.0-0"
levn ">=0.4.1 <0.5.0-0"
}
}
pkg "@humanfs/core" {
version "0.19.1"
resolved "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz"
integrity "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="
}
pkg "@humanfs/node" {
version "0.16.6"
resolved "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz"
integrity "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="
dependencies {
"@humanfs/core" ">=0.19.1 <0.20.0-0"
"@humanwhocodes/retry" ">=0.3.0 <0.4.0-0"
}
}
pkg "@humanfs/node" "@humanwhocodes/retry" {
version "0.3.1"
resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz"
integrity "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="
}
pkg "@humanwhocodes/module-importer" {
version "1.0.1"
resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
integrity "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
}
pkg "@humanwhocodes/retry" {
version "0.4.1"
resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz"
integrity "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA=="
}
pkg "@mdx-js/esbuild" {
version "3.1.0"
resolved "https://registry.npmjs.org/@mdx-js/esbuild/-/esbuild-3.1.0.tgz"
integrity "sha512-Jk42xUb1SEJxh6n2GBAtJjQISFIZccjz8XVEsHVhrlvZJAJziIxR9KyaFF6nTeTB/jCAFQGDgO7+oMRH/ApRsg=="
dependencies {
"@mdx-js/mdx" ">=3.0.0 <4.0.0-0"
"@types/unist" ">=3.0.0 <4.0.0-0"
source-map ">=0.7.0 <0.8.0-0"
vfile ">=6.0.0 <7.0.0-0"
vfile-message ">=4.0.0 <5.0.0-0"
}
}
pkg "@mdx-js/mdx" {
version "3.0.1"
resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.0.1.tgz"
integrity "sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA=="
dependencies {
"@types/estree" ">=1.0.0 <2.0.0-0"
"@types/estree-jsx" ">=1.0.0 <2.0.0-0"
"@types/hast" ">=3.0.0 <4.0.0-0"
"@types/mdx" ">=2.0.0 <3.0.0-0"
collapse-white-space ">=2.0.0 <3.0.0-0"
devlop ">=1.0.0 <2.0.0-0"
estree-util-build-jsx ">=3.0.0 <4.0.0-0"
estree-util-is-identifier-name ">=3.0.0 <4.0.0-0"
estree-util-to-js ">=2.0.0 <3.0.0-0"
estree-walker ">=3.0.0 <4.0.0-0"
hast-util-to-estree ">=3.0.0 <4.0.0-0"
hast-util-to-jsx-runtime ">=2.0.0 <3.0.0-0"
markdown-extensions ">=2.0.0 <3.0.0-0"
periscopic ">=3.0.0 <4.0.0-0"
remark-mdx ">=3.0.0 <4.0.0-0"
remark-parse ">=11.0.0 <12.0.0-0"
remark-rehype ">=11.0.0 <12.0.0-0"
source-map ">=0.7.0 <0.8.0-0"
unified ">=11.0.0 <12.0.0-0"
unist-util-position-from-estree ">=2.0.0 <3.0.0-0"
unist-util-stringify-position ">=4.0.0 <5.0.0-0"
unist-util-visit ">=5.0.0 <6.0.0-0"
vfile ">=6.0.0 <7.0.0-0"
}
}
pkg "@mitata/counters" {
version "0.0.8"
resolved "https://registry.npmjs.org/@mitata/counters/-/counters-0.0.8.tgz"
integrity "sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA=="
}
pkg "@nodelib/fs.scandir" {
version "2.1.5"
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
integrity "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
dependencies {
"@nodelib/fs.stat" "2.0.5"
run-parallel ">=1.1.9 <2.0.0-0"
}
}
pkg "@nodelib/fs.stat" {
version "2.0.5"
resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
integrity "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
}
pkg "@nodelib/fs.walk" {
version "1.2.8"
resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
integrity "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
dependencies {
"@nodelib/fs.scandir" "2.1.5"
fastq ">=1.6.0 <2.0.0-0"
}
}
pkg "@prettier/plugin-xml" {
version "3.4.1"
resolved "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-3.4.1.tgz"
integrity "sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg=="
dependencies {
"@xml-tools/parser" ">=1.0.11 <2.0.0-0"
}
}
pkg "@sindresorhus/merge-streams" {
version "2.3.0"
resolved "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz"
integrity "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg=="
}
pkg "@taplo/core" {
version "0.1.1"
resolved "https://registry.npmjs.org/@taplo/core/-/core-0.1.1.tgz"
integrity "sha512-BG/zLGf5wiNXGEVPvUAAX/4ilB3PwDUY2o0MV0y47mZbDZ9ad9UK/cIQsILat3bqbPJsALVbU6k3cskNZ3vAQg=="
}
pkg "@taplo/lib" {
version "0.4.0-alpha.2"
resolved "https://registry.npmjs.org/@taplo/lib/-/lib-0.4.0-alpha.2.tgz"
integrity "sha512-DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA=="
dependencies {
"@taplo/core" ">=0.1.0 <0.2.0-0"
}
}
pkg "@trysound/sax" {
version "0.2.0"
resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
integrity "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
}
pkg "@types/acorn" {
version "4.0.6"
resolved "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz"
integrity "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ=="
dependencies {
"@types/estree" ">=0.0.0"
}
}
pkg "@types/conventional-commits-parser" {
version "5.0.0"
resolved "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz"
integrity "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ=="
dependencies {
"@types/node" ">=0.0.0"
}
}
pkg "@types/conventional-commits-parser" "@types/node" {
version "22.10.7"
resolved "https://registry.npmjs.org/@types/node/-/node-22.10.7.tgz"
integrity "sha512-V09KvXxFiutGp6B7XkpaDXlNadZxrzajcY50EuoLIpQ6WWYCSvf19lVIazzfIzQvhUN2HjX12spLojTnhuKlGg=="
dependencies {
undici-types ">=6.20.0 <6.21.0-0"
}
}
pkg "@types/debug" {
version "4.1.12"
resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz"
integrity "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ=="
dependencies {
"@types/ms" ">=0.0.0"
}
}
pkg "@types/estree" {
version "1.0.6"
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz"
integrity "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
}
pkg "@types/estree-jsx" {
version "1.0.5"
resolved "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz"
integrity "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg=="
dependencies {
"@types/estree" ">=0.0.0"
}
}
pkg "@types/google-protobuf" {
version "3.15.12"
resolved "https://registry.npmjs.org/@types/google-protobuf/-/google-protobuf-3.15.12.tgz"
integrity "sha512-40um9QqwHjRS92qnOaDpL7RmDK15NuZYo9HihiJRbYkMQZlWnuH8AdvbMy8/o6lgLmKbDUKa+OALCltHdbOTpQ=="
}
pkg "@types/hast" {
version "3.0.4"
resolved "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz"
integrity "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ=="
dependencies {
"@types/unist" ">=0.0.0"
}
}
pkg "@types/json-schema" {
version "7.0.15"
resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz"
integrity "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
}
pkg "@types/mdast" {
version "4.0.4"
resolved "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz"
integrity "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA=="
dependencies {
"@types/unist" ">=0.0.0"
}
}
pkg "@types/mdx" {
version "2.0.13"
resolved "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz"
integrity "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw=="
}
pkg "@types/ms" {
version "0.7.34"
resolved "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz"
integrity "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="
}
pkg "@types/node" {
version "22.10.10"
resolved "https://registry.npmjs.org/@types/node/-/node-22.10.10.tgz"
integrity "sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww=="
dependencies {
undici-types ">=6.20.0 <6.21.0-0"
}
}
pkg "@types/unist" {
version "3.0.2"
resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz"
integrity "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ=="
}
pkg "@typescript-eslint/eslint-plugin" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.21.0.tgz"
integrity "sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA=="
dependencies {
"@eslint-community/regexpp" ">=4.10.0 <5.0.0-0"
"@typescript-eslint/scope-manager" "8.21.0"
"@typescript-eslint/type-utils" "8.21.0"
"@typescript-eslint/utils" "8.21.0"
"@typescript-eslint/visitor-keys" "8.21.0"
graphemer ">=1.4.0 <2.0.0-0"
ignore ">=5.3.1 <6.0.0-0"
natural-compare ">=1.4.0 <2.0.0-0"
ts-api-utils ">=2.0.0 <3.0.0-0"
}
}
pkg "@typescript-eslint/parser" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.21.0.tgz"
integrity "sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA=="
dependencies {
"@typescript-eslint/scope-manager" "8.21.0"
"@typescript-eslint/types" "8.21.0"
"@typescript-eslint/typescript-estree" "8.21.0"
"@typescript-eslint/visitor-keys" "8.21.0"
debug ">=4.3.4 <5.0.0-0"
}
}
pkg "@typescript-eslint/scope-manager" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.21.0.tgz"
integrity "sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA=="
dependencies {
"@typescript-eslint/types" "8.21.0"
"@typescript-eslint/visitor-keys" "8.21.0"
}
}
pkg "@typescript-eslint/type-utils" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.21.0.tgz"
integrity "sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ=="
dependencies {
"@typescript-eslint/typescript-estree" "8.21.0"
"@typescript-eslint/utils" "8.21.0"
debug ">=4.3.4 <5.0.0-0"
ts-api-utils ">=2.0.0 <3.0.0-0"
}
}
pkg "@typescript-eslint/types" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.21.0.tgz"
integrity "sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A=="
}
pkg "@typescript-eslint/typescript-estree" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.21.0.tgz"
integrity "sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg=="
dependencies {
"@typescript-eslint/types" "8.21.0"
"@typescript-eslint/visitor-keys" "8.21.0"
debug ">=4.3.4 <5.0.0-0"
fast-glob ">=3.3.2 <4.0.0-0"
is-glob ">=4.0.3 <5.0.0-0"
minimatch ">=9.0.4 <10.0.0-0"
semver ">=7.6.0 <8.0.0-0"
ts-api-utils ">=2.0.0 <3.0.0-0"
}
}
pkg "@typescript-eslint/typescript-estree" "brace-expansion" {
version "2.0.1"
resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
integrity "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
dependencies {
balanced-match ">=1.0.0 <2.0.0-0"
}
}
pkg "@typescript-eslint/typescript-estree" "minimatch" {
version "9.0.5"
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz"
integrity "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="
dependencies {
brace-expansion ">=2.0.1 <3.0.0-0"
}
}
pkg "@typescript-eslint/utils" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.21.0.tgz"
integrity "sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw=="
dependencies {
"@eslint-community/eslint-utils" ">=4.4.0 <5.0.0-0"
"@typescript-eslint/scope-manager" "8.21.0"
"@typescript-eslint/types" "8.21.0"
"@typescript-eslint/typescript-estree" "8.21.0"
}
}
pkg "@typescript-eslint/visitor-keys" {
version "8.21.0"
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.21.0.tgz"
integrity "sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w=="
dependencies {
"@typescript-eslint/types" "8.21.0"
eslint-visitor-keys ">=4.2.0 <5.0.0-0"
}
}
pkg "@typescript-eslint/visitor-keys" "eslint-visitor-keys" {
version "4.2.0"
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz"
integrity "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="
}
pkg "@ungap/structured-clone" {
version "1.2.0"
resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz"
integrity "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="
}
pkg "@xml-tools/parser" {
version "1.0.11"
resolved "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz"
integrity "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA=="
dependencies {
chevrotain "7.1.1"
}
}
pkg "@xml-tools/parser" "chevrotain" {
version "7.1.1"
resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz"
integrity "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw=="
dependencies {
regexp-to-ast "0.5.0"
}
}
pkg "abort-controller" {
version "3.0.0"
resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"
integrity "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
dependencies {
event-target-shim ">=5.0.0 <6.0.0-0"
}
}
pkg "acorn" {
version "8.12.0"
resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz"
integrity "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="
}
pkg "acorn-jsx" {
version "5.3.2"
resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
integrity "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="