-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage-lock.json
More file actions
13656 lines (13656 loc) · 477 KB
/
Copy pathpackage-lock.json
File metadata and controls
13656 lines (13656 loc) · 477 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": "physical-ai-toolchain",
"version": "0.8.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "physical-ai-toolchain",
"version": "0.8.0",
"license": "MIT",
"workspaces": [
"data-management/viewer/frontend"
],
"devDependencies": {
"@taplo/cli": "0.7.0",
"concurrently": "10.0.5",
"cspell": "10.3.1",
"husky": "9.1.7",
"lint-staged": "17.5.1",
"markdown-link-check": "3.15.0",
"markdown-table-formatter": "1.7.0",
"markdownlint-cli2": "0.23.2",
"yaml": "2.9.1"
},
"engines": {
"node": ">=24"
}
},
"data-management/viewer/frontend": {
"name": "robotic-training-data-tool",
"version": "0.1.0",
"dependencies": {
"@azure/msal-browser": "5.21.0",
"@azure/msal-react": "5.7.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@radix-ui/react-avatar": "1.2.6",
"@radix-ui/react-checkbox": "1.3.11",
"@radix-ui/react-context-menu": "2.3.7",
"@radix-ui/react-dialog": "1.1.23",
"@radix-ui/react-label": "2.1.15",
"@radix-ui/react-popover": "1.1.23",
"@radix-ui/react-progress": "1.1.16",
"@radix-ui/react-radio-group": "1.4.7",
"@radix-ui/react-scroll-area": "1.2.18",
"@radix-ui/react-select": "2.3.7",
"@radix-ui/react-separator": "1.1.15",
"@radix-ui/react-slider": "1.4.7",
"@radix-ui/react-slot": "1.3.3",
"@radix-ui/react-tabs": "1.1.21",
"@radix-ui/react-tooltip": "1.2.16",
"@tanstack/react-query": "5.102.8",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"date-fns": "4.4.0",
"idb": "8.0.3",
"lucide-react": "1.46.0",
"react": "19.3.0",
"react-dom": "19.3.0",
"react-image-crop": "11.1.2",
"react-is": "19.3.0",
"react-player": "3.4.0",
"recharts": "3.10.1",
"tailwind-merge": "3.7.0",
"zustand": "5.0.15"
},
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@eslint/js": "9.39.1",
"@playwright/test": "1.61.1",
"@tailwindcss/vite": "4.3.3",
"@tanstack/eslint-plugin-query": "5.102.8",
"@testing-library/dom": "10.4.2",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.3",
"@testing-library/user-event": "14.6.7",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@vitejs/plugin-react": "6.1.1",
"@vitest/coverage-v8": "4.1.11",
"eslint": "9.39.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.7",
"eslint-plugin-simple-import-sort": "14.0.0",
"fake-indexeddb": "6.2.5",
"fast-check": "4.10.0",
"globals": "17.12.0",
"happy-dom": "20.14.5",
"lint-staged": "17.5.1",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"rollup-plugin-visualizer": "7.1.1",
"tailwindcss": "4.3.3",
"typescript": "^7.0.2",
"typescript-eslint": "8.70.0",
"vite": "8.3.0",
"vitest": "4.1.11"
}
},
"data-management/viewer/frontend/node_modules/typescript": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
"integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc"
},
"engines": {
"node": ">=16.20.0"
},
"optionalDependencies": {
"@typescript/typescript-aix-ppc64": "7.0.2",
"@typescript/typescript-darwin-arm64": "7.0.2",
"@typescript/typescript-darwin-x64": "7.0.2",
"@typescript/typescript-freebsd-arm64": "7.0.2",
"@typescript/typescript-freebsd-x64": "7.0.2",
"@typescript/typescript-linux-arm": "7.0.2",
"@typescript/typescript-linux-arm64": "7.0.2",
"@typescript/typescript-linux-loong64": "7.0.2",
"@typescript/typescript-linux-mips64el": "7.0.2",
"@typescript/typescript-linux-ppc64": "7.0.2",
"@typescript/typescript-linux-riscv64": "7.0.2",
"@typescript/typescript-linux-s390x": "7.0.2",
"@typescript/typescript-linux-x64": "7.0.2",
"@typescript/typescript-netbsd-arm64": "7.0.2",
"@typescript/typescript-netbsd-x64": "7.0.2",
"@typescript/typescript-openbsd-arm64": "7.0.2",
"@typescript/typescript-openbsd-x64": "7.0.2",
"@typescript/typescript-sunos-x64": "7.0.2",
"@typescript/typescript-win32-arm64": "7.0.2",
"@typescript/typescript-win32-x64": "7.0.2"
}
},
"node_modules/@adobe/css-tools": {
"version": "4.5.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@adobe/css-tools/-/css-tools-4.5.0.tgz",
"integrity": "sha1-tbcaJaTRavokglkt36YvzMYLx9E=",
"dev": true,
"license": "MIT"
},
"node_modules/@axe-core/playwright": {
"version": "4.13.0",
"resolved": "https://registry.npmjs.org/@axe-core/playwright/-/playwright-4.13.0.tgz",
"integrity": "sha512-6YLx+kxXu5GJceG4ozFg+33a2EMTdjYwWGloJ3sb9Kta5pp+ZNS53uxGVog5JetIY8s++P5UrtX+cri+u0VAVg==",
"dev": true,
"license": "MPL-2.0",
"dependencies": {
"axe-core": "~4.13.0"
},
"peerDependencies": {
"playwright-core": ">= 1.0.0"
}
},
"node_modules/@azure/msal-browser": {
"version": "5.21.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@azure/msal-browser/-/msal-browser-5.21.0.tgz",
"integrity": "sha1-2xXEl12SHz/scS4VnJaWwHUdhTw=",
"license": "MIT",
"dependencies": {
"@azure/msal-common": "16.14.0"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-common": {
"version": "16.14.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@azure/msal-common/-/msal-common-16.14.0.tgz",
"integrity": "sha1-zd2zjYMr4OG+YifqZNTrEZmXInw=",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-react": {
"version": "5.7.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@azure/msal-react/-/msal-react-5.7.0.tgz",
"integrity": "sha1-AvNxvreG4CgkiIS4/+AOOmEAbwU=",
"license": "MIT",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@azure/msal-browser": "^5.20.0",
"react": "^16.8.0 || ^17 || ^18 || ^19.2.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/code-frame/-/code-frame-7.29.7.tgz",
"integrity": "sha1-8vu/6ofESiFZDsUVt3iywm2IZuc=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/compat-data/-/compat-data-7.29.7.tgz",
"integrity": "sha1-bwI38PNtLlHAVwpjb67Z0tDv5ik=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/core/-/core-7.29.7.tgz",
"integrity": "sha1-gMELFySAgpaLV6hXuRZAlx8gcPc=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz",
"integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.29.8",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/generator/-/generator-7.29.8.tgz",
"integrity": "sha1-SwuIeIVCJkMzngkCIUikxOuqSXk=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
"integrity": "sha1-eh3vcEMCQBxH9k+oVYnpdK4hcEI=",
"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/lru-cache": {
"version": "5.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=",
"dev": true,
"license": "ISC",
"dependencies": {
"yallist": "^3.0.2"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz",
"integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-globals": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
"integrity": "sha1-8EqW+9hHMkGxB5JD9bPwOjAQq3s=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
"integrity": "sha1-7yUEilGOgo1zk/rFiC3dc5Idc5Y=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
"integrity": "sha1-sGJ0elmXuhOGNyATKLv/d5YFdK4=",
"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-string-parser": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
"integrity": "sha1-fwhx2Zgk0jE31g+G/PYTD9WhtR8=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
"integrity": "sha1-vYcITO0MeW7Ea9pJLeboPSnon8I=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
"integrity": "sha1-zzFb6UAhOzVOtKvMC9Aevj9zvCo=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helpers/-/helpers-7.29.7.tgz",
"integrity": "sha1-Rav951SJl+NDdsPmn+tHXP+0pgc=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/parser/-/parser-7.29.8.tgz",
"integrity": "sha1-llNxai8Qxne5j7xj1L+wAMMCzxc=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.29.8"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/runtime/-/runtime-7.29.7.tgz",
"integrity": "sha1-EgIkUMRaTabY2Ch7GKT/Ldsj92g=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.29.7",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/template/-/template-7.29.7.tgz",
"integrity": "sha1-TZ1ABPZFzdME3pWMclFieE7KxwA=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/traverse/-/traverse-7.29.8.tgz",
"integrity": "sha1-QREBTNxxoPldlHGQdZC6oLimsoo=",
"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://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/types/-/types-7.29.8.tgz",
"integrity": "sha1-Einu8x2FFW1w+j9M2Fk3bQ6vaGM=",
"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": "1.0.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz",
"integrity": "sha1-u+EtyltO+YOg0K9LB7m8kOoKuro=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-bundled-dicts": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-10.3.1.tgz",
"integrity": "sha512-wHRmqaHrhmPHxsnYs9JhYCwD+lLsIOltbvaK9XfIkisblfBCjvsSihsJZhVEvSQ2pPNqESUaOQnBBeVbqv52qA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-ada": "^4.1.1",
"@cspell/dict-al": "^1.1.1",
"@cspell/dict-aws": "^4.0.17",
"@cspell/dict-bash": "^4.2.3",
"@cspell/dict-companies": "^3.2.13",
"@cspell/dict-cpp": "^7.1.2",
"@cspell/dict-cryptocurrencies": "^5.0.5",
"@cspell/dict-csharp": "^4.0.8",
"@cspell/dict-css": "^4.1.2",
"@cspell/dict-dart": "^2.3.2",
"@cspell/dict-data-science": "^2.0.16",
"@cspell/dict-django": "^4.1.6",
"@cspell/dict-docker": "^1.1.17",
"@cspell/dict-dotnet": "^5.0.15",
"@cspell/dict-elixir": "^4.0.8",
"@cspell/dict-en_us": "^4.4.40",
"@cspell/dict-en-common-misspellings": "^2.2.2",
"@cspell/dict-en-gb-mit": "^3.1.29",
"@cspell/dict-filetypes": "^3.0.18",
"@cspell/dict-flutter": "^1.1.1",
"@cspell/dict-fonts": "^4.0.6",
"@cspell/dict-fsharp": "^1.1.1",
"@cspell/dict-fullstack": "^3.2.9",
"@cspell/dict-gaming-terms": "^1.1.2",
"@cspell/dict-git": "^3.1.0",
"@cspell/dict-golang": "^6.0.29",
"@cspell/dict-google": "^1.0.9",
"@cspell/dict-haskell": "^4.0.6",
"@cspell/dict-html": "^4.0.16",
"@cspell/dict-html-symbol-entities": "^4.0.5",
"@cspell/dict-java": "^5.0.12",
"@cspell/dict-julia": "^1.1.1",
"@cspell/dict-k8s": "^1.0.13",
"@cspell/dict-kotlin": "^1.1.1",
"@cspell/dict-latex": "^5.1.0",
"@cspell/dict-lorem-ipsum": "^4.0.5",
"@cspell/dict-lua": "^4.0.8",
"@cspell/dict-makefile": "^1.0.5",
"@cspell/dict-markdown": "^2.0.18",
"@cspell/dict-monkeyc": "^1.1.2",
"@cspell/dict-node": "^5.0.9",
"@cspell/dict-npm": "^5.2.49",
"@cspell/dict-php": "^4.1.3",
"@cspell/dict-powershell": "^5.0.17",
"@cspell/dict-public-licenses": "^2.0.16",
"@cspell/dict-python": "^4.5.2",
"@cspell/dict-r": "^2.1.1",
"@cspell/dict-ruby": "^5.1.4",
"@cspell/dict-rust": "^4.1.2",
"@cspell/dict-scala": "^5.0.11",
"@cspell/dict-shell": "^1.2.0",
"@cspell/dict-software-terms": "^5.4.4",
"@cspell/dict-sql": "^2.2.1",
"@cspell/dict-svelte": "^1.0.7",
"@cspell/dict-swift": "^2.0.6",
"@cspell/dict-terraform": "^1.1.4",
"@cspell/dict-typescript": "^3.2.3",
"@cspell/dict-vue": "^3.0.5",
"@cspell/dict-zig": "^1.0.0"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-json-reporter": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-json-reporter/-/cspell-json-reporter-10.3.1.tgz",
"integrity": "sha512-wdM5pdIDIDn5PHxEMU0uhu3Gxgpqp6Y0MD65eGr+sFXSxXyWwc3U0F1ghxsYCVIKfiF71tKRwtuKnMQJLXPNKw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/cspell-types": "10.3.1"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-performance-monitor": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-performance-monitor/-/cspell-performance-monitor-10.3.1.tgz",
"integrity": "sha512-zSFk/7YxYUCoxCxunigiW/q0U9XsIYNQJy6+bYaVYOT6/3WMOHZkzWffxAD8WNzzMd61QFpTb2FrrzudEhY/Yw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-pipe": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-pipe/-/cspell-pipe-10.3.1.tgz",
"integrity": "sha512-ErGssy4KPaI+PWbc92attUz4/hYcJW05c94tgzhiaEUumgrCMqV64sJlFyTh3ckMhAh9pPg2Kp+qpmS634pTwQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-resolver": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-resolver/-/cspell-resolver-10.3.1.tgz",
"integrity": "sha512-m072aE8NesdbSt8wieWJiCZOzSekzorsaXFxetkTFI2JIM7fqd+wvCtasLYY1CUbhjGdHOjTQ5GxXL6Z4rzCbA==",
"dev": true,
"license": "MIT",
"dependencies": {
"global-directory": "^5.0.0"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-service-bus": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-service-bus/-/cspell-service-bus-10.3.1.tgz",
"integrity": "sha512-Ha+H8SOBFA0QeWjYc9qY2/Jm41PGpmFjGqgOGZtI8BiJ5DTPLQpn2rPAxE6IKNUvtNE1kkknkbhsWVe/a14wkw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-types": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-types/-/cspell-types-10.3.1.tgz",
"integrity": "sha512-c0ta73Z2KQdvOqlCWNCi9GYQSw/IUFm0R0FpNOaPZn3cjc6J6pMBd4IwD07TsOXMduCrmf/Ppg6gzcyviGHeAQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-worker": {
"version": "10.3.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/cspell-worker/-/cspell-worker-10.3.1.tgz",
"integrity": "sha512-mg4J9ia14qNoP8oqSBFU8BOq/VoI0s6xPdsw70oiDvCfxMePoe5PvcnrGNjWNHAdoOeMuFNgjpK5vl/CSjaLFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"cspell-lib": "10.3.1"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/dict-ada": {
"version": "4.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-ada/-/dict-ada-4.1.1.tgz",
"integrity": "sha1-eMDJkW6Mls04kIwCsMSXn5YixlA=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-al": {
"version": "1.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-al/-/dict-al-1.1.1.tgz",
"integrity": "sha1-1lgeeAHaoPTnUS00MefwDB59U+E=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-aws": {
"version": "4.0.17",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-aws/-/dict-aws-4.0.17.tgz",
"integrity": "sha1-c9upLOaYaLq+EU1uQ2peTdRbbGw=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-bash": {
"version": "4.2.3",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-bash/-/dict-bash-4.2.3.tgz",
"integrity": "sha1-Q9Yt+oee1sWUHSDKZlWyQ5Kuo4g=",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-shell": "1.2.0"
}
},
"node_modules/@cspell/dict-companies": {
"version": "3.2.13",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-companies/-/dict-companies-3.2.13.tgz",
"integrity": "sha512-mBJeYzCkiiWgNQxKg7zyQOpFPwcXO4IAzXGbOEFfcQ4Q0G5Fa7Kqd8z+gvnvSK7NPWKJaFmiApC6I0cka02qmQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cpp": {
"version": "7.1.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-cpp/-/dict-cpp-7.1.2.tgz",
"integrity": "sha512-bkR33oE+ToyD1hwSV4XeEUB9oDkizHRX03CrQfj23tX4VUVbie5vkEHzlKVhcw/Q+fO2dtV/Vz4f6O5M4a2iZQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cryptocurrencies": {
"version": "5.0.5",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.5.tgz",
"integrity": "sha1-hDpqxFIWIn9UNsRCqGg8FXHlcWA=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-csharp": {
"version": "4.0.8",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-csharp/-/dict-csharp-4.0.8.tgz",
"integrity": "sha1-J/bVhz9N3nfAPHi7fTxRvI2NeME=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-css": {
"version": "4.1.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-css/-/dict-css-4.1.2.tgz",
"integrity": "sha1-2RPO6CGs91YW0SmNFSNBY47z2F0=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dart": {
"version": "2.3.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-dart/-/dict-dart-2.3.2.tgz",
"integrity": "sha1-queC3PbGc4V5Rbm74DvuqnlkkiI=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-data-science": {
"version": "2.0.16",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-data-science/-/dict-data-science-2.0.16.tgz",
"integrity": "sha1-Nw1P38+q23F2tspH4uhgMWbhxKE=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-django": {
"version": "4.1.6",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-django/-/dict-django-4.1.6.tgz",
"integrity": "sha1-qSQIuolxyj3zxgK543UKFL5pqPY=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-docker": {
"version": "1.1.17",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-docker/-/dict-docker-1.1.17.tgz",
"integrity": "sha1-hnSzYT36nH0pIvbsKf+EXLFuZlA=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dotnet": {
"version": "5.0.15",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-dotnet/-/dict-dotnet-5.0.15.tgz",
"integrity": "sha512-j2MUKPlzMeDy/mnb1EjmtkX8e6VzZdw60Qyf6vPlp7WZhUwwp2LBlKOWx7+hASjP6k4a0nDpmn77G+4upxvbZA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-elixir": {
"version": "4.0.8",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-elixir/-/dict-elixir-4.0.8.tgz",
"integrity": "sha1-wbKjDQ/GVKAB9xjxlr62DAHg4fY=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en_us": {
"version": "4.4.40",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-en_us/-/dict-en_us-4.4.40.tgz",
"integrity": "sha512-TGyOaWP1dD28GRHH2Lt04ciMZC8Z6UX+5kJsi04pbQHq6uRxv14/bBVCBeSsajUXRZsJYUqXyHaHB9O0ODuFuQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en-common-misspellings": {
"version": "2.2.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.2.2.tgz",
"integrity": "sha512-gu0zS7nm0jgVA2EswgWOR8od8wbNYVgcGzo0pGaDqcSkKS4WhABehLOwbyI0NIEVB+ME6SmckLVGk7g+VD1C6A==",
"dev": true,
"license": "CC BY-SA 4.0"
},
"node_modules/@cspell/dict-en-gb-mit": {
"version": "3.1.29",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-en-gb-mit/-/dict-en-gb-mit-3.1.29.tgz",
"integrity": "sha512-mInExsCFZui0f9Vg/MToWfQZzwMfPgHX8BCYdZNdXWbYz+jITXcnvssbdUkui/DVbriZVJ74Zu9bv2jOEqTCNA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-filetypes": {
"version": "3.0.18",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-filetypes/-/dict-filetypes-3.0.18.tgz",
"integrity": "sha1-t5ilMh2KSiVKmZiSDbS5FJHlHr8=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-flutter": {
"version": "1.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-flutter/-/dict-flutter-1.1.1.tgz",
"integrity": "sha1-+rV88YmoAS6HDS4fIVJrGDRQONc=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fonts": {
"version": "4.0.6",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-fonts/-/dict-fonts-4.0.6.tgz",
"integrity": "sha1-792iE7TIdgU66lG6/HzYgsY3lWM=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fsharp": {
"version": "1.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-fsharp/-/dict-fsharp-1.1.1.tgz",
"integrity": "sha1-RkFKgXexwzc/HtsVbfRGCIFHzCI=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fullstack": {
"version": "3.2.9",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-fullstack/-/dict-fullstack-3.2.9.tgz",
"integrity": "sha1-6Lr5OCtgBpIWhMlAjcrSwd5a5Lw=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-gaming-terms": {
"version": "1.1.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.2.tgz",
"integrity": "sha1-RZqkcLQ+rL08v3syvVu7JZy3iBI=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-git": {
"version": "3.1.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-git/-/dict-git-3.1.0.tgz",
"integrity": "sha1-esSBFEJcdOChwA8VQTjPgbBPJQs=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-golang": {
"version": "6.0.29",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-golang/-/dict-golang-6.0.29.tgz",
"integrity": "sha512-EZCgfxrr5lPnYQLmSvB6YtpfoDFt2KKxAD4ppq2xGSIgDFXAF7Mv4doiXIFUQaynCBIEfAMl3f/uDfrIUo4fyQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-google": {
"version": "1.0.9",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-google/-/dict-google-1.0.9.tgz",
"integrity": "sha1-W/cq7PKugom9JCckXKE+53s5OZw=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-haskell": {
"version": "4.0.6",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-haskell/-/dict-haskell-4.0.6.tgz",
"integrity": "sha1-iBQ2+USmkBz/j6sa93YnfKlvG4w=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html": {
"version": "4.0.16",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-html/-/dict-html-4.0.16.tgz",
"integrity": "sha1-pow3y1FUZaqmj1hW8YzXHUIaFd0=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html-symbol-entities": {
"version": "4.0.5",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.5.tgz",
"integrity": "sha1-y92MEzx9ZJ0y4Q9ItYvUqTBLXLY=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-java": {
"version": "5.0.12",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-java/-/dict-java-5.0.12.tgz",
"integrity": "sha1-hpqyepcsfAhUp6SFS3cMTPlB+4s=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-julia": {
"version": "1.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-julia/-/dict-julia-1.1.1.tgz",
"integrity": "sha1-eGAcDpOXwsuhrs/MAdzAZUxdK5o=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-k8s": {
"version": "1.0.13",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-k8s/-/dict-k8s-1.0.13.tgz",
"integrity": "sha1-R+i/NdgROpXFWd5oZ2aNXfsjius=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-kotlin": {
"version": "1.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-kotlin/-/dict-kotlin-1.1.1.tgz",
"integrity": "sha1-gw17PTNoXAmY71uSKw13efZmlwY=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-latex": {
"version": "5.1.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-latex/-/dict-latex-5.1.0.tgz",
"integrity": "sha1-xgfPs0nqczeKta55WS04mjzEfD4=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lorem-ipsum": {
"version": "4.0.5",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.5.tgz",
"integrity": "sha1-AyHO9XsJOH6j264ezVISPansgQ8=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lua": {
"version": "4.0.8",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-lua/-/dict-lua-4.0.8.tgz",
"integrity": "sha1-C7FoMhLNrCrLYEg71ciXDWKkGXI=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-makefile": {
"version": "1.0.5",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-makefile/-/dict-makefile-1.0.5.tgz",
"integrity": "sha1-/m598jYP9pTvQckKDUtCLoH1YO8=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-markdown": {
"version": "2.0.18",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-markdown/-/dict-markdown-2.0.18.tgz",
"integrity": "sha1-yvfEyWuRSqXA4OLtEMqcnyxqVgM=",
"dev": true,
"license": "MIT",
"peerDependencies": {
"@cspell/dict-css": "^4.1.2",
"@cspell/dict-html": "^4.0.16",
"@cspell/dict-html-symbol-entities": "^4.0.5",
"@cspell/dict-typescript": "^3.2.3"
}
},
"node_modules/@cspell/dict-monkeyc": {
"version": "1.1.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-monkeyc/-/dict-monkeyc-1.1.2.tgz",
"integrity": "sha512-4VzwdSUVqyUVmAKAzMkVwVa7AkvSi1l1OHdQr58MWq4VR4NQDO8sVQSibd2PMxruXTkxJt9UwVQVHgaaVTiV1Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-node": {
"version": "5.0.9",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-node/-/dict-node-5.0.9.tgz",
"integrity": "sha1-yolOYrhd6vL1Xp2chv27JgupI+s=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-npm": {
"version": "5.2.49",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-npm/-/dict-npm-5.2.49.tgz",
"integrity": "sha512-7NoDyLcuzQKVA7pNt5vdtqpok9XJyYPxeL7FGzUTbYWi7SuTCk3QbFhoMiYoHSCc6C5G+NCI9xxWHMZnDflXlA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-php": {
"version": "4.1.3",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-php/-/dict-php-4.1.3.tgz",
"integrity": "sha512-41oKzl7rLVrrVZA/Gs0ESnP6KliEX7c+IwaaNmOL3PAoHasFDVEmIFeENIzuDdM12UcHT+MlLkAm3Qw/lS/ERA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-powershell": {
"version": "5.0.17",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-powershell/-/dict-powershell-5.0.17.tgz",
"integrity": "sha512-khOoIdBgKRk2scnr7888pf70yJ1Tr3RGdnYcAN0MJ2vtaNRKoOTCFc13gXUkNDHwEyhMI1h9oz3KsT180F2amw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-public-licenses": {
"version": "2.0.16",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.16.tgz",
"integrity": "sha1-jrPEZ8JFJkYFQ6JO31WpeaTzTzk=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-python": {
"version": "4.5.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-python/-/dict-python-4.5.2.tgz",
"integrity": "sha512-CFcTDGN/ycn45WXC5ZZ06pG09WbGKMpPm1rkMuqMP98/jwjw3iiK8c0izWRd8x027n1rOZ9kJ8f9Sd+bQ22HJg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-data-science": "^2.0.16"
}
},
"node_modules/@cspell/dict-r": {
"version": "2.1.1",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-r/-/dict-r-2.1.1.tgz",
"integrity": "sha1-rOjWZ5nK5BSEEbtkg9nIqKPIpQ8=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-ruby": {
"version": "5.1.4",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-ruby/-/dict-ruby-5.1.4.tgz",
"integrity": "sha512-Slw1dLY/pW5liJ5Fle+MIPphIdleZkIM6STDoXCN7sy298GfbfT34sJTcSZcXzZJVXiCEAvlLp+s1YNr6DuWNg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-rust": {
"version": "4.1.2",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-rust/-/dict-rust-4.1.2.tgz",
"integrity": "sha1-ahUectw76RbAQBEbunNYQBulfhU=",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-scala": {
"version": "5.0.11",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-scala/-/dict-scala-5.0.11.tgz",
"integrity": "sha512-+D59847Y61KZ0MBoXJzBMtOXfFhezEb6ShjvJlL7bnryyy6iBwAfozbz7OJAe+KrEpYm+GlVV7Wy4FmJSgxBag==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-shell": {
"version": "1.2.0",
"resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@cspell/dict-shell/-/dict-shell-1.2.0.tgz",
"integrity": "sha1-VwL+P4/IgTRI6Y3Oyd+eNJNLDyE=",
"dev": true,
"license": "MIT"