-
Notifications
You must be signed in to change notification settings - Fork 2
/
notices.txt
2498 lines (2366 loc) · 184 KB
/
notices.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
NOTICES AND INFORMATION
This project includes software developed by various open-source projects. We acknowledge and thank the open-source community for their contributions.
===========================================================
Apache Software License 2.0
===========================================================
The Software includes some or all of the following obtained under the Apache License Version 2.0:
@ampproject/remapping
@carbon/elements
@carbon/colors
@carbon/feature-flags
@carbon/grid
@carbon/icon-helpers
@carbon/icons-react
@carbon/icons
@carbon/layout
@carbon/motion
@carbon/pictograms-react
@carbon/react
@carbon/styles
@carbon/telemetry
@carbon/themes
@carbon/type
@humanwhocodes/config-array
@humanwhocodes/module-importer
@ibm/telemetry-js
@jsdoc/salty
@webassemblyjs/leb128
@xtuc/long
ansi-html-community
aria-query
axobject-query
b4a
bare-events
bser
doctrine
ejs
eslint-visitor-keys
fast-diff
faye-websocket
fb-watchman
filelist
human-signals
jake
js2xmlparser
jsdoc
lazy-universal-dotenv
spdx-correct
text-decoder
typescript
validate-npm-package-license
walker
websocket-driver
websocket-extensions
xml-name-validator
xmlcreate
detect-libc
idb-keyval
opentracing
rxjs
sharp
true-case-path
tunnel-agent
The license terms for these components are listed below.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
===========================================================
BSD Zero Clause License
===========================================================
The Software includes some or all of the following obtained under the BSD Zero Clause License:
tslib - Copyright (c) Microsoft Corporation.
The license terms for these components are listed below.
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
===========================================================
BSD 2-Clause "Simplified" License
===========================================================
The Software includes some or all of the following obtained under the BSD 2-Clause "Simplified" License:
@base2/pretty-print-object: Copyright (c) 2015, Yeoman team. All rights reserved.
@typescript-eslint/typescript-estree: Copyright (c) JS Foundation and other contributors, https://js.foundation. All rights reserved.
@yarnpkg/esbuild-plugin-pnp: Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
@yarnpkg/fslib: Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
@yarnpkg/libzip: Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
css-select: Copyright (c) Felix Böhm. All rights reserved.
css-what: Copyright (c) Felix Böhm. All rights reserved.
damerau-levenshtein: Copyright (c) 2018, Tadeusz Łazurski. All rights reserved.
default-gateway: Copyright (c) Silverwind. All rights reserved.
domelementtype: Copyright (c) Felix Böhm. All rights reserved.
domhandler: Copyright (c) Felix Böhm. All rights reserved.
domutils: Copyright (c) Felix Böhm. All rights reserved.
dotenv-expand: Copyright (c) 2016, Scott Motte. All rights reserved.
dotenv: Copyright (c) 2015, Scott Motte. All rights reserved.
entities: Copyright (c) Felix Böhm. All rights reserved.
escodegen: Copyright (c) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors. All rights reserved.
eslint-scope: Copyright JS Foundation and other contributors, https://js.foundation, Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors. All rights reserved.
espree: Copyright (c) Open JS Foundation. All rights reserved.
esprima: Copyright (c) JS Foundation and other contributors, https://js.foundation/. All rights reserved.
esrecurse: Copyright (c) 2012-2016 Yusuke Suzuki (twitter: @Constellation) and other contributors. All rights reserved.
estraverse: Copyright (c) 2014 Yusuke Suzuki (twitter: @Constellation) and other contributors. All rights reserved.
esutils: Copyright (c) 2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.. All rights reserved.
glob-to-regexp: Copyright (c) 2013 Nick Fitzgerald. All rights reserved.
normalize-package-data: Copyright (c) Meryn Stol ("Author"). All rights reserved.
nth-check: Copyright (c) Felix Böhm. All rights reserved.
regjsparser: Copyright (c) Julian Viereck and Contributors. All rights reserved.
terser: Copyright (c) 2012-2018 Mihai Bazon <[email protected]>. All rights reserved.
uglify-js: Copyright (c) 2012-2024 Mihai Bazon <[email protected]>. All rights reserved.
uri-js: Copyright (c) 2011 Gary Court. All rights reserved.
webidl-conversions: Copyright (c) 2014, Domenic Denicola. All rights reserved.
@typescript-eslint/parser: Copyright (c) JS Foundation and other contributors, https://js.foundation. All rights reserved.
cheerio-select: Copyright (c) Felix Böhm. All rights reserved.
configstore: Copyright (c) Google. All rights reserved.
http-cache-semantics: Copyright (c) 2016-2018 Kornel Lesiński. All rights reserved.
rc: Copyright (c) 2013, Dominic Tarr. All rights reserved.
stringify-object: Copyright (c) 2015, Yeoman team. All rights reserved.
update-notifier: Copyright (c) Google. All rights reserved.
yurnalist: Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
The license terms for these components are listed below.
Copyright (c) <year> <owner>. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
===========================================================
BSD 3-Clause "New" or "Revised" License
===========================================================
The Software includes some or all of the following obtained under the BSD 3-Clause "New" or "Revised" License:
@humanwhocodes/object-schema: Copyright (c) 2019 Human Who Codes. All rights reserved.
@sinonjs/commons: Copyright (c) 2018 Sinon.JS. All rights reserved.
@sinonjs/fake-timers: Copyright (c) 2010-2014, Christian Johansen, [email protected]. All rights reserved.
@xtuc/ieee754: Copyright (c) 2023 Feross. All rights reserved.
abab: Copyright (c) 2019 W3C and Jeff Carpenter. All rights reserved.
babel-plugin-istanbul: Copyright (c) 2016, Istanbul Code Coverage. All rights reserved.
diff: Copyright (c) 2009-2015, Kevin Decker <[email protected]>. All rights reserved.
esquery: Copyright (c) 2013, Joel Feenstra. All rights reserved.
flat: Copyright (c) 2014, Hugh Kennedy. All rights reserved.
hoist-non-react-statics: Copyright (c) 2015, Yahoo! Inc. All rights reserved.
ieee754: Copyright 2008 Fair Oaks Labs, Inc.
intl-messageformat: Copyright (c) 2008 Fair Oaks Labs, Inc. All rights reserved.
istanbul-lib-coverage: Copyright (c) 2012-2015 Yahoo! Inc. All rights reserved.
istanbul-lib-instrument: Copyright (c) 2012-2015 Yahoo! Inc. All rights reserved.
istanbul-lib-report: Copyright (c) 2012-2015 Yahoo! Inc. All rights reserved.
istanbul-lib-source-maps: Copyright (c) 2015 Yahoo! Inc. All rights reserved.
istanbul-reports: Copyright (c) 2012-2015 Yahoo! Inc. All rights reserved.
joi: Copyright (c) 2012-2022, Project contributors.
license-checker: Copyright (c) Copyright 2012 Yahoo Inc. All rights reserved.
makeerror: Copyright (c) 2014, Naitik Shah. All rights reserved.
node-forge: Copyright (c) 2010, Digital Bazaar, Inc. All rights reserved.
qs: Copyright (c) 2014, Nathan LaFreniere and other contributors. All rights reserved.
react-intl: Copyright (c) 2019 Oath Inc. All rights reserved.
serialize-javascript: Copyright (c) 2014 Yahoo! Inc. All rights reserved.
shelljs: Copyright (c) 2012, Artur Adib <[email protected]>. All rights reserved.
signedsource: Copyright (c) 2013-present, Facebook, Inc.
source-map-js: Copyright (c) 2009-2011, Mozilla Foundation and contributors. All rights reserved.
source-map: Copyright (c) 2009-2011, Mozilla Foundation and contributors. All rights reserved.
sprintf-js: Copyright (c) 2007-present, Alexandru Mărășteanu <[email protected]>. All rights reserved.
tmpl: Copyright (c) 2014, Naitik Shah. All rights reserved.
tough-cookie: Copyright (c) 2015, Salesforce.com, Inc. All rights reserved.
@hapi/address: Copyright (c) 2019-2022, Sideway, Inc. and Project contributors. All rights reserved.
@hapi/bourne: Copyright (c) 2019-2022, Project contributors Copyright (c) 2019-2020, Sideway Inc. All rights reserved.
@hapi/hoek: Copyright (c) 2011-2022, Project contributors Copyright (c) 2011-2020, Sideway Inc Copyright (c) 2011-2014, Walmart Copyright (c) 2011, Yahoo Inc. All rights reserved.
@hapi/joi: Copyright (c) 2012-2022, Project contributors. Copyright (c) 2012-2022, Sideway. Inc. Copyright (c) 2012-2014, Walmart. All rights reserved.
@hapi/topo: Copyright (c) 2012-2022, Project contributors Copyright (c) 2012-2020, Sideway Inc Copyright (c) 2012-2014, Walmart. All rights reserved.
@sideway/address: Copyright (c) 2019-2022, Sideway, Inc. and Project contributors. All rights reserved.
@sideway/formula: Copyright (c) 2019-2020, Sideway. Inc, and project contributors. All rights reserved.
@sideway/pinpoint: Copyright (c) 2019-2020, Sideway. Inc, and project contributors. All rights reserved.
dataloader: Copyright (c) 2015, Facebook, Inc. All rights reserved.
duplexer3: Copyright (c) Copyright (c) 2022, Sindre Sorhus, Copyright (c) 2020, Vsevolod Strukchinsky, Copyright (c) 2013, Deoxxa Development. All rights reserved.
eslint-plugin-flowtype: Copyright (c) 2015, Gajus Kuizinas (http://gajus.com/). All rights reserved.
filesize: Copyright (c) 2022, Jason Mulligan. All rights reserved.
hyphenate-style-name: Copyright (c) 2015, Espen Hovlandsdal. All rights reserved.
immutable: Copyright (c) 2014-2015, Facebook, Inc. All rights reserved.
react-transition-group: Copyright (c) 2018, React Community. All rights reserved.
source-map: Copyright (c) 2009-2011, Mozilla Foundation and contributors
sprintf-js: Copyright (c) 2007-present, Alexandru Mărășteanu <[email protected]>
table: Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/). All rights reserved.
The license terms for these components are listed below.
Copyright (c) <year> <owner>. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
===========================================================
MIT License
===========================================================
The Software includes some or all of the following obtained under the MIT License:
@adobe/css-tools - Copyright (c) 2012 TJ Holowaychuk <[email protected]>
- Copyright (c) 2022 Jean-Philippe Zolesio <[email protected]>
@apollo/client - Copyright (c) 2021 Apollo Graph, Inc. (Formerly Meteor Development Group, Inc.)
@aw-web-design/x-default-browser - Copyright (c) 2021 The-Code-Monkey
@ardatan/relay-compiler - Copyright (c) Meta Platforms, Inc. and affiliates.
@aw-web-design/x-default-browser - Copyright (c) 2021 The-Code-Monkey
@babel/cli - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/code-frame - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/compat-data - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/core - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/generator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-annotate-as-pure - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-builder-binary-assignment-operator-visitor - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-compilation-targets - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-create-class-features-plugin - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-create-regexp-features-plugin - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-define-polyfill-provider - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-environment-visitor - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-function-name - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-hoist-variables - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-member-expression-to-functions - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-module-imports - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-module-transforms - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-optimise-call-expression - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-plugin-utils - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-remap-async-to-generator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-replace-supers - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-simple-access - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-skip-transparent-expression-wrappers - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-split-export-declaration - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-string-parser - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-validator-identifier - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-validator-option - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-wrap-function - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helpers - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/highlight - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/parser - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-bugfix-firefox-class-in-computed-class-key - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-private-property-in-object - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/eslint-parser Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/helper-explode-assignable-expression Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-async-generator-functions Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-class-properties Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-class-static-block Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-dynamic-import Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-export-namespace-from Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-json-strings Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-logical-assignment-operators Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-nullish-coalescing-operator Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-numeric-separator Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-object-rest-spread Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-optional-catch-binding Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-optional-chaining Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-private-methods Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-proposal-unicode-property-regex Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-runtime Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-async-generators - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-bigint - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-class-properties - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-class-static-block - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-dynamic-import - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-export-namespace-from - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-flow - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-import-assertions - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-import-attributes - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-import-meta - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-json-strings - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-jsx - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-logical-assignment-operators - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-nullish-coalescing-operator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-numeric-separator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-object-rest-spread - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-optional-catch-binding - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-optional-chaining - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-private-property-in-object - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-top-level-await - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-typescript - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-syntax-unicode-sets-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-arrow-functions - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-async-generator-functions - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-async-to-generator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-block-scoped-functions - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-block-scoping - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-class-properties - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-class-static-block - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-classes - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-computed-properties - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-destructuring - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-dotall-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-duplicate-keys - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-dynamic-import - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-exponentiation-operator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-export-namespace-from - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-flow-strip-types - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-for-of - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-function-name - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-json-strings - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-literals - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-logical-assignment-operators - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-member-expression-literals - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-modules-amd - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-modules-commonjs - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-modules-systemjs - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-modules-umd - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-named-capturing-groups-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-new-target - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-nullish-coalescing-operator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-numeric-separator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-object-rest-spread - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-object-super - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-optional-catch-binding - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-optional-chaining - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-parameters - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-private-methods - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-private-property-in-object - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-property-literals - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-react-display-name - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-react-jsx - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-react-jsx-development - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-react-pure-annotations - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-regenerator - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-reserved-words - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-shorthand-properties - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-spread - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-sticky-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-template-literals - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-typeof-symbol - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-typescript - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-unicode-escapes - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-unicode-property-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-unicode-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/plugin-transform-unicode-sets-regex - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/preset-env - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/preset-flow - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/preset-modules - Copyright (c) 2020 Babel
@babel/preset-react - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/preset-typescript - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/register - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/regjsgen - Copyright 2014-2020 Benjamin Tan <https://ofcr.se/>
@babel/runtime - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/template - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/traverse - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/types - Copyright (c) 2014-present Sebastian McKenzie and other contributors
@bcoe/v8-coverage - Copyright (c) Charles Samborski <[email protected]> (https://demurgos.net)
@builder.io/partytown - Copyright (c) 2021 Builder.io
@colors/colors - Original Library Copyright (c) Marak Squires
- Additional Functionality
- Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
- Copyright (c) DABH (https://github.com/DABH)
@discoveryjs/json-ext - Copyright (c) 2020 Roman Dvornov <[email protected]>
@emotion/use-insertion-effect-with-fallbacks - Copyright (c) Emotion team and other contributors
@esbuild/win32-x64 - Copyright (c) 2020 Evan Wallace
@eslint-community/eslint-utils - Copyright (c) 2018 Toru Nagashima
@eslint-community/regexpp - Copyright (c) 2018 Toru Nagashima
@eslint/eslintrc - Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
@eslint/js - Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
@fal-works/esbuild-plugin-global-externals - Copyright (c) 2021 FAL
@floating-ui/core - Copyright (c) 2021 Floating UI contributors
@floating-ui/dom - Copyright (c) 2021 Floating UI contributors
@floating-ui/react - Copyright (c) 2021 Floating UI contributors
@floating-ui/react-dom - Copyright (c) 2021 Floating UI contributors
@floating-ui/utils - Copyright (c) 2021 Floating UI contributors
@formatjs/ecma402-abstract - Copyright (c) 2023 FormatJS
@formatjs/fast-memoize - Copyright (c) 2023 FormatJS
@formatjs/icu-messageformat-parser - Copyright (c) 2023 FormatJS
@formatjs/icu-skeleton-parser - Copyright (c) 2023 FormatJS
@formatjs/intl - Copyright (c) 2023 FormatJS
@formatjs/intl-displaynames - Copyright (c) 2023 FormatJS
@formatjs/intl-listformat - Copyright (c) 2023 FormatJS
@formatjs/intl-localematcher - Copyright (c) 2023 FormatJS
@gatsbyjs/parcel-namer-relative-to-cwd - Copyright (c) 2015 Gatsbyjs
@gatsbyjs/reach-router - Copyright (c) 2018-present, Ryan Florence
- Copyright (c) 2022 Gatsby Inc.
@gatsbyjs/webpack-hot-middleware - Copyright JS Foundation and other contributors
@graphql-codegen/add - Copyright (c) 2016 Dotan Simha
@graphql-codegen/core - Copyright (c) 2016 Dotan Simha
@graphql-codegen/plugin-helpers - Copyright (c) 2016 Dotan Simha
@graphql-codegen/schema-ast - Copyright (c) 2016 Dotan Simha
@graphql-codegen/typescript - Copyright (c) 2016 Dotan Simha
@graphql-codegen/typescript-operations - Copyright (c) 2016 Dotan Simha
@graphql-codegen/visitor-plugin-common - Copyright (c) 2016 Dotan Simha
@graphql-tools/code-file-loader - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/graphql-tag-pluck - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/load - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/merge - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/optimize - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/relay-operation-optimizer - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/schema - Copyright (c) 2020 The Guild, Inc.
@graphql-tools/utils - Copyright (c) 2020 The Guild, Inc.
@graphql-typed-document-node/core - Copyright (c) 2020-2023 Dotan Simha
@gulpjs/messages - Copyright (c) 2024 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>.
@gulpjs/to-absolute-glob - Copyright (c) 2015-2022 Jon Schlinkert <[email protected]>, 2023 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>
@istanbuljs/schema - Copyright (c) 2019 CFWare, LLC
@jest/console - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/core - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/environment - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/expect - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/expect-utils - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/fake-timers - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/globals - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/reporters - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/schemas - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/source-map - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/test-result - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/test-sequencer - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/transform - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jest/types - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
@jridgewell/gen-mapping - Copyright 2022 Justin Ridgewell <[email protected]>
@jridgewell/resolve-uri - Copyright 2022 Justin Ridgewell <[email protected]>
@jridgewell/set-array - Copyright 2022 Justin Ridgewell <[email protected]>
@jridgewell/source-map - Copyright 2019 Justin Ridgewell <[email protected]>
@jridgewell/sourcemap-codec - Copyright (c) 2015 Rich Harris
@jridgewell/trace-mapping - Copyright 2022 Justin Ridgewell <[email protected]>
@leichtgewicht/ip-codec - Copyright (c) 2021 Martin Heidegger
@lezer/common - Copyright (C) 2018 by Marijn Haverbeke <[email protected]> and others
@lezer/lr - Copyright (C) 2018 by Marijn Haverbeke <[email protected]> and others
@lmdb/lmdb-win32-x64 - Copyright (c) 2014 Timur Kristóf](https://github.com/venemo/node-lmdb/)
@mdx-js/mdx - Copyright (c) 2017 Compositor and Vercel, Inc.
@mdx-js/react - Copyright (c) 2017 Compositor and Vercel, Inc.
@mdx-js/util - Copyright (c) 2017 Compositor and Vercel, Inc.
@mischnic/json-sourcemap - Copyright (c) 2022 Niklas Mischkulnig
@msgpackr-extract/msgpackr-extract-win32-x64 - Copyright (c) 2020 Kris Zyp
@ndelangen/get-tarball - Copyright (c) 2016 David Björklund
@nicolo-ribaudo/chokidar-2 - Copyright (c) 2024 The project maintainers and individual contributors
@nicolo-ribaudo/eslint-scope-5-internals - Copyright 2022 Nicolò Ribaudo
@nodelib/fs.scandir - Copyright (c) Denis Malinochkin
@nodelib/fs.stat - Copyright (c) Denis Malinochkin
@nodelib/fs.walk - Copyright (c) Denis Malinochkin
@parcel/bundler-default - Copyright (c) 2017-present Devon Govett
@parcel/cache - Copyright (c) 2017-present Devon Govett
@parcel/codeframe - Copyright (c) 2017-present Devon Govett
@parcel/compressor-raw - Copyright (c) 2017-present Devon Govett
@parcel/core - Copyright (c) 2017-present Devon Govett
@parcel/diagnostic - Copyright (c) 2017-present Devon Govett
@parcel/events - Copyright (c) 2017-present Devon Govett
@parcel/fs - Copyright (c) 2017-present Devon Govett
@parcel/fs-search - Copyright (c) 2017-present Devon Govett
@parcel/graph - Copyright (c) 2017-present Devon Govett
@parcel/hash - Copyright (c) 2017-present Devon Govett
@parcel/logger - Copyright (c) 2017-present Devon Govett
@parcel/markdown-ansi - Copyright (c) 2017-present Devon Govett
@parcel/namer-default - Copyright (c) 2017-present Devon Govett
@parcel/node-resolver-core - Copyright (c) 2017-present Devon Govett
@parcel/optimizer-terser - Copyright (c) 2017-present Devon Govett
@parcel/package-manager - Copyright (c) 2017-present Devon Govett
@parcel/packager-js - Copyright (c) 2017-present Devon Govett
@parcel/packager-raw - Copyright (c) 2017-present Devon Govett
@parcel/plugin - Copyright (c) 2017-present Devon Govett
@parcel/reporter-dev-server - Copyright (c) 2017-present Devon Govett
@parcel/resolver-default - Copyright (c) 2017-present Devon Govett
@parcel/runtime-js - Copyright (c) 2017-present Devon Govett
@parcel/source-map - Copyright (c) 2024 The project maintainers and individual contributors
@parcel/transformer-js - Copyright (c) 2017-present Devon Govett
@parcel/transformer-json - Copyright (c) 2017-present Devon Govett
@parcel/types - Copyright (c) 2017-present Devon Govett
@parcel/utils - Copyright (c) 2017-present Devon Govett
@parcel/watcher - Copyright (c) 2017-present Devon Govett
@parcel/workers - Copyright (c) 2017-present Devon Govett
@pkgjs/parseargs - Copyright [yyyy] [name of - Copyright owner]
@pmmmwh/react-refresh-webpack-plugin - Copyright (c) 2019 Michael Mok
@polka/url - Copyright (c) Luke Edwards <[email protected]> (https://lukeed.com)
@radix-ui/primitive - Copyright (c) 2022 WorkOS
@radix-ui/react-compose-refs - Copyright (c) 2022 WorkOS
@radix-ui/react-context - Copyright (c) 2022 WorkOS
@radix-ui/react-dialog - Copyright (c) 2022 WorkOS
@radix-ui/react-dismissable-layer - Copyright (c) 2022 WorkOS
@radix-ui/react-focus-guards - Copyright (c) 2022 WorkOS
@radix-ui/react-focus-scope - Copyright (c) 2022 WorkOS
@radix-ui/react-id - Copyright (c) 2022 WorkOS
@radix-ui/react-portal - Copyright (c) 2022 WorkOS
@radix-ui/react-presence - Copyright (c) 2022 WorkOS
@radix-ui/react-primitive - Copyright (c) 2022 WorkOS
@radix-ui/react-slot - Copyright (c) 2022 WorkOS
@radix-ui/react-use-callback-ref - Copyright (c) 2022 WorkOS
@radix-ui/react-use-controllable-state - Copyright (c) 2022 WorkOS
@radix-ui/react-use-escape-keydown - Copyright (c) 2022 WorkOS
@radix-ui/react-use-layout-effect - Copyright (c) 2022 WorkOS
@reach/router - Copyright (c) 2018-present, Ryan Florence
@sinclair/typebox - Copyright (c) 2017-2024 Haydn Paterson (sinclair) <[email protected]>
@sindresorhus/is - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
@sindresorhus/merge-streams - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
@sindresorhus/slugify - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
@sindresorhus/transliterate - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
@socket.io/component-emitter - Copyright (c) 2014 Component contributors <[email protected]>
@storybook/addon-actions - Copyright (c) 2024 Storybook
@storybook/addon-backgrounds - Copyright (c) 2024 Storybook
@storybook/addon-controls - Copyright (c) 2024 Storybook
@storybook/addon-docs - Copyright (c) 2024 Storybook
@storybook/addon-essentials - Copyright (c) 2024 Storybook
@storybook/addon-highlight - Copyright (c) 2024 Storybook
@storybook/addon-links - Copyright (c) 2024 Storybook
@storybook/addon-measure - Copyright (c) 2024 Storybook
@storybook/addon-outline - Copyright (c) 2024 Storybook
@storybook/addon-toolbars - Copyright (c) 2024 Storybook
@storybook/addon-viewport - Copyright (c) 2024 Storybook
@storybook/addon-webpack5-compiler-babel - Copyright (c) 2023 Storybook contributors
@storybook/blocks - Copyright (c) 2024 Storybook
@storybook/builder-manager - Copyright (c) 2024 Storybook
@storybook/builder-webpack5 - Copyright (c) 2024 Storybook
@storybook/channels - Copyright (c) 2024 Storybook
@storybook/cli - Copyright (c) 2024 Storybook
@storybook/client-logger - Copyright (c) 2024 Storybook
@storybook/codemod - Copyright (c) 2024 Storybook
@storybook/components - Copyright (c) 2024 Storybook
@storybook/core-common - Copyright (c) 2024 Storybook
@storybook/core-events - Copyright (c) 2024 Storybook
@storybook/core-server - Copyright (c) 2024 Storybook
@storybook/core-webpack - Copyright (c) 2024 Storybook
@storybook/csf - Copyright (c) 2022 CSF contributors
@storybook/csf-plugin - Copyright (c) 2024 Storybook
@storybook/csf-tools - Copyright (c) 2024 Storybook
@storybook/docs-mdx - Copyright (c) 2022 Storybook contributors
@storybook/docs-tools - Copyright (c) 2024 Storybook
@storybook/global - Copyright (c) 2022 Norbert de Langen.
@storybook/icons - Copyright (c) 2022 Tim Mikeladze
@storybook/manager - Copyright (c) 2024 Storybook
@storybook/manager-api - Copyright (c) 2024 Storybook
@storybook/node-logger - Copyright (c) 2024 Storybook
@storybook/preset-react-webpack - Copyright (c) 2024 Storybook
@storybook/preview - Copyright (c) 2024 Storybook
@storybook/preview-api - Copyright (c) 2024 Storybook
@storybook/react - Copyright (c) 2024 Storybook
@storybook/react-docgen-typescript-plugin - Copyright (c) Andrew Lisowski <[email protected]>
@storybook/react-dom-shim - Copyright (c) 2024 Storybook
@storybook/react-webpack5 - Copyright (c) 2024 Storybook
@storybook/router - Copyright (c) 2024 Storybook
@storybook/telemetry - Copyright (c) 2024 Storybook
@storybook/theming - Copyright (c) 2024 Storybook
@storybook/types - Copyright (c) 2024 Storybook
@swc/helpers - Copyright [yyyy] [name of - Copyright owner]
@szmarczak/http-timer - Copyright (c) 2018 Szymon Marczak
@testing-library/dom - Copyright (c) 2017 Kent C. Dodds
@testing-library/jest-dom - Copyright (c) 2017 Kent C. Dodds
@testing-library/react - Copyright (c) 2017-Present Kent C. Dodds
@testing-library/user-event - Copyright (c) 2020 Giorgio Polvara
@tokenizer/token - Copyright (c) 2020 Borewit
@tootallnate/once - Copyright (c) 2020 Nathan Rajlich
@turist/fetch - Copyright (c) 2017, 2018 ZEIT, Inc. - Copyright (c) 2019, 2020 Olli Vanhoja <[email protected]>
@turist/time - Copyright (c) 2021 turist-cloud
@types/aria-query - Copyright (c) 2024 The project maintainers and individual contributors
@types/babel__core - Copyright (c) 2024 The project maintainers and individual contributors
@types/babel__generator - Copyright (c) 2024 The project maintainers and individual contributors
@types/babel__template - Copyright (c) 2024 The project maintainers and individual contributors
@types/babel__traverse - Copyright (c) 2024 The project maintainers and individual contributors
@types/body-parser - Copyright (c) 2024 The project maintainers and individual contributors
@types/bonjour - Copyright (c) 2024 The project maintainers and individual contributors
@types/cacheable-request - Copyright (c) 2024 The project maintainers and individual contributors
@types/common-tags - Copyright (c) 2024 The project maintainers and individual contributors
@types/configstore - Copyright (c) 2024 The project maintainers and individual contributors
@types/connect - Copyright (c) 2024 The project maintainers and individual contributors
@types/connect-history-api-fallback - Copyright (c) 2024 The project maintainers and individual contributors
@types/cookie - Copyright (c) 2024 The project maintainers and individual contributors
@types/cors - Copyright (c) 2024 The project maintainers and individual contributors
@types/cross-spawn - Copyright (c) 2024 The project maintainers and individual contributors
@types/debug - Copyright (c) 2024 The project maintainers and individual contributors
@types/detect-port - Copyright (c) 2024 The project maintainers and individual contributors
@types/diff - Copyright (c) 2024 The project maintainers and individual contributors
@types/doctrine - Copyright (c) 2024 The project maintainers and individual contributors
@types/ejs - Copyright (c) 2024 The project maintainers and individual contributors
@types/emscripten - Copyright (c) 2024 The project maintainers and individual contributors
@types/escodegen - Copyright (c) 2024 The project maintainers and individual contributors
@types/eslint - Copyright (c) 2024 The project maintainers and individual contributors
@types/eslint-scope - Copyright (c) 2024 The project maintainers and individual contributors
@types/estree - Copyright (c) 2024 The project maintainers and individual contributors
@types/express - Copyright (c) 2024 The project maintainers and individual contributors
@types/express-serve-static-core - Copyright (c) 2024 The project maintainers and individual contributors
@types/get-port - Copyright (c) 2024 The project maintainers and individual contributors
@types/glob - Copyright (c) 2024 The project maintainers and individual contributors
@types/graceful-fs - Copyright (c) 2024 The project maintainers and individual contributors
@types/hast - Copyright (c) 2024 The project maintainers and individual contributors
@types/hast - Copyright (c) 2024 The project maintainers and individual contributors
@types/hoist-non-react-statics - Copyright (c) 2024 The project maintainers and individual contributors
@types/html-minifier-terser - Copyright (c) 2024 The project maintainers and individual contributors
@types/http-cache-semantics - Copyright (c) 2024 The project maintainers and individual contributors
@types/http-errors - Copyright (c) 2024 The project maintainers and individual contributors
@types/http-proxy - Copyright (c) 2024 The project maintainers and individual contributors
@types/istanbul-lib-coverage - Copyright (c) 2024 The project maintainers and individual contributors
@types/istanbul-lib-report - Copyright (c) 2024 The project maintainers and individual contributors
@types/istanbul-reports - Copyright (c) 2024 The project maintainers and individual contributors
@types/js-cookie - Copyright (c) 2024 The project maintainers and individual contributors
@types/jsdom - Copyright (c) 2024 The project maintainers and individual contributors
@types/json-schema - Copyright (c) 2024 The project maintainers and individual contributors
@types/json5 - Copyright (c) 2024 The project maintainers and individual contributors
@types/keyv - Copyright (c) 2024 The project maintainers and individual contributors
@types/linkify-it - Copyright (c) 2024 The project maintainers and individual contributors
@types/lodash - Copyright (c) 2024 The project maintainers and individual contributors
@types/markdown-it - Copyright (c) 2024 The project maintainers and individual contributors
@types/mdast - Copyright (c) 2024 The project maintainers and individual contributors
@types/mdurl - Copyright (c) 2024 The project maintainers and individual contributors
@types/mdx - Copyright (c) 2024 The project maintainers and individual contributors
@types/mime - Copyright (c) 2024 The project maintainers and individual contributors
@types/minimatch - Copyright (c) 2024 The project maintainers and individual contributors
@types/mkdirp - Copyright (c) 2024 The project maintainers and individual contributors
@types/node - Copyright (c) 2024 The project maintainers and individual contributors
@types/node-fetch - Copyright (c) 2024 The project maintainers and individual contributors
@types/node-forge - Copyright (c) 2024 The project maintainers and individual contributors
@types/normalize-package-data - Copyright (c) 2024 The project maintainers and individual contributors
@types/parse-json - Copyright (c) 2024 The project maintainers and individual contributors
@types/parse5 - Copyright (c) 2024 The project maintainers and individual contributors
@types/pretty-hrtime - Copyright (c) 2024 The project maintainers and individual contributors
@types/prop-types - Copyright (c) 2024 The project maintainers and individual contributors
@types/qs - Copyright (c) 2024 The project maintainers and individual contributors
@types/range-parser - Copyright (c) 2024 The project maintainers and individual contributors
@types/reach__router - Copyright (c) 2024 The project maintainers and individual contributors
@types/react - Copyright (c) 2024 The project maintainers and individual contributors
@types/resolve - Copyright (c) 2024 The project maintainers and individual contributors
@types/responselike - Copyright (c) 2024 The project maintainers and individual contributors
@types/retry - Copyright (c) 2024 The project maintainers and individual contributors
@types/rimraf - Copyright (c) 2024 The project maintainers and individual contributors
@types/semver - Copyright (c) 2024 The project maintainers and individual contributors
@types/send - Copyright (c) 2024 The project maintainers and individual contributors
@types/serve-index - Copyright (c) 2024 The project maintainers and individual contributors
@types/serve-static - Copyright (c) 2024 The project maintainers and individual contributors
@types/sharp - Copyright (c) 2024 The project maintainers and individual contributors
@types/sockjs - Copyright (c) 2024 The project maintainers and individual contributors
@types/stack-utils - Copyright (c) 2024 The project maintainers and individual contributors
@types/tmp - Copyright (c) 2024 The project maintainers and individual contributors
@types/tough-cookie - Copyright (c) 2024 The project maintainers and individual contributors
@types/unist - Copyright (c) 2024 The project maintainers and individual contributors
@types/uuid - Copyright (c) 2024 The project maintainers and individual contributors
@types/vfile - Copyright (c) 2024 The project maintainers and individual contributors
@types/vfile-message - Copyright (c) 2017 Titus Wormer <[email protected]>
@types/ws - Copyright (c) 2024 The project maintainers and individual contributors
@types/yargs - Copyright (c) 2024 The project maintainers and individual contributors
@types/yargs-parser - Copyright (c) 2024 The project maintainers and individual contributors
@types/yoga-layout - Copyright (c) 2024 The project maintainers and individual contributors
@typescript-eslint/eslint-plugin - Copyright JS Foundation and other contributors, https://js.foundation
@typescript-eslint/experimental-utils - Copyright JS Foundation and other contributors, https://js.foundation
@typescript-eslint/scope-manager - Copyright JS Foundation and other contributors, https://js.foundation
@typescript-eslint/types - Copyright JS Foundation and other contributors, https://js.foundation
@typescript-eslint/utils - Copyright JS Foundation and other contributors, https://js.foundation
@typescript-eslint/visitor-keys - Copyright JS Foundation and other contributors, https://js.foundation
@vercel/webpack-asset-relocator-loader - Copyright 2020 Vercel, Inc.
@vimeo/player - Copyright (c) 2016 Vimeo
@webassemblyjs/ast - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/floating-point-hex-parser - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/helper-api-error - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/helper-buffer - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/helper-numbers - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/helper-wasm-bytecode - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/helper-wasm-section - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/ieee754 - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/utf8 - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/wasm-edit - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/wasm-gen - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/wasm-opt - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/wasm-parser - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webassemblyjs/wast-printer - Copyright (c) 2018 Sven Sauleau <[email protected]>
@webpack-cli/configtest - Copyright JS Foundation and other contributors
@webpack-cli/info - Copyright JS Foundation and other contributors
@webpack-cli/serve - Copyright JS Foundation and other contributors
@wry/caches - Copyright (c) 2019-2021 Ben Newman <[email protected]>
@wry/context - Copyright (c) 2019-2021 Ben Newman <[email protected]>
@wry/equality - Copyright (c) 2019-2021 Ben Newman <[email protected]>
@wry/trie - Copyright (c) 2019-2021 Ben Newman <[email protected]>
@xobotyi/scrollbar-width - Copyright (c) 2019 Anton Zinovyev
abortcontroller-polyfill - Copyright (c) 2017 molsson
accepts - Copyright (c) 2014 Jonathan Ong <[email protected]>
- Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>
acorn - Copyright (C) 2012-2022 by various contributors (see AUTHORS)
acorn-globals - Copyright (c) 2014 Forbes Lindesay
acorn-import-assertions - Copyright (c) 2023 Sven Sauleau
acorn-import-attributes - Copyright (c) 2023 Sven Sauleau
acorn-jsx - Copyright (C) 2012-2017 by Ingvar Stepanyan
acorn-loose - Copyright (C) 2012-2020 by various contributors (see AUTHORS)
acorn-walk - Copyright (C) 2012-2020 by various contributors (see AUTHORS)
address - Copyright (C) 2013 - 2014 fengmk2 <[email protected]>
- Copyright (C) 2015 - present node-modules and other contributors.
adjust-sourcemap-loader - Copyright (c) 2019 Ben Holloway
agent-base - Copyright (c) 2013 Nathan Rajlich <[email protected]>
ajv - Copyright (c) 2015-2021 Evgeny Poberezkin
ajv-errors - Copyright (c) 2017 Evgeny Poberezkin
ajv-formats - Copyright (c) 2020 Evgeny Poberezkin
ajv-keywords - Copyright (c) 2016 Evgeny Poberezkin
anser - Copyright (c) 2012-22 Ionică Bizău <[email protected]> (https://ionicabizau.net
ansi-colors - Copyright (c) 2015-present, Brian Woodward.
ansi-escapes - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
ansi-regex - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
ansi-styles - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
ansi-to-html - Copyright (c) 2012 Rob Burns
app-root-dir - Copyright (c) 2014 Phillip Gates-Idem
append-field - Copyright (c) 2015-2021 Linus Unnebäck
application-config-path - Copyright (c) 2015, 2023 Linus Unnebäck
arch - Copyright (c) Feross Aboukhadijeh
argparse - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,The Netherlands. All rights reserved.
aria-hidden - Copyright (c) 2017 Anton Korzunov
arity-n - Copyright (c) 2015 Christoph Hermann
array-buffer-byte-length - Copyright (c) 2023 Inspect JS
array-each - Copyright (c) 2015, 2017, Jon Schlinkert
array-find-index - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
array-flatten - Copyright (c) 2014 Blake Embrey ([email protected])
array-includes - Copyright (C) 2015 Jordan Harband
array-iterate - Copyright (c) 2015 Titus Wormer <[email protected]>
array-slice - Copyright (c) 2014-2017, Jon Schlinkert.
array-union - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
array.prototype.findlast - Copyright (c) 2021 ECMAScript Shims
array.prototype.findlastindex - Copyright (c) 2021 ECMAScript Shims
array.prototype.flat - Copyright (c) 2021 ECMAScript Shims
array.prototype.flatmap - Copyright (c) 2021 ECMAScript Shims
array.prototype.toreversed - Copyright (c) 2021 ECMAScript Shims
array.prototype.tosorted - Copyright (c) 2021 ECMAScript Shims
arraybuffer.prototype.slice - Copyright (c) 2021 ECMAScript Shims
arrify - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
asap - Copyright 2009–2014 Contributors. All rights reserved.
assert - Copyright Joyent, Inc. and other Node contributors.
ast-types - Copyright (c) 2013 Ben Newman <[email protected]>
ast-types-flow - Copyright (c) 2018 Kyle Davis
astral-regex - Copyright (c) Kevin Mårtensson <[email protected]> (github.com/kevva)
async - Copyright (c) 2010-2018 Caolan McMahon
async-done - Copyright (c) 2015-2019, 2021 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>
async-settle - Copyright (c) 2014, 2016-2017, 2022 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>
asynckit - Copyright (c) 2016 Alex Indigo
atob - Copyright (c) 2015 AJ ONeal
auto-bind - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
autoprefixer - Copyright 2013 Andrey Sitnik <[email protected]>
available-typed-arrays - Copyright (c) 2020 Inspect JS
axios - Copyright (c) 2014-present Matt Zabriskie
babel-core - Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel-eslint - Copyright (c) 2014-2016 Sebastian McKenzie <[email protected]>
babel-extract-comments - Copyright (c) 2015, 2018, Jon Schlinkert.
babel-jest - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
babel-loader - Copyright (c) 2014-2019 Luís Couto <[email protected]>
babel-plugin-add-module-exports - Copyright (C) 2024 59naga
babel-plugin-apply-mdx-type-prop - Copyright (c) 2017 Compositor and Vercel, Inc.
babel-plugin-dynamic-import-node - Copyright (c) 2016 Airbnb
babel-plugin-extract-import-names - Copyright (c) 2017 Compositor and Vercel, Inc.
babel-plugin-jest-hoist - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
babel-plugin-lodash - Copyright and related rights for sample code are waived via CC0. Samplecode is defined as all source code displayed within the prose of thedocumentation.
babel-plugin-macros - Copyright (c) 2020 Kent C. Dodds
babel-plugin-polyfill-corejs2 - Copyright (c) 2020-present Nicolò Ribaudo and other contributors
babel-plugin-polyfill-corejs3 - Copyright (c) 2020-present Nicolò Ribaudo and other contributors
babel-plugin-polyfill-regenerator - Copyright (c) 2020-present Nicolò Ribaudo and other contributors
babel-plugin-remove-graphql-queries - Copyright (c) 2015 Gatsbyjs
babel-plugin-syntax-object-rest-spread - Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel-plugin-syntax-trailing-function-commas - Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel-plugin-transform-object-rest-spread - Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel-plugin-transform-react-remove-prop-types - Copyright (c) 2015 Nikita Gusakov
babel-preset-current-node-syntax - Copyright (c) 2020 Nicolò Ribaudo and other contributors
babel-preset-fbjs - Copyright (c) 2013-present, Facebook, Inc.
babel-preset-gatsby - Copyright (c) 2015 Gatsbyjs
babel-preset-jest - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
babel-runtime - Copyright (c) 2014-present Sebastian McKenzie and other contributors
babylon - Copyright (C) 2012-2014 by various contributors (see AUTHORS)
bach - Copyright (c) 2014, 2016-2018, 2022 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>.
bail - Copyright (c) 2015 Titus Wormer <[email protected]>
balanced-match - Copyright (c) 2013 Julian Gruber <[email protected]>
base-x - Copyright (c) 2018 base-x contributors - Copyright (c) 2014-2018 The Bitcoin Core developers
base64-js - Copyright (c) 2014 Jameson Little
base64id - Copyright (c) 2012-2016 Kristian Faeldt <[email protected]>
batch - Copyright (c) 2013-2015 TJ Holowaychuk <[email protected]>
beautiful-react-hooks - Copyright (c) 2019 Antonio Russo
better-opn - Copyright 2018 Michael Lin <[email protected]>
big.js - Copyright © <2022> Michael Mclaughlin
binary-extensions - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
bl - Copyright (c) 2013-2019 bl contributors
bluebird - Copyright (c) 2013-2018 Petka Antonov
body-parser - Copyright (c) 2014 Jonathan Ong <[email protected]>
- Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>
bonjour-service - Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited
boxen - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
bplist-parser - Copyright (c) 2012 Near Infinity Corporation
brace-expansion - Copyright (c) 2013 Julian Gruber <[email protected]>
braces - Copyright (c) 2014-present, Jon Schlinkert.
browser-assert - Copyright (c) 2015 Social Ally
browserify-zlib - Copyright (c) 2014-2015 Devon Govett <[email protected]>
browserslist - Copyright 2014 Andrey Sitnik <[email protected]> and other contributors
buffer - Copyright (c) Feross Aboukhadijeh
buffer-from - Copyright (c) 2016, 2018 Linus Unnebäck
busboy - Copyright Brian White. All rights reserved.
bytes - Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]> - Copyright (c) 2015 Jed Watson <[email protected]>
cache-manager - Copyright (c) 2024 The project maintainers and individual contributors
cacheable-lookup - Copyright (c) 2019 Szymon Marczak
cacheable-request - Copyright MIT © Jared Wray
call-bind - Copyright (c) 2020 Jordan Harband
callsites - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
camel-case - Copyright (c) 2014 Blake Embrey ([email protected])
camelcase - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
camelcase-css - Copyright (c) Steven Vachon <[email protected]> (svachon.com)
caniuse-api - Copyright (c) 2014 Sébastien Balayn
capital-case - Copyright (c) 2014 Blake Embrey ([email protected])
case-sensitive-paths-webpack-plugin - Copyright (c) 2018 Michael Pratt
catharsis - Copyright (c) 2014 Google Inc.
- Copyright (c) 2012-2014 Jeff Williams
ccount - Copyright (c) 2015 Titus Wormer <[email protected]>
chalk - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
change-case - Copyright (c) 2014 Blake Embrey ([email protected])
change-case-all - Copyright (c) 2014 Blake Embrey ([email protected]
char-regex - Copyright (c) 2020 - 2021 Richie Bendall
character-entities - Copyright (c) 2015 Titus Wormer <[email protected]>
character-entities-html4 - Copyright (c) 2015 Titus Wormer <[email protected]>
character-entities-legacy - Copyright (c) 2015 Titus Wormer <[email protected]>
character-reference-invalid - Copyright (c) 2015 Titus Wormer <[email protected]>
chardet - Copyright (C) 2023 Dmitry Shirokov
cheerio - Copyright (c) 2022 The Cheerio contributors
chokidar - Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
chrome-trace-event - Copyright (c) 2015 Joyent Inc. All rights reserved.
ci-info - Copyright (c) 2016 Thomas Watson Steen
citty - Copyright (c) Pooya Parsa <[email protected]>
cjs-module-lexer - Copyright (C) 2018-2020 Guy Bedford
classnames - Copyright (c) 2018 Jed Watson
clean-css - Copyright (C) 2017 JakubPawlowicz.com
cli-boxes - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
cli-cursor - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
cli-spinners - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
cli-table3 - Copyright (c) 2014 James Talmage <[email protected]>
cli-truncate - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
clipboardy - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
clone - Copyright © 2011-2015 Paul Vorbach <[email protected]>
clone-deep - Copyright (c) 2014-2023, Jon Schlinkert.
clone-response - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
clone-stats - Copyright (c) 2014 Hugh Kennedy
co - Copyright (c) 2014 TJ Holowaychuk <[email protected]>
collapse-white-space - Copyright (c) 2015 Titus Wormer <[email protected]>
collect-v8-coverage - Copyright (c) 2019 Simen Bekkhus
color - Copyright (c) 2012 Heather Arthur
color-convert - Copyright (c) 2011-2016 Heather Arthur <[email protected]>. - Copyright (c) 2016-2021 Josh Junon <[email protected]>.
color-name - Copyright (c) 2015 Dmitry Ivanov
color-name - Copyright (c) 2015 Dmitry Ivanov
color-string - Copyright (c) 2011 Heather Arthur <[email protected]>
colord - Copyright (c) 2020 Vlad Shilov [email protected]
colorette - Copyright © Jorge Bucaran <<https://jorgebucaran.com>>
colors Original Library
- Copyright (c) Marak Squires
Additional Functionality
- Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
combined-stream - Copyright (c) 2011 Debuggable Limited <[email protected]>
comma-separated-tokens - Copyright (c) 2016 Titus Wormer <[email protected]>
command-exists - Copyright (c) 2014 Matthew Conlen
commander - Copyright (c) 2011 TJ Holowaychuk <[email protected]>
common-tags - Copyright © Declan de Wet
commondir - Copyright (c) 2024 The project maintainers and individual contributors
compare-versions - Copyright (c) 2015-2021 Ole Michelsen
compose-function - Copyright © 2015 Christoph Hermann
compressible - Copyright (c) 2013 Jonathan Ong <[email protected]> - Copyright (c) 2014 Jeremiah Senkpiel <[email protected]> - Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>
compression - Copyright (c) 2014 Jonathan Ong <[email protected]>
- Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>
compute-scroll-into-view - Copyright (c) 2023 Cody Olsen
compute-scroll-into-view - Copyright (c) 2023 Cody Olsen
concat-map - Copyright (c) 2024 The project maintainers and individual contributors
concat-stream - Copyright (c) 2013 Max Ogden
confusing-browser-globals - Copyright (c) 2013-present, Facebook, Inc.
connect-history-api-fallback - Copyright (c) 2022 Ben Blackmore and contributors
consola - Copyright (c) Pooya Parsa <[email protected]>
- Copyright (c) Nate Moore
- Copyright (c) Jorge Bucaran <https://jorgebucaran.com>
constant-case - Copyright (c) 2014 Blake Embrey ([email protected])
constant-case - Copyright (c) 2014 Blake Embrey ([email protected])
constants-browserify - Copyright (c) 2013 Julian Gruber [email protected]
content-disposition - Copyright (c) 2014-2017 Douglas Christopher Wilson
content-type - Copyright (c) 2015 Douglas Christopher Wilson
convert-hrtime - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
convert-source-map - Copyright 2013 Thorsten Lorenz.
cookie - Copyright (c) 2012-2014 Roman Shtylman <[email protected]> - Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>
cookie-signature - Copyright (c) 2012–2023 LearnBoost <[email protected]> and other contributors;
copy-props - Copyright (c) 2014, 2016-2018, 2022 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>.
copy-to-clipboard - Copyright (c) 2017 sudodoki <[email protected]>
core-js - Copyright (c) 2014-2024 Denis Pushkarev
core-js-compat - Copyright (c) 2014-2024 Denis Pushkarev
core-js-pure - Copyright (c) 2014-2024 Denis Pushkarev
core-util-is - Copyright Node.js contributors. All rights reserved.
cors - Copyright (c) 2013 Troy Goode <[email protected]>
cosmiconfig - Copyright (c) 2015 David Clark
create-gatsby - Copyright (c) 2015 Gatsbyjs
create-jest - Copyright (c) Meta Platforms, Inc. and affiliates.
- Copyright Contributors to the Jest project.
create-react-context - Copyright (c) 2017-present James Kyle <[email protected]>
cross-env - Copyright (c) 2017 Kent C. Dodds
cross-fetch - Copyright (c) 2017 Leonardo Quixadá
cross-spawn - Copyright (c) 2018 Made With MOXY Lda <[email protected]>
crypto-random-string - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
css - Copyright (c) 2012 TJ Holowaychuk <[email protected]>
css-in-js-utils - Copyright (c) 2017 Robin Frischmann
css-loader - Copyright JS Foundation and other contributors
css-minimizer-webpack-plugin - Copyright JS Foundation and other contributors
css-selector-parser - Copyright (c) 2013 Dulin Marat
css-tree - Copyright (C) 2016-2022 by Roman Dvornov
css.escape - Copyright Mathias Bynens <https://mathiasbynens.be/>
cssesc - Copyright Mathias Bynens <https://mathiasbynens.be/>
cssfilter - Copyright (c) 2015 ËÄÅÈõ∑
cssnano - Copyright (c) Ben Briggs <[email protected]> (http://beneb.info)
cssnano-preset-default - Copyright (c) Ben Briggs <[email protected]> (http://beneb.info)
cssnano-utils - Copyright (c) Ben Briggs <[email protected]> (http://beneb.info)
csso - Copyright (C) 2015-2021 by Roman Dvornov
- Copyright (C) 2011-2015 by Sergey Kryzhanovsky
cssom - Copyright (c) Nikita Vasilyev
cssstyle - Copyright (c) Chad Walker
csstype - Copyright (c) 2017-2018 Fredrik Nicol
data-urls - Copyright © Domenic Denicola <[email protected]>
data-view-buffer - Copyright (c) 2023 Jordan Harband
data-view-byte-length - Copyright (c) 2024 Jordan Harband
data-view-byte-offset - Copyright (c) 2024 Jordan Harband
date-fns - Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org
debounce Coprighht (c) Jeremy Ashkenas, Julian Gonggrijp, DocumentCloud, Investigative Reporters & Editors
- Copyright (c) Ben Carpenter, Billy Moon, Josh Goldberg, Julian Gruber, Kristofer Selbekk, Matthew Mueller, Nathan Rajlich, Oleg Pudeyev, Stephen Mathieson, TJ Holowaychuk, suhaotian, ven
- Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
debug - Copyright (c) 2014-2017 TJ Holowaychuk <[email protected]>
- Copyright (c) 2018-2021 Josh Junon
debug - Copyright (c) 2014-2017 TJ Holowaychuk <[email protected]> - Copyright (c) 2018-2021 Josh Junon
debuglog - Copyright Joyent, Inc. and other Node contributors. All rights reserved.
decamelize - Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
decimal.js - Copyright (c) 2022 Michael Mclaughlin