-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicenses.json
More file actions
5327 lines (5326 loc) · 257 KB
/
licenses.json
File metadata and controls
5327 lines (5326 loc) · 257 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
{
"@acemir/cssom@0.9.31": {
"licenses": "MIT",
"repository": "https://github.com/acemir/CSSOM",
"publisher": "Nikita Vasilyev",
"email": "me@elv1s.ru",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@acemir/cssom",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@acemir/cssom/LICENSE.txt"
},
"@adobe/css-tools@4.4.4": {
"licenses": "MIT",
"repository": "https://github.com/adobe/css-tools",
"publisher": "TJ Holowaychuk",
"email": "tj@vision-media.ca",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@adobe/css-tools",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@adobe/css-tools/LICENSE"
},
"@alloc/quick-lru@5.2.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/quick-lru",
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@alloc/quick-lru",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@alloc/quick-lru/license"
},
"@asamuzakjp/css-color@3.2.0": {
"licenses": "MIT",
"repository": "https://github.com/asamuzaK/cssColor",
"publisher": "asamuzaK",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/jest-environment-jsdom/node_modules/@asamuzakjp/css-color",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/jest-environment-jsdom/node_modules/@asamuzakjp/css-color/LICENSE"
},
"@asamuzakjp/css-color@4.1.1": {
"licenses": "MIT",
"repository": "https://github.com/asamuzaK/cssColor",
"publisher": "asamuzaK",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/css-color",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/css-color/LICENSE"
},
"@asamuzakjp/dom-selector@6.7.7": {
"licenses": "MIT",
"repository": "https://github.com/asamuzaK/domSelector",
"publisher": "asamuzaK",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/dom-selector",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/dom-selector/LICENSE"
},
"@asamuzakjp/nwsapi@2.3.9": {
"licenses": "MIT",
"repository": "https://github.com/dperini/nwsapi",
"publisher": "Diego Perini",
"email": "diego.perini@gmail.com",
"url": "http://www.iport.it/",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/nwsapi",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@asamuzakjp/nwsapi/LICENSE"
},
"@babel/code-frame@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/code-frame",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/code-frame/LICENSE"
},
"@babel/compat-data@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/compat-data",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/compat-data/LICENSE"
},
"@babel/core@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/core",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/core/LICENSE"
},
"@babel/generator@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/generator",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/generator/LICENSE"
},
"@babel/helper-compilation-targets@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-compilation-targets",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-compilation-targets/LICENSE"
},
"@babel/helper-globals@7.28.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-globals",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-globals/LICENSE"
},
"@babel/helper-module-imports@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-module-imports",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-module-imports/LICENSE"
},
"@babel/helper-module-transforms@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-module-transforms",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-module-transforms/LICENSE"
},
"@babel/helper-plugin-utils@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-plugin-utils",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-plugin-utils/LICENSE"
},
"@babel/helper-string-parser@7.27.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-string-parser",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-string-parser/LICENSE"
},
"@babel/helper-validator-identifier@7.28.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-validator-identifier",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-validator-identifier/LICENSE"
},
"@babel/helper-validator-option@7.27.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-validator-option",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helper-validator-option/LICENSE"
},
"@babel/helpers@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helpers",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/helpers/LICENSE"
},
"@babel/parser@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/parser",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/parser/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-async-generators",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-async-generators/LICENSE"
},
"@babel/plugin-syntax-bigint@7.8.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-bigint",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-bigint/LICENSE"
},
"@babel/plugin-syntax-class-properties@7.12.13": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-class-properties",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-class-static-block",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-class-static-block/LICENSE"
},
"@babel/plugin-syntax-import-attributes@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-import-attributes",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-import-attributes/LICENSE"
},
"@babel/plugin-syntax-import-meta@7.10.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-import-meta",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-import-meta/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-json-strings",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-json-strings/LICENSE"
},
"@babel/plugin-syntax-jsx@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-jsx",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-jsx/LICENSE"
},
"@babel/plugin-syntax-logical-assignment-operators@7.10.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-logical-assignment-operators",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-nullish-coalescing-operator",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-numeric-separator",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-object-rest-spread",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-optional-catch-binding",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-optional-chaining",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-private-property-in-object",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-top-level-await",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-top-level-await/LICENSE"
},
"@babel/plugin-syntax-typescript@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-typescript",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-syntax-typescript/LICENSE"
},
"@babel/plugin-transform-react-jsx-self@7.27.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-transform-react-jsx-self",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE"
},
"@babel/plugin-transform-react-jsx-source@7.27.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-transform-react-jsx-source",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE"
},
"@babel/runtime@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/runtime",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/runtime/LICENSE"
},
"@babel/template@7.28.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/template",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/template/LICENSE"
},
"@babel/traverse@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/traverse",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/traverse/LICENSE"
},
"@babel/types@7.29.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/types",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@babel/types/LICENSE"
},
"@bcoe/v8-coverage@0.2.3": {
"licenses": "MIT",
"repository": "https://github.com/demurgos/v8-coverage",
"publisher": "Charles Samborski",
"email": "demurgos@demurgos.net",
"url": "https://demurgos.net",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@bcoe/v8-coverage",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@bcoe/v8-coverage/LICENSE.md"
},
"@csstools/color-helpers@5.1.0": {
"licenses": "MIT-0",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/color-helpers",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/color-helpers/LICENSE.md"
},
"@csstools/css-calc@2.1.4": {
"licenses": "MIT",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-calc",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-calc/LICENSE.md"
},
"@csstools/css-color-parser@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-color-parser",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-color-parser/LICENSE.md"
},
"@csstools/css-parser-algorithms@3.0.5": {
"licenses": "MIT",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-parser-algorithms",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-parser-algorithms/LICENSE.md"
},
"@csstools/css-syntax-patches-for-csstree@1.0.26": {
"licenses": "MIT-0",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-syntax-patches-for-csstree",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-syntax-patches-for-csstree/LICENSE.md"
},
"@csstools/css-tokenizer@3.0.4": {
"licenses": "MIT",
"repository": "https://github.com/csstools/postcss-plugins",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-tokenizer",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@csstools/css-tokenizer/LICENSE.md"
},
"@drizzle-team/brocli@0.10.2": {
"licenses": "Apache-2.0",
"repository": "https://github.com/drizzle-team/brocli",
"publisher": "Drizzle Team",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@drizzle-team/brocli",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@drizzle-team/brocli/README.md"
},
"@emnapi/core@1.8.1": {
"licenses": "MIT",
"repository": "https://github.com/toyobayashi/emnapi",
"publisher": "toyobayashi",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/core",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/core/LICENSE"
},
"@emnapi/runtime@1.8.1": {
"licenses": "MIT",
"repository": "https://github.com/toyobayashi/emnapi",
"publisher": "toyobayashi",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/runtime",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/runtime/LICENSE"
},
"@emnapi/wasi-threads@1.1.0": {
"licenses": "MIT",
"repository": "https://github.com/toyobayashi/emnapi",
"publisher": "toyobayashi",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/wasi-threads",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@emnapi/wasi-threads/LICENSE"
},
"@esbuild-kit/core-utils@3.3.2": {
"licenses": "MIT",
"repository": "https://github.com/esbuild-kit/core-utils",
"publisher": "Hiroki Osame",
"email": "hiroki.osame@gmail.com",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/core-utils",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/core-utils/LICENSE"
},
"@esbuild-kit/esm-loader@2.6.5": {
"licenses": "MIT",
"repository": "https://github.com/esbuild-kit/esm-loader",
"publisher": "Hiroki Osame",
"email": "hiroki.osame@gmail.com",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/esm-loader",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/esm-loader/LICENSE"
},
"@esbuild/darwin-arm64@0.18.20": {
"licenses": "MIT",
"repository": "https://github.com/evanw/esbuild",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/core-utils/node_modules/@esbuild/darwin-arm64",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild-kit/core-utils/node_modules/@esbuild/darwin-arm64/README.md"
},
"@esbuild/darwin-arm64@0.25.12": {
"licenses": "MIT",
"repository": "https://github.com/evanw/esbuild",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild/darwin-arm64",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@esbuild/darwin-arm64/README.md"
},
"@esbuild/darwin-arm64@0.27.2": {
"licenses": "MIT",
"repository": "https://github.com/evanw/esbuild",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/tsx/node_modules/@esbuild/darwin-arm64",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/tsx/node_modules/@esbuild/darwin-arm64/README.md"
},
"@exodus/bytes@1.10.0": {
"licenses": "MIT",
"repository": "https://github.com/ExodusOSS/bytes",
"publisher": "Exodus Movement, Inc.",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@exodus/bytes",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@exodus/bytes/LICENSE"
},
"@floating-ui/core@1.7.4": {
"licenses": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"publisher": "atomiks",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/core",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/core/LICENSE"
},
"@floating-ui/dom@1.7.5": {
"licenses": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"publisher": "atomiks",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/dom",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/dom/LICENSE"
},
"@floating-ui/react-dom@2.1.7": {
"licenses": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"publisher": "atomiks",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/react-dom",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/react-dom/LICENSE"
},
"@floating-ui/utils@0.2.10": {
"licenses": "MIT",
"repository": "https://github.com/floating-ui/floating-ui",
"publisher": "atomiks",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/utils",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@floating-ui/utils/LICENSE"
},
"@isaacs/cliui@8.0.2": {
"licenses": "ISC",
"repository": "https://github.com/yargs/cliui",
"publisher": "Ben Coe",
"email": "ben@npmjs.com",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@isaacs/cliui",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@isaacs/cliui/LICENSE.txt"
},
"@istanbuljs/load-nyc-config@1.1.0": {
"licenses": "ISC",
"repository": "https://github.com/istanbuljs/load-nyc-config",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@istanbuljs/load-nyc-config",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@istanbuljs/load-nyc-config/LICENSE"
},
"@istanbuljs/schema@0.1.3": {
"licenses": "MIT",
"repository": "https://github.com/istanbuljs/schema",
"publisher": "Corey Farrell",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@istanbuljs/schema",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@istanbuljs/schema/LICENSE"
},
"@jest/console@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/console",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/console/LICENSE"
},
"@jest/core@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/core",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/core/LICENSE"
},
"@jest/diff-sequences@30.0.1": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/diff-sequences",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/diff-sequences/LICENSE"
},
"@jest/environment-jsdom-abstract@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/environment-jsdom-abstract",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/environment-jsdom-abstract/LICENSE"
},
"@jest/environment@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/environment",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/environment/LICENSE"
},
"@jest/expect-utils@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/expect-utils",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/expect-utils/LICENSE"
},
"@jest/expect@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/expect",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/expect/LICENSE"
},
"@jest/fake-timers@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/fake-timers",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/fake-timers/LICENSE"
},
"@jest/get-type@30.1.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/get-type",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/get-type/LICENSE"
},
"@jest/globals@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/globals",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/globals/LICENSE"
},
"@jest/pattern@30.0.1": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/pattern",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/pattern/LICENSE"
},
"@jest/reporters@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/reporters",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/reporters/LICENSE"
},
"@jest/schemas@30.0.5": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/schemas",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/schemas/LICENSE"
},
"@jest/snapshot-utils@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/snapshot-utils",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/snapshot-utils/LICENSE"
},
"@jest/source-map@30.0.1": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/source-map",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/source-map/LICENSE"
},
"@jest/test-result@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/test-result",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/test-result/LICENSE"
},
"@jest/test-sequencer@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/test-sequencer",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/test-sequencer/LICENSE"
},
"@jest/transform@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/transform",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/transform/LICENSE"
},
"@jest/types@30.2.0": {
"licenses": "MIT",
"repository": "https://github.com/jestjs/jest",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/types",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jest/types/LICENSE"
},
"@jridgewell/gen-mapping@0.3.13": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/sourcemaps",
"publisher": "Justin Ridgewell",
"email": "justin@ridgewell.name",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/gen-mapping",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/gen-mapping/LICENSE"
},
"@jridgewell/remapping@2.3.5": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/sourcemaps",
"publisher": "Justin Ridgewell",
"email": "justin@ridgewell.name",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/remapping",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/remapping/LICENSE"
},
"@jridgewell/resolve-uri@3.1.2": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/resolve-uri",
"publisher": "Justin Ridgewell",
"email": "justin@ridgewell.name",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/resolve-uri",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/resolve-uri/LICENSE"
},
"@jridgewell/sourcemap-codec@1.5.5": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/sourcemaps",
"publisher": "Justin Ridgewell",
"email": "justin@ridgewell.name",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/sourcemap-codec",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/sourcemap-codec/LICENSE"
},
"@jridgewell/trace-mapping@0.3.31": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/sourcemaps",
"publisher": "Justin Ridgewell",
"email": "justin@ridgewell.name",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/trace-mapping",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@jridgewell/trace-mapping/LICENSE"
},
"@napi-rs/wasm-runtime@0.2.12": {
"licenses": "MIT",
"repository": "https://github.com/napi-rs/napi-rs",
"publisher": "LongYinan",
"url": "https://github.com/Brooooooklyn",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@napi-rs/wasm-runtime",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@napi-rs/wasm-runtime/LICENSE"
},
"@nodelib/fs.scandir@2.1.5": {
"licenses": "MIT",
"repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@nodelib/fs.scandir",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@nodelib/fs.stat",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/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": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@nodelib/fs.walk",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@nodelib/fs.walk/LICENSE"
},
"@pkgjs/parseargs@0.11.0": {
"licenses": "MIT",
"repository": "https://github.com/pkgjs/parseargs",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@pkgjs/parseargs",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@pkgjs/parseargs/LICENSE"
},
"@pkgr/core@0.2.9": {
"licenses": "MIT",
"repository": "https://github.com/un-ts/pkgr",
"publisher": "JounQin",
"email": "admin@1stg.me",
"url": "https://www.1stG.me",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@pkgr/core"
},
"@playwright/test@1.58.1": {
"licenses": "Apache-2.0",
"repository": "https://github.com/microsoft/playwright",
"publisher": "Microsoft Corporation",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@playwright/test",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@playwright/test/LICENSE",
"noticeFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@playwright/test/NOTICE"
},
"@radix-ui/number@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/number",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/number/README.md"
},
"@radix-ui/primitive@1.1.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/primitive",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/primitive/LICENSE"
},
"@radix-ui/react-accordion@1.2.12": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-accordion",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-accordion/LICENSE"
},
"@radix-ui/react-alert-dialog@1.1.15": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-alert-dialog",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-alert-dialog/LICENSE"
},
"@radix-ui/react-arrow@1.1.7": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-arrow",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-arrow/LICENSE"
},
"@radix-ui/react-aspect-ratio@1.1.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-aspect-ratio",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-aspect-ratio/LICENSE"
},
"@radix-ui/react-avatar@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-avatar",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-avatar/LICENSE"
},
"@radix-ui/react-checkbox@1.3.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-checkbox",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-checkbox/LICENSE"
},
"@radix-ui/react-collapsible@1.1.12": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-collapsible",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-collapsible/LICENSE"
},
"@radix-ui/react-collection@1.1.7": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-collection",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-collection/LICENSE"
},
"@radix-ui/react-compose-refs@1.1.2": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-compose-refs",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-compose-refs/README.md"
},
"@radix-ui/react-context-menu@2.2.16": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-context-menu",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-context-menu/LICENSE"
},
"@radix-ui/react-context@1.1.2": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-context",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-context/README.md"
},
"@radix-ui/react-context@1.1.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-context",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-avatar/node_modules/@radix-ui/react-context/LICENSE"
},
"@radix-ui/react-dialog@1.1.15": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dialog",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dialog/LICENSE"
},
"@radix-ui/react-direction@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-direction",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-direction/README.md"
},
"@radix-ui/react-dismissable-layer@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dismissable-layer",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dismissable-layer/LICENSE"
},
"@radix-ui/react-dropdown-menu@2.1.16": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dropdown-menu",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-dropdown-menu/LICENSE"
},
"@radix-ui/react-focus-guards@1.1.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-focus-guards",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-focus-guards/LICENSE"
},
"@radix-ui/react-focus-scope@1.1.7": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-focus-scope",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-focus-scope/LICENSE"
},
"@radix-ui/react-hover-card@1.1.15": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-hover-card",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-hover-card/LICENSE"
},
"@radix-ui/react-id@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-id",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-id/README.md"
},
"@radix-ui/react-label@2.1.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-label",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-label/LICENSE"
},
"@radix-ui/react-menu@2.1.16": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-menu",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-menu/LICENSE"
},
"@radix-ui/react-menubar@1.1.16": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-menubar",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-menubar/LICENSE"
},
"@radix-ui/react-navigation-menu@1.2.14": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-navigation-menu",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-navigation-menu/LICENSE"
},
"@radix-ui/react-popover@1.1.15": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-popover",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-popover/LICENSE"
},
"@radix-ui/react-popper@1.2.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-popper",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-popper/LICENSE"
},
"@radix-ui/react-portal@1.1.9": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-portal",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-portal/LICENSE"
},
"@radix-ui/react-presence@1.1.5": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-presence",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-presence/LICENSE"
},
"@radix-ui/react-primitive@2.1.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-primitive",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-primitive/LICENSE"
},
"@radix-ui/react-primitive@2.1.4": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive/LICENSE"
},
"@radix-ui/react-progress@1.1.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-progress",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-progress/LICENSE"
},
"@radix-ui/react-radio-group@1.3.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-radio-group",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-radio-group/LICENSE"
},
"@radix-ui/react-roving-focus@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-roving-focus",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-roving-focus/LICENSE"
},
"@radix-ui/react-scroll-area@1.2.10": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-scroll-area",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-scroll-area/LICENSE"
},
"@radix-ui/react-select@2.2.6": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-select",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-select/LICENSE"
},
"@radix-ui/react-separator@1.1.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-separator",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-separator/LICENSE"
},
"@radix-ui/react-slider@1.3.6": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-slider",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-slider/LICENSE"
},
"@radix-ui/react-slot@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/LICENSE"
},
"@radix-ui/react-slot@1.2.4": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-slot",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-slot/LICENSE"
},
"@radix-ui/react-switch@1.2.6": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-switch",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-switch/LICENSE"
},
"@radix-ui/react-tabs@1.1.13": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-tabs",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-tabs/LICENSE"
},
"@radix-ui/react-toast@1.2.15": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toast",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toast/LICENSE"
},
"@radix-ui/react-toggle-group@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toggle-group",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toggle-group/LICENSE"
},
"@radix-ui/react-toggle@1.1.10": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toggle",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-toggle/LICENSE"
},
"@radix-ui/react-tooltip@1.2.8": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-tooltip",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-tooltip/LICENSE"
},
"@radix-ui/react-use-callback-ref@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-callback-ref",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-callback-ref/README.md"
},
"@radix-ui/react-use-controllable-state@1.2.2": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-controllable-state",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-controllable-state/LICENSE"
},
"@radix-ui/react-use-effect-event@0.0.2": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-effect-event",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-effect-event/LICENSE"
},
"@radix-ui/react-use-escape-keydown@1.1.1": {
"licenses": "MIT",
"repository": "https://github.com/radix-ui/primitives",
"path": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-escape-keydown",
"licenseFile": "/Users/to/sciebo/TT_Web/UNOWEBSIM_github_dupe/node_modules/@radix-ui/react-use-escape-keydown/README.md"