-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathLICENSE-THIRD-PARTY
5957 lines (5956 loc) · 305 KB
/
LICENSE-THIRD-PARTY
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
├─ @ampproject/remapping@2.2.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/ampproject/remapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: jridgewell@google.com
│ ├─ path: D:\workspace\ng-terminal\node_modules\@ampproject\remapping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@ampproject\remapping\LICENSE
├─ @angular-devkit/architect@0.1502.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\architect
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\architect\LICENSE
├─ @angular-devkit/build-angular@15.2.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular\LICENSE
├─ @angular-devkit/build-webpack@0.1502.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-webpack
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-webpack\LICENSE
├─ @angular-devkit/core@15.2.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\core
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\core\LICENSE
├─ @angular-devkit/schematics@15.2.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\schematics
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\schematics\LICENSE
├─ @angular/animations@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\animations
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\animations\README.md
├─ @angular/cdk@14.2.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/components
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\cdk
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\cdk\LICENSE
├─ @angular/cli@15.2.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\cli
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\cli\LICENSE
├─ @angular/common@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\common
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\common\README.md
├─ @angular/compiler-cli@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ └─ path: D:\workspace\ng-terminal\node_modules\@angular\compiler-cli
├─ @angular/compiler@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\compiler
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\compiler\README.md
├─ @angular/core@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\core
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\core\README.md
├─ @angular/forms@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\forms
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\forms\README.md
├─ @angular/material@14.2.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/components
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\material
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\material\LICENSE
├─ @angular/platform-browser-dynamic@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\platform-browser-dynamic
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\platform-browser-dynamic\README.md
├─ @angular/platform-browser@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\platform-browser
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\platform-browser\README.md
├─ @angular/router@15.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular
│ ├─ publisher: angular
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular\router
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular\router\README.md
├─ @assemblyscript/loader@0.10.1
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/AssemblyScript/assemblyscript
│ ├─ publisher: Daniel Wirtz
│ ├─ email: dcode+assemblyscript@dcode.io
│ ├─ path: D:\workspace\ng-terminal\node_modules\@assemblyscript\loader
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@assemblyscript\loader\README.md
├─ @babel/code-frame@7.26.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\code-frame
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\code-frame\LICENSE
├─ @babel/compat-data@7.26.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\compat-data
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\compat-data\LICENSE
├─ @babel/core@7.19.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\core
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\core\LICENSE
├─ @babel/core@7.20.12
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular\node_modules\@babel\core
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular\node_modules\@babel\core\LICENSE
├─ @babel/generator@7.20.14
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\generator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\generator\LICENSE
├─ @babel/generator@7.26.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@babel\generator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@babel\generator\LICENSE
├─ @babel/helper-annotate-as-pure@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-annotate-as-pure
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-annotate-as-pure\LICENSE
├─ @babel/helper-annotate-as-pure@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-create-class-features-plugin\node_modules\@babel\helper-annotate-as-pure
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-create-class-features-plugin\node_modules\@babel\helper-annotate-as-pure\LICENSE
├─ @babel/helper-builder-binary-assignment-operator-visitor@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-builder-binary-assignment-operator-visitor
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-builder-binary-assignment-operator-visitor\LICENSE
├─ @babel/helper-compilation-targets@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-compilation-targets
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-compilation-targets\LICENSE
├─ @babel/helper-create-class-features-plugin@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-create-class-features-plugin
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-create-class-features-plugin\LICENSE
├─ @babel/helper-create-regexp-features-plugin@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-create-regexp-features-plugin
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-create-regexp-features-plugin\LICENSE
├─ @babel/helper-define-polyfill-provider@0.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel-polyfills
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-define-polyfill-provider
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-define-polyfill-provider\LICENSE
├─ @babel/helper-environment-visitor@7.22.20
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-environment-visitor
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-environment-visitor\LICENSE
├─ @babel/helper-member-expression-to-functions@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-member-expression-to-functions
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-member-expression-to-functions\LICENSE
├─ @babel/helper-module-imports@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-module-imports
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-module-imports\LICENSE
├─ @babel/helper-module-transforms@7.26.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-module-transforms
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-module-transforms\LICENSE
├─ @babel/helper-optimise-call-expression@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-optimise-call-expression
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-optimise-call-expression\LICENSE
├─ @babel/helper-plugin-utils@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-plugin-utils
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-plugin-utils\LICENSE
├─ @babel/helper-remap-async-to-generator@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-remap-async-to-generator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-remap-async-to-generator\LICENSE
├─ @babel/helper-replace-supers@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-replace-supers
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-replace-supers\LICENSE
├─ @babel/helper-simple-access@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-simple-access
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-simple-access\LICENSE
├─ @babel/helper-skip-transparent-expression-wrappers@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-skip-transparent-expression-wrappers
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-skip-transparent-expression-wrappers\LICENSE
├─ @babel/helper-split-export-declaration@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular\node_modules\@babel\helper-split-export-declaration
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@angular-devkit\build-angular\node_modules\@babel\helper-split-export-declaration\LICENSE
├─ @babel/helper-string-parser@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-string-parser
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-string-parser\LICENSE
├─ @babel/helper-validator-identifier@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-validator-identifier
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-validator-identifier\LICENSE
├─ @babel/helper-validator-option@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-validator-option
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-validator-option\LICENSE
├─ @babel/helper-wrap-function@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helper-wrap-function
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helper-wrap-function\LICENSE
├─ @babel/helpers@7.22.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helpers
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helpers\LICENSE
├─ @babel/parser@7.26.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\parser
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\parser\LICENSE
├─ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-bugfix-safari-id-destructuring-collision-in-function-expression
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-bugfix-safari-id-destructuring-collision-in-function-expression\LICENSE
├─ @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-bugfix-v8-spread-parameters-in-optional-chaining
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-bugfix-v8-spread-parameters-in-optional-chaining\LICENSE
├─ @babel/plugin-proposal-async-generator-functions@7.20.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-async-generator-functions
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-async-generator-functions\LICENSE
├─ @babel/plugin-proposal-class-properties@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-class-properties
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-class-properties\LICENSE
├─ @babel/plugin-proposal-class-static-block@7.21.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-class-static-block
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-class-static-block\LICENSE
├─ @babel/plugin-proposal-dynamic-import@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-dynamic-import
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-dynamic-import\LICENSE
├─ @babel/plugin-proposal-export-namespace-from@7.18.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-export-namespace-from
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-export-namespace-from\LICENSE
├─ @babel/plugin-proposal-json-strings@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-json-strings
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-json-strings\LICENSE
├─ @babel/plugin-proposal-logical-assignment-operators@7.20.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-logical-assignment-operators
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-logical-assignment-operators\LICENSE
├─ @babel/plugin-proposal-nullish-coalescing-operator@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-nullish-coalescing-operator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-nullish-coalescing-operator\LICENSE
├─ @babel/plugin-proposal-numeric-separator@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-numeric-separator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-numeric-separator\LICENSE
├─ @babel/plugin-proposal-object-rest-spread@7.20.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-object-rest-spread
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-object-rest-spread\LICENSE
├─ @babel/plugin-proposal-optional-catch-binding@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-optional-catch-binding
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-optional-catch-binding\LICENSE
├─ @babel/plugin-proposal-optional-chaining@7.21.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-optional-chaining
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-optional-chaining\LICENSE
├─ @babel/plugin-proposal-private-methods@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-private-methods
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-private-methods\LICENSE
├─ @babel/plugin-proposal-private-property-in-object@7.21.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-private-property-in-object
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-private-property-in-object\LICENSE
├─ @babel/plugin-proposal-unicode-property-regex@7.18.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-unicode-property-regex
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-proposal-unicode-property-regex\LICENSE
├─ @babel/plugin-syntax-async-generators@7.8.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-async-generators
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-async-generators\LICENSE
├─ @babel/plugin-syntax-class-properties@7.12.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-class-properties
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-class-properties\LICENSE
├─ @babel/plugin-syntax-class-static-block@7.14.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-class-static-block
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-class-static-block\LICENSE
├─ @babel/plugin-syntax-dynamic-import@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-dynamic-import
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-dynamic-import\LICENSE
├─ @babel/plugin-syntax-export-namespace-from@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-export-namespace-from
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-export-namespace-from\LICENSE
├─ @babel/plugin-syntax-import-assertions@7.26.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-import-assertions
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-import-assertions\LICENSE
├─ @babel/plugin-syntax-json-strings@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-json-strings
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-json-strings\LICENSE
├─ @babel/plugin-syntax-logical-assignment-operators@7.10.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-logical-assignment-operators
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-logical-assignment-operators\LICENSE
├─ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-nullish-coalescing-operator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-nullish-coalescing-operator\LICENSE
├─ @babel/plugin-syntax-numeric-separator@7.10.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-numeric-separator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-numeric-separator\LICENSE
├─ @babel/plugin-syntax-object-rest-spread@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-object-rest-spread
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-object-rest-spread\LICENSE
├─ @babel/plugin-syntax-optional-catch-binding@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-optional-catch-binding
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-optional-catch-binding\LICENSE
├─ @babel/plugin-syntax-optional-chaining@7.8.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-optional-chaining
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-optional-chaining\LICENSE
├─ @babel/plugin-syntax-private-property-in-object@7.14.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-private-property-in-object
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-private-property-in-object\LICENSE
├─ @babel/plugin-syntax-top-level-await@7.14.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-top-level-await
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-syntax-top-level-await\LICENSE
├─ @babel/plugin-transform-arrow-functions@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-arrow-functions
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-arrow-functions\LICENSE
├─ @babel/plugin-transform-async-to-generator@7.20.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-async-to-generator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-async-to-generator\LICENSE
├─ @babel/plugin-transform-block-scoped-functions@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-block-scoped-functions
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-block-scoped-functions\LICENSE
├─ @babel/plugin-transform-block-scoping@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-block-scoping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-block-scoping\LICENSE
├─ @babel/plugin-transform-classes@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-classes
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-classes\LICENSE
├─ @babel/plugin-transform-computed-properties@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-computed-properties
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-computed-properties\LICENSE
├─ @babel/plugin-transform-destructuring@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-destructuring
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-destructuring\LICENSE
├─ @babel/plugin-transform-dotall-regex@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-dotall-regex
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-dotall-regex\LICENSE
├─ @babel/plugin-transform-duplicate-keys@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-duplicate-keys
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-duplicate-keys\LICENSE
├─ @babel/plugin-transform-exponentiation-operator@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-exponentiation-operator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-exponentiation-operator\LICENSE
├─ @babel/plugin-transform-for-of@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-for-of
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-for-of\LICENSE
├─ @babel/plugin-transform-function-name@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-function-name
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-function-name\LICENSE
├─ @babel/plugin-transform-literals@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-literals
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-literals\LICENSE
├─ @babel/plugin-transform-member-expression-literals@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-member-expression-literals
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-member-expression-literals\LICENSE
├─ @babel/plugin-transform-modules-amd@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-amd
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-amd\LICENSE
├─ @babel/plugin-transform-modules-commonjs@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-commonjs
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-commonjs\LICENSE
├─ @babel/plugin-transform-modules-systemjs@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-systemjs
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-systemjs\LICENSE
├─ @babel/plugin-transform-modules-umd@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-umd
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-modules-umd\LICENSE
├─ @babel/plugin-transform-named-capturing-groups-regex@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-named-capturing-groups-regex
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-named-capturing-groups-regex\LICENSE
├─ @babel/plugin-transform-new-target@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-new-target
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-new-target\LICENSE
├─ @babel/plugin-transform-object-super@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-object-super
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-object-super\LICENSE
├─ @babel/plugin-transform-optional-chaining@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-optional-chaining
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-optional-chaining\LICENSE
├─ @babel/plugin-transform-parameters@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-parameters
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-parameters\LICENSE
├─ @babel/plugin-transform-property-literals@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-property-literals
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-property-literals\LICENSE
├─ @babel/plugin-transform-regenerator@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-regenerator
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-regenerator\LICENSE
├─ @babel/plugin-transform-reserved-words@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-reserved-words
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-reserved-words\LICENSE
├─ @babel/plugin-transform-runtime@7.19.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-runtime
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-runtime\LICENSE
├─ @babel/plugin-transform-shorthand-properties@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-shorthand-properties
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-shorthand-properties\LICENSE
├─ @babel/plugin-transform-spread@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-spread
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-spread\LICENSE
├─ @babel/plugin-transform-sticky-regex@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-sticky-regex
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-sticky-regex\LICENSE
├─ @babel/plugin-transform-template-literals@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-template-literals
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-template-literals\LICENSE
├─ @babel/plugin-transform-typeof-symbol@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-typeof-symbol
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-typeof-symbol\LICENSE
├─ @babel/plugin-transform-unicode-escapes@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-unicode-escapes
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-unicode-escapes\LICENSE
├─ @babel/plugin-transform-unicode-regex@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-unicode-regex
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\plugin-transform-unicode-regex\LICENSE
├─ @babel/preset-env@7.20.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\preset-env
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\preset-env\LICENSE
├─ @babel/preset-modules@0.1.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/preset-modules
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\preset-modules
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\preset-modules\LICENSE
├─ @babel/runtime@7.20.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\runtime
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\runtime\LICENSE
├─ @babel/template@7.20.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\template
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\template\LICENSE
├─ @babel/template@7.22.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\helpers\node_modules\@babel\template
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\helpers\node_modules\@babel\template\LICENSE
├─ @babel/template@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@babel\template
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@babel\template\LICENSE
├─ @babel/traverse@7.25.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\traverse
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\traverse\LICENSE
├─ @babel/types@7.26.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\types
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\types\LICENSE
├─ @colors/colors@1.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DABH/colors.js
│ ├─ publisher: DABH
│ ├─ path: D:\workspace\ng-terminal\node_modules\@colors\colors
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@colors\colors\LICENSE
├─ @discoveryjs/json-ext@0.5.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/discoveryjs/json-ext
│ ├─ publisher: Roman Dvornov
│ ├─ email: rdvornov@gmail.com
│ ├─ url: https://github.com/lahmatiy
│ ├─ path: D:\workspace\ng-terminal\node_modules\@discoveryjs\json-ext
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@discoveryjs\json-ext\LICENSE
├─ @esbuild/win32-x64@0.17.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/evanw/esbuild
│ ├─ path: D:\workspace\ng-terminal\node_modules\@esbuild\win32-x64
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@esbuild\win32-x64\README.md
├─ @gar/promisify@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/wraithgar/gar-promisify
│ ├─ publisher: Gar
│ ├─ email: gar+npm@danger.computer
│ ├─ path: D:\workspace\ng-terminal\node_modules\@gar\promisify
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@gar\promisify\LICENSE.md
├─ @isaacs/cliui@8.0.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/yargs/cliui
│ ├─ publisher: Ben Coe
│ ├─ email: ben@npmjs.com
│ ├─ path: D:\workspace\ng-terminal\node_modules\@isaacs\cliui
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@isaacs\cliui\LICENSE.txt
├─ @istanbuljs/load-nyc-config@1.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/istanbuljs/load-nyc-config
│ ├─ path: D:\workspace\ng-terminal\node_modules\@istanbuljs\load-nyc-config
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@istanbuljs\load-nyc-config\LICENSE
├─ @istanbuljs/schema@0.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/istanbuljs/schema
│ ├─ publisher: Corey Farrell
│ ├─ path: D:\workspace\ng-terminal\node_modules\@istanbuljs\schema
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@istanbuljs\schema\LICENSE
├─ @jridgewell/gen-mapping@0.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/gen-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\gen-mapping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\gen-mapping\LICENSE
├─ @jridgewell/gen-mapping@0.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/gen-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\generator\node_modules\@jridgewell\gen-mapping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\generator\node_modules\@jridgewell\gen-mapping\LICENSE
├─ @jridgewell/gen-mapping@0.3.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/gen-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@jridgewell\gen-mapping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@babel\traverse\node_modules\@jridgewell\gen-mapping\LICENSE
├─ @jridgewell/resolve-uri@3.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/resolve-uri
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\resolve-uri
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\resolve-uri\LICENSE
├─ @jridgewell/set-array@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/set-array
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\set-array
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\set-array\LICENSE
├─ @jridgewell/source-map@0.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/source-map
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\source-map
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\source-map\LICENSE
├─ @jridgewell/sourcemap-codec@1.4.15
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/sourcemap-codec
│ ├─ publisher: Rich Harris
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\sourcemap-codec
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\sourcemap-codec\LICENSE
├─ @jridgewell/trace-mapping@0.3.25
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/trace-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: D:\workspace\ng-terminal\node_modules\@jridgewell\trace-mapping
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@jridgewell\trace-mapping\LICENSE
├─ @juggle/resize-observer@3.4.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/juggle/resize-observer
│ ├─ publisher: Juggle
│ ├─ path: D:\workspace\ng-terminal\node_modules\@juggle\resize-observer
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@juggle\resize-observer\LICENSE
├─ @leichtgewicht/ip-codec@2.0.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/martinheidegger/ip-codec
│ ├─ publisher: Martin Heidegger
│ ├─ path: D:\workspace\ng-terminal\node_modules\@leichtgewicht\ip-codec
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@leichtgewicht\ip-codec\LICENSE
├─ @ngtools/webpack@15.2.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/angular/angular-cli
│ ├─ publisher: Angular Authors
│ ├─ path: D:\workspace\ng-terminal\node_modules\@ngtools\webpack
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@ngtools\webpack\LICENSE
├─ @nodelib/fs.scandir@2.1.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir
│ ├─ path: D:\workspace\ng-terminal\node_modules\@nodelib\fs.scandir
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@nodelib\fs.scandir\LICENSE
├─ @nodelib/fs.stat@2.0.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat
│ ├─ path: D:\workspace\ng-terminal\node_modules\@nodelib\fs.stat
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@nodelib\fs.stat\LICENSE
├─ @nodelib/fs.walk@1.2.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk
│ ├─ path: D:\workspace\ng-terminal\node_modules\@nodelib\fs.walk
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@nodelib\fs.walk\LICENSE
├─ @npmcli/fs@2.1.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/fs
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\make-fetch-happen\node_modules\@npmcli\fs
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\make-fetch-happen\node_modules\@npmcli\fs\LICENSE.md
├─ @npmcli/fs@3.1.1
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/fs
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\fs
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\fs\LICENSE.md
├─ @npmcli/git@4.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/git
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\git
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\git\LICENSE
├─ @npmcli/installed-package-contents@2.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/installed-package-contents
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\installed-package-contents
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\installed-package-contents\LICENSE
├─ @npmcli/move-file@2.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/npm/move-file
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\move-file
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\move-file\LICENSE.md
├─ @npmcli/node-gyp@3.0.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/node-gyp
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\node-gyp
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\node-gyp\README.md
├─ @npmcli/promise-spawn@6.0.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/promise-spawn
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\promise-spawn
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\promise-spawn\LICENSE
├─ @npmcli/run-script@6.0.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/npm/run-script
│ ├─ publisher: GitHub Inc.
│ ├─ path: D:\workspace\ng-terminal\node_modules\@npmcli\run-script
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@npmcli\run-script\LICENSE
├─ @pkgjs/parseargs@0.11.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/pkgjs/parseargs
│ ├─ path: D:\workspace\ng-terminal\node_modules\@pkgjs\parseargs
│ └─ licenseFile: D:\workspace\ng-terminal\node_modules\@pkgjs\parseargs\LICENSE
├─ @popperjs/core@2.11.8