-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathNOTICE.txt
3472 lines (3465 loc) · 143 KB
/
NOTICE.txt
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
Connected Mobility Solution on AWS
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except
in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the
specific language governing permissions and limitations under the License.
**********************
THIRD PARTY COMPONENTS
**********************
This software includes third party software subject to the following copyrights:
@adobe/css-tools under the MIT license
@alloc/quick-lru under the MIT license
@ampproject/remapping under the Apache-2.0 license
@apideck/better-ajv-errors under the MIT license
@apidevtools/json-schema-ref-parser under the MIT license
@ardatan/sync-fetch under the MIT license
@asyncapi/avro-schema-parser under the Apache-2.0 license
@asyncapi/openapi-schema-parser under the Apache-2.0 license
@asyncapi/parser under the Apache-2.0 license
@asyncapi/protobuf-schema-parser under the Apache-2.0 license
@asyncapi/react-component under the Apache-2.0 license
@asyncapi/specs under the Apache-2.0 license
@aws-amplify/analytics under the Apache-2.0 license
@aws-amplify/api-graphql under the Apache-2.0 license
@aws-amplify/api-rest under the Apache-2.0 license
@aws-amplify/api under the Apache-2.0 license
@aws-amplify/auth under the Apache-2.0 license
@aws-amplify/cache under the Apache-2.0 license
@aws-amplify/core under the Apache-2.0 license
@aws-amplify/datastore under the Apache-2.0 license
@aws-amplify/geo under the Apache-2.0 license
@aws-amplify/interactions under the Apache-2.0 license
@aws-amplify/notifications under the Apache-2.0 license
@aws-amplify/predictions under the Apache-2.0 license
@aws-amplify/pubsub under the Apache-2.0 license
@aws-amplify/rtn-push-notification under the Apache-2.0 license
@aws-amplify/storage under the Apache-2.0 license
@aws-amplify/ui-react-core-notifications under the Apache-2.0 license
@aws-amplify/ui-react-core under the Apache-2.0 license
@aws-amplify/ui-react under the Apache-2.0 license
@aws-amplify/ui under the Apache-2.0 license
@aws-crypto/crc32 under the Apache-2.0 license
@aws-crypto/crc32c under the Apache-2.0 license
@aws-crypto/ie11-detection under the Apache-2.0 license
@aws-crypto/sha1-browser under the Apache-2.0 license
@aws-crypto/sha256-browser under the Apache-2.0 license
@aws-crypto/sha256-js under the Apache-2.0 license
@aws-crypto/supports-web-crypto under the Apache-2.0 license
@aws-crypto/util under the Apache-2.0 license
@aws-sdk/abort-controller under the Apache-2.0 license
@aws-sdk/client-cloudwatch-logs under the Apache-2.0 license
@aws-sdk/client-codebuild under the Apache-2.0 license
@aws-sdk/client-codecommit under the Apache-2.0 license
@aws-sdk/client-cognito-identity under the Apache-2.0 license
@aws-sdk/client-comprehend under the Apache-2.0 license
@aws-sdk/client-eks under the Apache-2.0 license
@aws-sdk/client-firehose under the Apache-2.0 license
@aws-sdk/client-kinesis under the Apache-2.0 license
@aws-sdk/client-lex-runtime-service under the Apache-2.0 license
@aws-sdk/client-lex-runtime-v2 under the Apache-2.0 license
@aws-sdk/client-location under the Apache-2.0 license
@aws-sdk/client-organizations under the Apache-2.0 license
@aws-sdk/client-personalize-events under the Apache-2.0 license
@aws-sdk/client-polly under the Apache-2.0 license
@aws-sdk/client-rekognition under the Apache-2.0 license
@aws-sdk/client-s3 under the Apache-2.0 license
@aws-sdk/client-ssm under the Apache-2.0 license
@aws-sdk/client-sso-oidc under the Apache-2.0 license
@aws-sdk/client-sso under the Apache-2.0 license
@aws-sdk/client-sts under the Apache-2.0 license
@aws-sdk/client-textract under the Apache-2.0 license
@aws-sdk/client-translate under the Apache-2.0 license
@aws-sdk/config-resolver under the Apache-2.0 license
@aws-sdk/credential-provider-cognito-identity under the Apache-2.0 license
@aws-sdk/credential-provider-env under the Apache-2.0 license
@aws-sdk/credential-provider-http under the Apache-2.0 license
@aws-sdk/credential-provider-imds under the Apache-2.0 license
@aws-sdk/credential-provider-ini under the Apache-2.0 license
@aws-sdk/credential-provider-node under the Apache-2.0 license
@aws-sdk/credential-provider-process under the Apache-2.0 license
@aws-sdk/credential-provider-sso under the Apache-2.0 license
@aws-sdk/credential-provider-web-identity under the Apache-2.0 license
@aws-sdk/credential-providers under the Apache-2.0 license
@aws-sdk/eventstream-codec under the Apache-2.0 license
@aws-sdk/eventstream-handler-node under the Apache-2.0 license
@aws-sdk/eventstream-marshaller under the Apache-2.0 license
@aws-sdk/eventstream-serde-browser under the Apache-2.0 license
@aws-sdk/eventstream-serde-config-resolver under the Apache-2.0 license
@aws-sdk/eventstream-serde-node under the Apache-2.0 license
@aws-sdk/eventstream-serde-universal under the Apache-2.0 license
@aws-sdk/fetch-http-handler under the Apache-2.0 license
@aws-sdk/hash-node under the Apache-2.0 license
@aws-sdk/invalid-dependency under the Apache-2.0 license
@aws-sdk/is-array-buffer under the Apache-2.0 license
@aws-sdk/lib-storage under the Apache-2.0 license
@aws-sdk/md5-js under the Apache-2.0 license
@aws-sdk/middleware-bucket-endpoint under the Apache-2.0 license
@aws-sdk/middleware-content-length under the Apache-2.0 license
@aws-sdk/middleware-endpoint under the Apache-2.0 license
@aws-sdk/middleware-eventstream under the Apache-2.0 license
@aws-sdk/middleware-expect-continue under the Apache-2.0 license
@aws-sdk/middleware-flexible-checksums under the Apache-2.0 license
@aws-sdk/middleware-host-header under the Apache-2.0 license
@aws-sdk/middleware-location-constraint under the Apache-2.0 license
@aws-sdk/middleware-logger under the Apache-2.0 license
@aws-sdk/middleware-recursion-detection under the Apache-2.0 license
@aws-sdk/middleware-retry under the Apache-2.0 license
@aws-sdk/middleware-sdk-s3 under the Apache-2.0 license
@aws-sdk/middleware-sdk-sts under the Apache-2.0 license
@aws-sdk/middleware-serde under the Apache-2.0 license
@aws-sdk/middleware-signing under the Apache-2.0 license
@aws-sdk/middleware-ssec under the Apache-2.0 license
@aws-sdk/middleware-stack under the Apache-2.0 license
@aws-sdk/middleware-user-agent under the Apache-2.0 license
@aws-sdk/node-config-provider under the Apache-2.0 license
@aws-sdk/node-http-handler under the Apache-2.0 license
@aws-sdk/property-provider under the Apache-2.0 license
@aws-sdk/protocol-http under the Apache-2.0 license
@aws-sdk/querystring-builder under the Apache-2.0 license
@aws-sdk/querystring-parser under the Apache-2.0 license
@aws-sdk/region-config-resolver under the Apache-2.0 license
@aws-sdk/service-error-classification under the Apache-2.0 license
@aws-sdk/shared-ini-file-loader under the Apache-2.0 license
@aws-sdk/signature-v4-multi-region under the Apache-2.0 license
@aws-sdk/signature-v4 under the Apache-2.0 license
@aws-sdk/smithy-client under the Apache-2.0 license
@aws-sdk/token-providers under the Apache-2.0 license
@aws-sdk/types under the Apache-2.0 license
@aws-sdk/url-parser-native under the Apache-2.0 license
@aws-sdk/url-parser under the Apache-2.0 license
@aws-sdk/util-arn-parser under the Apache-2.0 license
@aws-sdk/util-base64-browser under the Apache-2.0 license
@aws-sdk/util-base64-node under the Apache-2.0 license
@aws-sdk/util-body-length-browser under the Apache-2.0 license
@aws-sdk/util-body-length-node under the Apache-2.0 license
@aws-sdk/util-buffer-from under the Apache-2.0 license
@aws-sdk/util-config-provider under the Apache-2.0 license
@aws-sdk/util-defaults-mode-browser under the Apache-2.0 license
@aws-sdk/util-defaults-mode-node under the Apache-2.0 license
@aws-sdk/util-endpoints under the Apache-2.0 license
@aws-sdk/util-hex-encoding under the Apache-2.0 license
@aws-sdk/util-locate-window under the Apache-2.0 license
@aws-sdk/util-middleware under the Apache-2.0 license
@aws-sdk/util-uri-escape under the Apache-2.0 license
@aws-sdk/util-user-agent-browser under the Apache-2.0 license
@aws-sdk/util-user-agent-node under the Apache-2.0 license
@aws-sdk/util-utf8-browser under the Apache-2.0 license
@aws-sdk/util-utf8-node under the Apache-2.0 license
@aws-sdk/util-waiter under the Apache-2.0 license
@aws-sdk/xml-builder under the Apache-2.0 license
@azure/core-auth under the MIT license
@azure/core-client under the MIT license
@azure/core-http-compat under the MIT license
@azure/core-lro under the MIT license
@azure/core-paging under the MIT license
@azure/core-rest-pipeline under the MIT license
@azure/core-tracing under the MIT license
@azure/core-util under the MIT license
@azure/core-xml under the MIT license
@azure/identity under the MIT license
@azure/logger under the MIT license
@azure/msal-browser under the MIT license
@azure/msal-common under the MIT license
@azure/msal-node under the MIT license
@azure/storage-blob under the MIT license
@babel/code-frame under the MIT license
@babel/compat-data under the MIT license
@babel/eslint-parser under the MIT license
@babel/generator under the MIT license
@babel/helper-annotate-as-pure under the MIT license
@babel/helper-builder-binary-assignment-operator-visitor under the MIT license
@babel/helper-compilation-targets under the MIT license
@babel/helper-create-class-features-plugin under the MIT license
@babel/helper-create-regexp-features-plugin under the MIT license
@babel/helper-define-polyfill-provider under the MIT license
@babel/helper-environment-visitor under the MIT license
@babel/helper-function-name under the MIT license
@babel/helper-hoist-variables under the MIT license
@babel/helper-member-expression-to-functions under the MIT license
@babel/helper-module-imports under the MIT license
@babel/helper-module-transforms under the MIT license
@babel/helper-optimise-call-expression under the MIT license
@babel/helper-plugin-utils under the MIT license
@babel/helper-remap-async-to-generator under the MIT license
@babel/helper-replace-supers under the MIT license
@babel/helper-simple-access under the MIT license
@babel/helper-skip-transparent-expression-wrappers under the MIT license
@babel/helper-split-export-declaration under the MIT license
@babel/helper-string-parser under the MIT license
@babel/helper-validator-identifier under the MIT license
@babel/helper-validator-option under the MIT license
@babel/helper-wrap-function under the MIT license
@babel/helpers under the MIT license
@babel/highlight under the MIT license
@babel/plugin-bugfix-firefox-class-in-computed-class-key under the MIT license
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression under the MIT license
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining under the MIT license
@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly under the MIT license
@babel/plugin-proposal-async-generator-functions under the MIT license
@babel/plugin-proposal-class-properties under the MIT license
@babel/plugin-proposal-decorators under the MIT license
@babel/plugin-proposal-export-default-from under the MIT license
@babel/plugin-proposal-logical-assignment-operators under the MIT license
@babel/plugin-proposal-nullish-coalescing-operator under the MIT license
@babel/plugin-proposal-numeric-separator under the MIT license
@babel/plugin-proposal-object-rest-spread under the MIT license
@babel/plugin-proposal-optional-catch-binding under the MIT license
@babel/plugin-proposal-optional-chaining under the MIT license
@babel/plugin-proposal-private-methods under the MIT license
@babel/plugin-proposal-private-property-in-object under the MIT license
@babel/plugin-syntax-async-generators under the MIT license
@babel/plugin-syntax-bigint under the MIT license
@babel/plugin-syntax-class-properties under the MIT license
@babel/plugin-syntax-class-static-block under the MIT license
@babel/plugin-syntax-decorators under the MIT license
@babel/plugin-syntax-dynamic-import under the MIT license
@babel/plugin-syntax-export-default-from under the MIT license
@babel/plugin-syntax-export-namespace-from under the MIT license
@babel/plugin-syntax-flow under the MIT license
@babel/plugin-syntax-import-assertions under the MIT license
@babel/plugin-syntax-import-attributes under the MIT license
@babel/plugin-syntax-import-meta under the MIT license
@babel/plugin-syntax-json-strings under the MIT license
@babel/plugin-syntax-jsx under the MIT license
@babel/plugin-syntax-logical-assignment-operators under the MIT license
@babel/plugin-syntax-nullish-coalescing-operator under the MIT license
@babel/plugin-syntax-numeric-separator under the MIT license
@babel/plugin-syntax-object-rest-spread under the MIT license
@babel/plugin-syntax-optional-catch-binding under the MIT license
@babel/plugin-syntax-optional-chaining under the MIT license
@babel/plugin-syntax-private-property-in-object under the MIT license
@babel/plugin-syntax-top-level-await under the MIT license
@babel/plugin-syntax-typescript under the MIT license
@babel/plugin-syntax-unicode-sets-regex under the MIT license
@babel/plugin-transform-arrow-functions under the MIT license
@babel/plugin-transform-async-generator-functions under the MIT license
@babel/plugin-transform-async-to-generator under the MIT license
@babel/plugin-transform-block-scoped-functions under the MIT license
@babel/plugin-transform-block-scoping under the MIT license
@babel/plugin-transform-class-properties under the MIT license
@babel/plugin-transform-class-static-block under the MIT license
@babel/plugin-transform-classes under the MIT license
@babel/plugin-transform-computed-properties under the MIT license
@babel/plugin-transform-destructuring under the MIT license
@babel/plugin-transform-dotall-regex under the MIT license
@babel/plugin-transform-duplicate-keys under the MIT license
@babel/plugin-transform-dynamic-import under the MIT license
@babel/plugin-transform-exponentiation-operator under the MIT license
@babel/plugin-transform-export-namespace-from under the MIT license
@babel/plugin-transform-flow-strip-types under the MIT license
@babel/plugin-transform-for-of under the MIT license
@babel/plugin-transform-function-name under the MIT license
@babel/plugin-transform-json-strings under the MIT license
@babel/plugin-transform-literals under the MIT license
@babel/plugin-transform-logical-assignment-operators under the MIT license
@babel/plugin-transform-member-expression-literals under the MIT license
@babel/plugin-transform-modules-amd under the MIT license
@babel/plugin-transform-modules-commonjs under the MIT license
@babel/plugin-transform-modules-systemjs under the MIT license
@babel/plugin-transform-modules-umd under the MIT license
@babel/plugin-transform-named-capturing-groups-regex under the MIT license
@babel/plugin-transform-new-target under the MIT license
@babel/plugin-transform-nullish-coalescing-operator under the MIT license
@babel/plugin-transform-numeric-separator under the MIT license
@babel/plugin-transform-object-rest-spread under the MIT license
@babel/plugin-transform-object-super under the MIT license
@babel/plugin-transform-optional-catch-binding under the MIT license
@babel/plugin-transform-optional-chaining under the MIT license
@babel/plugin-transform-parameters under the MIT license
@babel/plugin-transform-private-methods under the MIT license
@babel/plugin-transform-private-property-in-object under the MIT license
@babel/plugin-transform-property-literals under the MIT license
@babel/plugin-transform-react-constant-elements under the MIT license
@babel/plugin-transform-react-display-name under the MIT license
@babel/plugin-transform-react-jsx-development under the MIT license
@babel/plugin-transform-react-jsx-self under the MIT license
@babel/plugin-transform-react-jsx-source under the MIT license
@babel/plugin-transform-react-jsx under the MIT license
@babel/plugin-transform-react-pure-annotations under the MIT license
@babel/plugin-transform-regenerator under the MIT license
@babel/plugin-transform-reserved-words under the MIT license
@babel/plugin-transform-runtime under the MIT license
@babel/plugin-transform-shorthand-properties under the MIT license
@babel/plugin-transform-spread under the MIT license
@babel/plugin-transform-sticky-regex under the MIT license
@babel/plugin-transform-template-literals under the MIT license
@babel/plugin-transform-typeof-symbol under the MIT license
@babel/plugin-transform-typescript under the MIT license
@babel/plugin-transform-unicode-escapes under the MIT license
@babel/plugin-transform-unicode-property-regex under the MIT license
@babel/plugin-transform-unicode-regex under the MIT license
@babel/plugin-transform-unicode-sets-regex under the MIT license
@babel/preset-env under the MIT license
@babel/preset-flow under the MIT license
@babel/preset-modules under the MIT license
@babel/preset-react under the MIT license
@babel/preset-typescript under the MIT license
@babel/register under the MIT license
@babel/regjsgen under the MIT license
@babel/runtime-corejs3 under the MIT license
@babel/runtime under the MIT license
@babel/template under the MIT license
@babel/traverse under the MIT license
@backstage/app-defaults under the Apache-2.0 license
@backstage/backend-app-api under the Apache-2.0 license
@backstage/backend-common under the Apache-2.0 license
@backstage/backend-defaults under the Apache-2.0 license
@backstage/backend-dev-utils under the Apache-2.0 license
@backstage/backend-openapi-utils under the Apache-2.0 license
@backstage/backend-plugin-api under the Apache-2.0 license
@backstage/backend-tasks under the Apache-2.0 license
@backstage/backend-test-utils under the Apache-2.0 license
@backstage/catalog-client under the Apache-2.0 license
@backstage/catalog-model under the Apache-2.0 license
@backstage/cli-common under the Apache-2.0 license
@backstage/cli-node under the Apache-2.0 license
@backstage/cli under the Apache-2.0 license
@backstage/config-loader under the Apache-2.0 license
@backstage/config under the Apache-2.0 license
@backstage/core-app-api under the Apache-2.0 license
@backstage/core-compat-api under the Apache-2.0 license
@backstage/core-components under the Apache-2.0 license
@backstage/core-plugin-api under the Apache-2.0 license
@backstage/dev-utils under the Apache-2.0 license
@backstage/errors under the Apache-2.0 license
@backstage/eslint-plugin under the Apache-2.0 license
@backstage/frontend-plugin-api under the Apache-2.0 license
@backstage/integration-aws-node under the Apache-2.0 license
@backstage/integration-react under the Apache-2.0 license
@backstage/integration under the Apache-2.0 license
@backstage/plugin-api-docs under the Apache-2.0 license
@backstage/plugin-app-backend under the Apache-2.0 license
@backstage/plugin-app-node under the Apache-2.0 license
@backstage/plugin-auth-backend-module-atlassian-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-aws-alb-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-azure-easyauth-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-bitbucket-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-cloudflare-access-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-gcp-iap-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-github-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-gitlab-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-google-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-guest-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-microsoft-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-oauth2-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-oauth2-proxy-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-oidc-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-okta-provider under the Apache-2.0 license
@backstage/plugin-auth-backend-module-onelogin-provider under the Apache-2.0 license
@backstage/plugin-auth-backend under the Apache-2.0 license
@backstage/plugin-auth-node under the Apache-2.0 license
@backstage/plugin-auth-react under the Apache-2.0 license
@backstage/plugin-bitbucket-cloud-common under the Apache-2.0 license
@backstage/plugin-catalog-backend-module-aws under the Apache-2.0 license
@backstage/plugin-catalog-backend-module-scaffolder-entity-model under the Apache-2.0 license
@backstage/plugin-catalog-backend under the Apache-2.0 license
@backstage/plugin-catalog-common under the Apache-2.0 license
@backstage/plugin-catalog-graph under the Apache-2.0 license
@backstage/plugin-catalog-import under the Apache-2.0 license
@backstage/plugin-catalog-node under the Apache-2.0 license
@backstage/plugin-catalog-react under the Apache-2.0 license
@backstage/plugin-catalog under the Apache-2.0 license
@backstage/plugin-events-backend under the Apache-2.0 license
@backstage/plugin-events-node under the Apache-2.0 license
@backstage/plugin-home-react under the Apache-2.0 license
@backstage/plugin-home under the Apache-2.0 license
@backstage/plugin-kubernetes-common under the Apache-2.0 license
@backstage/plugin-org under the Apache-2.0 license
@backstage/plugin-permission-common under the Apache-2.0 license
@backstage/plugin-permission-node under the Apache-2.0 license
@backstage/plugin-permission-react under the Apache-2.0 license
@backstage/plugin-proxy-backend under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-azure under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-bitbucket-server under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-bitbucket under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-gerrit under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-gitea under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-github under the Apache-2.0 license
@backstage/plugin-scaffolder-backend-module-gitlab under the Apache-2.0 license
@backstage/plugin-scaffolder-backend under the Apache-2.0 license
@backstage/plugin-scaffolder-common under the Apache-2.0 license
@backstage/plugin-scaffolder-node-test-utils under the Apache-2.0 license
@backstage/plugin-scaffolder-node under the Apache-2.0 license
@backstage/plugin-scaffolder-react under the Apache-2.0 license
@backstage/plugin-scaffolder under the Apache-2.0 license
@backstage/plugin-search-backend-module-catalog under the Apache-2.0 license
@backstage/plugin-search-backend-module-pg under the Apache-2.0 license
@backstage/plugin-search-backend-module-techdocs under the Apache-2.0 license
@backstage/plugin-search-backend-node under the Apache-2.0 license
@backstage/plugin-search-backend under the Apache-2.0 license
@backstage/plugin-search-common under the Apache-2.0 license
@backstage/plugin-search-react under the Apache-2.0 license
@backstage/plugin-search under the Apache-2.0 license
@backstage/plugin-signals-react under the Apache-2.0 license
@backstage/plugin-techdocs-backend under the Apache-2.0 license
@backstage/plugin-techdocs-module-addons-contrib under the Apache-2.0 license
@backstage/plugin-techdocs-node under the Apache-2.0 license
@backstage/plugin-techdocs-react under the Apache-2.0 license
@backstage/plugin-techdocs under the Apache-2.0 license
@backstage/plugin-user-settings-common under the Apache-2.0 license
@backstage/plugin-user-settings under the Apache-2.0 license
@backstage/release-manifests under the Apache-2.0 license
@backstage/test-utils under the Apache-2.0 license
@backstage/theme under the Apache-2.0 license
@backstage/version-bridge under the Apache-2.0 license
@balena/dockerignore under the Apache-2.0 license
@bcoe/v8-coverage under the MIT license
@braintree/sanitize-url under the MIT license
@codemirror/autocomplete under the MIT license
@codemirror/commands under the MIT license
@codemirror/language under the MIT license
@codemirror/legacy-modes under the MIT license
@codemirror/lint under the MIT license
@codemirror/search under the MIT license
@codemirror/state under the MIT license
@codemirror/theme-one-dark under the MIT license
@codemirror/view under the MIT license
@colors/colors under the MIT license
@cspotcode/source-map-support under the MIT license
@csstools/normalize.css under the CC0-1.0 license
@csstools/postcss-cascade-layers under the CC0-1.0 license
@csstools/postcss-color-function under the CC0-1.0 license
@csstools/postcss-font-format-keywords under the CC0-1.0 license
@csstools/postcss-hwb-function under the CC0-1.0 license
@csstools/postcss-ic-unit under the CC0-1.0 license
@csstools/postcss-is-pseudo-class under the CC0-1.0 license
@csstools/postcss-nested-calc under the CC0-1.0 license
@csstools/postcss-normalize-display-values under the CC0-1.0 license
@csstools/postcss-oklab-function under the CC0-1.0 license
@csstools/postcss-progressive-custom-properties under the CC0-1.0 license
@csstools/postcss-stepped-value-functions under the CC0-1.0 license
@csstools/postcss-text-decoration-shorthand under the CC0-1.0 license
@csstools/postcss-trigonometric-functions under the CC0-1.0 license
@csstools/postcss-unset-value under the CC0-1.0 license
@csstools/selector-specificity under the CC0-1.0 license
@cypress/request under the Apache-2.0 license
@cypress/xvfb under the MIT license
@dabh/diagnostics under the MIT license
@date-io/date-fns under the MIT license
@davidzemon/passport-okta-oauth under the MIT license
@emotion/babel-plugin under the MIT license
@emotion/hash under the MIT license
@emotion/is-prop-valid under the MIT license
@emotion/memoize under the MIT license
@emotion/react under the MIT license
@emotion/serialize under the MIT license
@emotion/sheet under the MIT license
@emotion/styled under the MIT license
@emotion/unitless under the MIT license
@emotion/use-insertion-effect-with-fallbacks under the MIT license
@emotion/utils under the MIT license
@emotion/weak-memoize under the MIT license
@esbuild/aix-ppc64 under the MIT license
@esbuild/android-arm64 under the MIT license
@esbuild/android-arm under the MIT license
@esbuild/android-x64 under the MIT license
@esbuild/darwin-arm64 under the MIT license
@esbuild/darwin-x64 under the MIT license
@esbuild/freebsd-arm64 under the MIT license
@esbuild/freebsd-x64 under the MIT license
@esbuild/linux-arm64 under the MIT license
@esbuild/linux-arm under the MIT license
@esbuild/linux-ia32 under the MIT license
@esbuild/linux-loong64 under the MIT license
@esbuild/linux-mips64el under the MIT license
@esbuild/linux-ppc64 under the MIT license
@esbuild/linux-riscv64 under the MIT license
@esbuild/linux-s390x under the MIT license
@esbuild/linux-x64 under the MIT license
@esbuild/netbsd-x64 under the MIT license
@esbuild/openbsd-x64 under the MIT license
@esbuild/sunos-x64 under the MIT license
@esbuild/win32-arm64 under the MIT license
@esbuild/win32-ia32 under the MIT license
@esbuild/win32-x64 under the MIT license
@eslint-community/eslint-utils under the MIT license
@eslint-community/regexpp under the MIT license
@eslint/eslintrc under the MIT license
@eslint/js under the MIT license
@floating-ui/dom under the MIT license
@floating-ui/react-dom under the MIT license
@gar/promisify under the MIT license
@gitbeaker/node under the MIT license
@gitbeaker/requester-utils under the MIT license
@gitbeaker/rest under the MIT license
@google-cloud/firestore under the Apache-2.0 license
@google-cloud/paginator under the Apache-2.0 license
@google-cloud/projectify under the Apache-2.0 license
@graphiql/toolkit under the MIT license
@graphql-tools/batch-execute under the MIT license
@graphql-tools/delegate under the MIT license
@graphql-tools/executor-graphql-ws under the MIT license
@graphql-tools/executor-http under the MIT license
@graphql-tools/executor-legacy-ws under the MIT license
@graphql-tools/executor under the MIT license
@graphql-tools/graphql-file-loader under the MIT license
@graphql-tools/import under the MIT license
@graphql-tools/json-file-loader under the MIT license
@graphql-tools/load under the MIT license
@graphql-tools/merge under the MIT license
@graphql-tools/schema under the MIT license
@graphql-tools/url-loader under the MIT license
@graphql-tools/wrap under the MIT license
@grpc/grpc-js under the Apache-2.0 license
@grpc/proto-loader under the Apache-2.0 license
@hapi/hoek under the BSD-3-Clause license
@hapi/topo under the BSD-3-Clause license
@humanwhocodes/config-array under the Apache-2.0 license
@humanwhocodes/module-importer under the Apache-2.0 license
@humanwhocodes/object-schema under the BSD-3-Clause license
@hutson/parse-repository-url under the Apache-2.0 license
@isaacs/cliui under the ISC license
@isaacs/string-locale-compare under the ISC license
@isaacs/ttlcache under the ISC license
@istanbuljs/load-nyc-config under the ISC license
@jest/console under the MIT license
@jest/create-cache-key-function under the MIT license
@jest/environment under the MIT license
@jest/expect-utils under the MIT license
@jest/expect under the MIT license
@jest/fake-timers under the MIT license
@jest/globals under the MIT license
@jest/reporters under the MIT license
@jest/schemas under the MIT license
@jest/source-map under the MIT license
@jest/test-result under the MIT license
@jest/test-sequencer under the MIT license
@jest/transform under the MIT license
@jridgewell/gen-mapping under the MIT license
@jridgewell/resolve-uri under the MIT license
@jridgewell/set-array under the MIT license
@jridgewell/sourcemap-codec under the MIT license
@jridgewell/trace-mapping under the MIT license
@js-sdsl/ordered-map under the MIT license
@jsdevtools/ono under the MIT license
@jsep-plugin/regex under the MIT license
@jsep-plugin/ternary under the MIT license
@jsonjoy.com/base64 under the Apache-2.0 license
@jsonjoy.com/json-pack under the Apache-2.0 license
@juggle/resize-observer under the Apache-2.0 license
@kamilkisiela/fast-url-parser under the MIT license
@keyv/memcache under the MIT license
@keyv/redis under the MIT license
@kubernetes-models/apimachinery under the MIT license
@kubernetes-models/base under the MIT license
@kubernetes-models/validate under the MIT license
@kubernetes/client-node under the Apache-2.0 license
@leichtgewicht/ip-codec under the MIT license
@lerna/child-process under the MIT license
@lerna/create under the MIT license
@lezer/common under the MIT license
@lezer/lr under the MIT license
@manypkg/find-root under the MIT license
@manypkg/get-packages under the MIT license
@mapbox/extent under the ISC license
@mapbox/geojson-area under the BSD-2-Clause license
@mapbox/geojson-coords under the ISC license
@mapbox/geojson-extent under the ISC license
@mapbox/geojson-normalize under the ISC license
@mapbox/geojson-rewind under the ISC license
@mapbox/geojson-types under the ISC license
@mapbox/mapbox-gl-draw under the ISC license
@mapbox/mapbox-gl-supported under the BSD-3-Clause license
@mapbox/point-geometry under the ISC license
@mapbox/tiny-sdf under the BSD-2-Clause license
@mapbox/unitbezier under the BSD-2-Clause license
@mapbox/vector-tile under the BSD-3-Clause license
@mapbox/whoots-js under the ISC license
@maplibre/maplibre-gl-geocoder under the ISC license
@material-ui/icons under the MIT license
@material-ui/lab under the MIT license
@material-ui/pickers under the MIT license
@material-ui/styles under the MIT license
@material-ui/system under the MIT license
@microsoft/fetch-event-source under the MIT license
@module-federation/dts-plugin under the MIT license
@module-federation/enhanced under the MIT license
@module-federation/managers under the MIT license
@module-federation/manifest under the MIT license
@module-federation/rspack under the MIT license
@module-federation/runtime-tools under the MIT license
@module-federation/sdk under the MIT license
@module-federation/third-party-dts-extractor under the MIT license
@module-federation/webpack-bundler-runtime under the MIT license
@motionone/animation under the MIT license
@motionone/easing under the MIT license
@motionone/generators under the MIT license
@mswjs/cookies under the MIT license
@mswjs/interceptors under the MIT license
@mui/core-downloads-tracker under the MIT license
@mui/material under the MIT license
@mui/private-theming under the MIT license
@mui/styled-engine under the MIT license
@n1ru4l/push-pull-async-iterable-iterator under the MIT license
@nicolo-ribaudo/eslint-scope-5-internals under the MIT license
@node-saml/node-saml under the MIT license
@node-saml/passport-saml under the MIT license
@nodelib/fs.scandir under the MIT license
@nodelib/fs.stat under the MIT license
@nodelib/fs.walk under the MIT license
@npmcli/agent under the ISC license
@npmcli/arborist under the ISC license
@npmcli/disparity-colors under the ISC license
@npmcli/fs under the ISC license
@npmcli/git under the ISC license
@npmcli/installed-package-contents under the ISC license
@npmcli/map-workspaces under the ISC license
@npmcli/metavuln-calculator under the ISC license
@npmcli/move-file under the MIT license
@npmcli/name-from-folder under the ISC license
@npmcli/node-gyp under the ISC license
@npmcli/package-json under the ISC license
@npmcli/promise-spawn under the ISC license
@npmcli/query under the ISC license
@npmcli/run-script under the ISC license
@nrwl/devkit under the MIT license
@nrwl/tao under the MIT license
@nx/nx-darwin-arm64 under the MIT license
@nx/nx-darwin-x64 under the MIT license
@nx/nx-freebsd-x64 under the MIT license
@nx/nx-linux-arm-gnueabihf under the MIT license
@nx/nx-linux-arm64-gnu under the MIT license
@nx/nx-linux-arm64-musl under the MIT license
@nx/nx-linux-x64-gnu under the MIT license
@nx/nx-linux-x64-musl under the MIT license
@nx/nx-win32-arm64-msvc under the MIT license
@nx/nx-win32-x64-msvc under the MIT license
@octokit/app under the MIT license
@octokit/auth-app under the MIT license
@octokit/auth-oauth-app under the MIT license
@octokit/auth-oauth-device under the MIT license
@octokit/auth-oauth-user under the MIT license
@octokit/auth-token under the MIT license
@octokit/auth-unauthenticated under the MIT license
@octokit/endpoint under the MIT license
@octokit/graphql-schema under the MIT license
@octokit/graphql under the MIT license
@octokit/oauth-app under the MIT license
@octokit/oauth-authorization-url under the MIT license
@octokit/oauth-methods under the MIT license
@octokit/openapi-types under the MIT license
@octokit/plugin-enterprise-rest under the MIT license
@octokit/plugin-paginate-graphql under the MIT license
@octokit/plugin-paginate-rest under the MIT license
@octokit/plugin-request-log under the MIT license
@octokit/plugin-rest-endpoint-methods under the MIT license
@octokit/plugin-retry under the MIT license
@octokit/plugin-throttling under the MIT license
@octokit/request-error under the MIT license
@octokit/tsconfig under the MIT license
@octokit/webhooks-methods under the MIT license
@octokit/webhooks-types under the MIT license
@octokit/webhooks under the MIT license
@open-draft/until under the MIT license
@openapi-contrib/openapi-schema-to-json-schema under the MIT license
@parcel/watcher under the MIT license
@pkgjs/parseargs under the MIT license
@pmmmwh/react-refresh-webpack-plugin under the MIT license
@protobufjs/aspromise under the BSD-3-Clause license
@protobufjs/codegen under the BSD-3-Clause license
@protobufjs/eventemitter under the BSD-3-Clause license
@protobufjs/fetch under the BSD-3-Clause license
@protobufjs/float under the BSD-3-Clause license
@protobufjs/inquire under the BSD-3-Clause license
@protobufjs/path under the BSD-3-Clause license
@protobufjs/pool under the BSD-3-Clause license
@protobufjs/utf8 under the BSD-3-Clause license
@radix-ui/number under the MIT license
@radix-ui/primitive under the MIT license
@radix-ui/react-accordion under the MIT license
@radix-ui/react-arrow under the MIT license
@radix-ui/react-collapsible under the MIT license
@radix-ui/react-collection under the MIT license
@radix-ui/react-compose-refs under the MIT license
@radix-ui/react-context under the MIT license
@radix-ui/react-dialog under the MIT license
@radix-ui/react-direction under the MIT license
@radix-ui/react-dismissable-layer under the MIT license
@radix-ui/react-dropdown-menu under the MIT license
@radix-ui/react-focus-guards under the MIT license
@radix-ui/react-focus-scope under the MIT license
@radix-ui/react-id under the MIT license
@radix-ui/react-menu under the MIT license
@radix-ui/react-popper under the MIT license
@radix-ui/react-portal under the MIT license
@radix-ui/react-presence under the MIT license
@radix-ui/react-primitive under the MIT license
@radix-ui/react-roving-focus under the MIT license
@radix-ui/react-slider under the MIT license
@radix-ui/react-slot under the MIT license
@radix-ui/react-tabs under the MIT license
@radix-ui/react-tooltip under the MIT license
@radix-ui/react-use-callback-ref under the MIT license
@radix-ui/react-use-controllable-state under the MIT license
@radix-ui/react-use-escape-keydown under the MIT license
@radix-ui/react-use-layout-effect under the MIT license
@radix-ui/react-use-previous under the MIT license
@radix-ui/react-use-rect under the MIT license
@radix-ui/react-use-size under the MIT license
@radix-ui/react-visually-hidden under the MIT license
@radix-ui/rect under the MIT license
@react-aria/ssr under the Apache-2.0 license
@react-hookz/deep-equal under the MIT license
@react-hookz/web under the MIT license
@react-native-community/cli-clean under the MIT license
@react-native-community/cli-config under the MIT license
@react-native-community/cli-debugger-ui under the MIT license
@react-native-community/cli-doctor under the MIT license
@react-native-community/cli-hermes under the MIT license
@react-native-community/cli-platform-android under the MIT license
@react-native-community/cli-platform-apple under the MIT license
@react-native-community/cli-platform-ios under the MIT license
@react-native-community/cli-server-api under the MIT license
@react-native-community/cli-tools under the MIT license
@react-native-community/cli-types under the MIT license
@react-native/assets-registry under the MIT license
@react-native/babel-plugin-codegen under the MIT license
@react-native/babel-preset under the MIT license
@react-native/community-cli-plugin under the MIT license
@react-native/debugger-frontend under the BSD-3-Clause license
@react-native/dev-middleware under the MIT license
@react-native/gradle-plugin under the MIT license
@react-native/js-polyfills under the MIT license
@react-native/metro-babel-transformer under the MIT license
@react-native/normalize-colors under the MIT license
@react-native/virtualized-lists under the MIT license
@remix-run/router under the MIT license
@repeaterjs/repeater under the MIT license
@restart/hooks under the MIT license
@rjsf/material-ui under the Apache-2.0 license
@rjsf/validator-ajv8 under the Apache-2.0 license
@rnx-kit/chromium-edge-launcher under the Apache-2.0 license
@rollup/plugin-babel under the MIT license
@rollup/plugin-commonjs under the MIT license
@rollup/plugin-json under the MIT license
@rollup/plugin-node-resolve under the MIT license
@rollup/plugin-replace under the MIT license
@rollup/plugin-yaml under the MIT license
@rollup/pluginutils under the MIT license
@rollup/rollup-android-arm-eabi under the MIT license
@rollup/rollup-android-arm64 under the MIT license
@rollup/rollup-darwin-arm64 under the MIT license
@rollup/rollup-darwin-x64 under the MIT license
@rollup/rollup-linux-arm-gnueabihf under the MIT license
@rollup/rollup-linux-arm-musleabihf under the MIT license
@rollup/rollup-linux-arm64-gnu under the MIT license
@rollup/rollup-linux-arm64-musl under the MIT license
@rollup/rollup-linux-powerpc64le-gnu under the MIT license
@rollup/rollup-linux-riscv64-gnu under the MIT license
@rollup/rollup-linux-s390x-gnu under the MIT license
@rollup/rollup-linux-x64-gnu under the MIT license
@rollup/rollup-linux-x64-musl under the MIT license
@rollup/rollup-win32-arm64-msvc under the MIT license
@rollup/rollup-win32-ia32-msvc under the MIT license
@rollup/rollup-win32-x64-msvc under the MIT license
@rushstack/eslint-patch under the MIT license
@sagold/json-pointer under the MIT license
@sagold/json-query under the MIT license
@sideway/address under the BSD-3-Clause license
@sideway/formula under the BSD-3-Clause license
@sideway/pinpoint under the BSD-3-Clause license
@sigstore/bundle under the Apache-2.0 license
@sigstore/protobuf-specs under the Apache-2.0 license
@sigstore/sign under the Apache-2.0 license
@sigstore/tuf under the Apache-2.0 license
@sinclair/typebox under the MIT license
@sindresorhus/is under the MIT license
@sinonjs/commons under the BSD-3-Clause license
@sinonjs/samsam under the BSD-3-Clause license
@sinonjs/text-encoding under the (Unlicense OR Apache-2.0) license
@smithy/chunked-blob-reader-native under the Apache-2.0 license
@smithy/chunked-blob-reader under the Apache-2.0 license
@smithy/hash-blob-browser under the Apache-2.0 license
@smithy/hash-stream-node under the Apache-2.0 license
@smithy/util-base64 under the Apache-2.0 license
@smithy/util-retry under the Apache-2.0 license
@smithy/util-stream under the Apache-2.0 license
@smithy/util-utf8 under the Apache-2.0 license
@spotify/eslint-config-base under the Apache-2.0 license
@spotify/eslint-config-react under the Apache-2.0 license
@spotify/eslint-config-typescript under the Apache-2.0 license
@stoplight/json-ref-readers under the Apache-2.0 license
@stoplight/json-ref-resolver under the Apache-2.0 license
@stoplight/json under the Apache-2.0 license
@stoplight/ordered-object-literal under the Apache-2.0 license
@stoplight/spectral-core under the Apache-2.0 license
@stoplight/spectral-formats under the Apache-2.0 license
@stoplight/spectral-functions under the Apache-2.0 license
@stoplight/spectral-parsers under the Apache-2.0 license
@stoplight/spectral-ref-resolver under the Apache-2.0 license
@stoplight/spectral-runtime under the Apache-2.0 license
@stoplight/yaml-ast-parser under the Apache-2.0 license
@stoplight/yaml under the Apache-2.0 license
@sucrase/webpack-loader under the MIT license
@surma/rollup-plugin-off-main-thread under the Apache-2.0 license
@svgr/babel-plugin-add-jsx-attribute under the MIT license
@svgr/babel-plugin-remove-jsx-attribute under the MIT license
@svgr/babel-plugin-remove-jsx-empty-expression under the MIT license
@svgr/babel-plugin-replace-jsx-attribute-value under the MIT license
@svgr/babel-plugin-svg-dynamic-title under the MIT license
@svgr/babel-plugin-svg-em-dimensions under the MIT license
@svgr/babel-plugin-transform-react-native-svg under the MIT license
@svgr/babel-plugin-transform-svg-component under the MIT license
@svgr/hast-util-to-babel-ast under the MIT license
@svgr/plugin-jsx under the MIT license
@svgr/plugin-svgo under the MIT license
@svgr/rollup under the MIT license
@svgr/webpack under the MIT license
@swagger-api/apidom-ast under the Apache-2.0 license
@swagger-api/apidom-core under the Apache-2.0 license
@swagger-api/apidom-error under the Apache-2.0 license
@swagger-api/apidom-json-pointer under the Apache-2.0 license
@swagger-api/apidom-ns-api-design-systems under the Apache-2.0 license
@swagger-api/apidom-ns-asyncapi-2 under the Apache-2.0 license
@swagger-api/apidom-ns-json-schema-draft-4 under the Apache-2.0 license
@swagger-api/apidom-ns-json-schema-draft-6 under the Apache-2.0 license
@swagger-api/apidom-ns-json-schema-draft-7 under the Apache-2.0 license
@swagger-api/apidom-ns-openapi-2 under the Apache-2.0 license
@swagger-api/apidom-ns-openapi-3-0 under the Apache-2.0 license
@swagger-api/apidom-ns-openapi-3-1 under the Apache-2.0 license
@swagger-api/apidom-ns-workflows-1 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-api-design-systems-json under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-api-design-systems-yaml under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-asyncapi-json-2 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-asyncapi-yaml-2 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-json under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-json-2 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-json-3-0 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-json-3-1 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-yaml-2 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-yaml-3-0 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-openapi-yaml-3-1 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-workflows-json-1 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-workflows-yaml-1 under the Apache-2.0 license
@swagger-api/apidom-parser-adapter-yaml-1-2 under the Apache-2.0 license
@swagger-api/apidom-reference under the Apache-2.0 license
@swc/core-darwin-arm64 under the Apache-2.0 AND MIT license
@swc/core-darwin-x64 under the Apache-2.0 AND MIT license
@swc/core-linux-arm-gnueabihf under the Apache-2.0 license
@swc/core-linux-arm64-gnu under the Apache-2.0 AND MIT license
@swc/core-linux-arm64-musl under the Apache-2.0 AND MIT license
@swc/core-linux-x64-gnu under the Apache-2.0 AND MIT license
@swc/core-linux-x64-musl under the Apache-2.0 AND MIT license
@swc/core-win32-arm64-msvc under the Apache-2.0 AND MIT license
@swc/core-win32-ia32-msvc under the Apache-2.0 AND MIT license
@swc/core-win32-x64-msvc under the Apache-2.0 AND MIT license
@swc/counter under the Apache-2.0 license
@swc/jest under the MIT license
@szmarczak/http-timer under the MIT license
@tanstack/query-core under the MIT license
@tanstack/react-query under the MIT license
@tanstack/react-virtual under the MIT license
@tanstack/virtual-core under the MIT license
@testing-library/jest-dom under the MIT license
@testing-library/user-event under the MIT license
@tokenizer/token under the MIT license
@tootallnate/once under the MIT license
@trendyol-js/openstack-swift-sdk under the MIT license
@trysound/sax under the ISC license
@tsconfig/node10 under the MIT license
@tsconfig/node12 under the MIT license
@tsconfig/node14 under the MIT license
@tsconfig/node16 under the MIT license
@tufjs/canonical-json under the MIT license
@tufjs/models under the MIT license
@turf/along under the MIT license
@turf/bbox under the MIT license
@turf/bearing under the MIT license
@turf/boolean-clockwise under the MIT license
@turf/circle under the MIT license
@turf/destination under the MIT license
@turf/distance under the MIT license
@turf/invariant under the MIT license
@turf/length under the MIT license
@turf/line-intersect under the MIT license
@turf/line-segment under the MIT license
@turf/line-slice under the MIT license
@turf/meta under the MIT license
@turf/nearest-point-on-line under the MIT license
@types/aria-query under the MIT license
@types/aws-lambda under the MIT license
@types/babel__core under the MIT license
@types/babel__generator under the MIT license
@types/babel__template under the MIT license
@types/babel__traverse under the MIT license
@types/body-parser under the MIT license
@types/bonjour under the MIT license
@types/btoa-lite under the MIT license
@types/cacheable-request under the MIT license
@types/caseless under the MIT license
@types/codemirror under the MIT license
@types/connect-history-api-fallback under the MIT license
@types/connect under the MIT license
@types/cookie-parser under the MIT license
@types/cookie under the MIT license
@types/cookiejar under the MIT license
@types/cors under the MIT license
@types/debug under the MIT license
@types/docker-modem under the MIT license
@types/dockerode under the MIT license
@types/dompurify under the MIT license
@types/es-aggregate-error under the MIT license
@types/eslint-scope under the MIT license
@types/eslint under the MIT license
@types/estree under the MIT license
@types/express-serve-static-core under the MIT license
@types/express under the MIT license
@types/geojson under the MIT license
@types/graceful-fs under the MIT license
@types/hast under the MIT license
@types/history under the MIT license
@types/hoist-non-react-statics under the MIT license
@types/html-minifier-terser under the MIT license
@types/http-cache-semantics under the MIT license
@types/http-errors under the MIT license
@types/http-proxy under the MIT license
@types/istanbul-lib-coverage under the MIT license
@types/istanbul-lib-report under the MIT license
@types/istanbul-reports under the MIT license
@types/js-cookie under the MIT license
@types/js-levenshtein under the MIT license
@types/js-yaml under the MIT license
@types/jsdom under the MIT license
@types/json-schema under the MIT license
@types/json5 under the MIT license
@types/jsonwebtoken under the MIT license
@types/keyv under the MIT license
@types/lodash under the MIT license
@types/long under the MIT license
@types/lunr under the MIT license
@types/luxon under the MIT license
@types/mapbox-gl under the MIT license
@types/mapbox__point-geometry under the MIT license
@types/mapbox__vector-tile under the MIT license
@types/mdast under the MIT license
@types/methods under the MIT license
@types/mime under the MIT license
@types/minimatch under the MIT license
@types/minimist under the MIT license
@types/ms under the MIT license
@types/multer under the MIT license
@types/node-fetch under the MIT license
@types/node-forge under the MIT license
@types/normalize-package-data under the MIT license
@types/oauth under the MIT license
@types/parse-json under the MIT license
@types/passport-oauth2 under the MIT license
@types/passport-strategy under the MIT license
@types/passport under the MIT license
@types/pbf under the MIT license
@types/prettier under the MIT license
@types/prop-types under the MIT license
@types/protocol-buffers-schema under the MIT license
@types/q under the MIT license
@types/qs under the MIT license
@types/ramda under the MIT license
@types/range-parser under the MIT license
@types/react-redux under the MIT license
@types/react-router-dom under the MIT license
@types/react-router under the MIT license
@types/react-sparklines under the MIT license
@types/react-transition-group under the MIT license
@types/recursive-readdir under the MIT license
@types/resolve under the MIT license
@types/responselike under the MIT license
@types/retry under the MIT license
@types/sanitize-html under the MIT license
@types/semver under the MIT license
@types/send under the MIT license
@types/serve-index under the MIT license
@types/serve-static under the MIT license
@types/set-cookie-parser under the MIT license
@types/sinon under the MIT license
@types/sinonjs__fake-timers under the MIT license
@types/sizzle under the MIT license
@types/sockjs under the MIT license
@types/ssh2-streams under the MIT license
@types/ssh2 under the MIT license
@types/stack-utils under the MIT license
@types/styled-jsx under the MIT license
@types/superagent under the MIT license
@types/supertest under the MIT license
@types/tern under the MIT license
@types/tough-cookie under the MIT license
@types/triple-beam under the MIT license
@types/trusted-types under the MIT license
@types/unist under the MIT license
@types/urijs under the MIT license
@types/use-sync-external-store under the MIT license
@types/uuid under the MIT license
@types/warning under the MIT license
@types/webpack-env under the MIT license
@types/ws under the MIT license