This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
9098 lines (8163 loc) · 313 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@axe-core/cli@npm:^4.3.1":
version: 4.3.1
resolution: "@axe-core/cli@npm:4.3.1"
dependencies:
"@axe-core/webdriverjs": "npm:^4.3.1"
axe-core: "npm:^4.3.3"
chromedriver: "npm:^93.0.1"
colors: "npm:^1.4.0"
commander: "npm:^7.1.0"
selenium-webdriver: "npm:^4.0.0-beta.4"
bin:
axe: dist/src/bin/cli.js
checksum: 562ee4805e2e948deba57020bc022e06cb28d138c247e50021ede545e3af7d74b7606b72d51dfaa82d6f9979c011ad4b3367247f239cc4586eb0e56babf02570
languageName: node
linkType: hard
"@axe-core/webdriverjs@npm:^4.3.1":
version: 4.3.1
resolution: "@axe-core/webdriverjs@npm:4.3.1"
dependencies:
axe-core: "npm:^4.3.3"
peerDependencies:
selenium-webdriver: ">3.0.0-beta || >=2.53.1 || >4.0.0-alpha"
checksum: f03b0e03a69a2c49fa244bea131a129ccb764356eaad9d0a0c691b5dc8ace51df742e068f3a4fc0ebb8276ccdadee2abb7e193755bbaec114c6832206340e7e7
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11, @babel/code-frame@npm:^7.0.0":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 6dd398ce8d7981f78236c1d02878b32f9d4ab953bcc6bae3fa472370f61c4f45a2db188ea5560e3615d8bdd44c1c69bb3c21997a19d57607183f864e73539946
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/compat-data@npm:7.15.0"
checksum: 2b709dddd224be81b9ab2bd8b5b218e5b94ce7678fc04144c98bd0a769df2ee13738ea5f639d585d3847897e208e03e919750fa6b208c32bfeba5f9fe67cec9c
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.7.2, @babel/core@npm:^7.7.5":
version: 7.15.5
resolution: "@babel/core@npm:7.15.5"
dependencies:
"@babel/code-frame": "npm:^7.14.5"
"@babel/generator": "npm:^7.15.4"
"@babel/helper-compilation-targets": "npm:^7.15.4"
"@babel/helper-module-transforms": "npm:^7.15.4"
"@babel/helpers": "npm:^7.15.4"
"@babel/parser": "npm:^7.15.5"
"@babel/template": "npm:^7.15.4"
"@babel/traverse": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.1.2"
semver: "npm:^6.3.0"
source-map: "npm:^0.5.0"
checksum: 2b623de262dbe391bb706484edf81cc5d65e3c669a639219b0790b7ad6756535b309749cc71f5ccda7a175761c7c6a63f2549c45cb94228ef8fad8d9a02e870c
languageName: node
linkType: hard
"@babel/generator@npm:^7.15.4, @babel/generator@npm:^7.7.2":
version: 7.15.4
resolution: "@babel/generator@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 058b0a6c8cac0fe8a3c523c3e374ebccda2bf05eea7f16fbcdfd7509df2ee6f9eb31cec3e907b119c93da772b8c3905e79aadd36817a609d4a83cc5c9c64f8d0
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-compilation-targets@npm:7.15.4"
dependencies:
"@babel/compat-data": "npm:^7.15.0"
"@babel/helper-validator-option": "npm:^7.14.5"
browserslist: "npm:^4.16.6"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 204fd2a957ba92b1963aa49b5a1ae001348c9bbe79a66c04642d946fa061647f8099a2ab49b3b68c65907f883b6851b780e126ff611cb813608c47a16064fc05
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-function-name@npm:7.15.4"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.15.4"
"@babel/template": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
checksum: 1178ca22828a9b3c905ee28235a7ad9da2417e514cfce0bb87ebbcfb18c10fe39e63f08896bb409a4218ec887c7280749cb6a3eece9e8ef86335707682db70bc
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-get-function-arity@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: 320ae961ce693993913553bc6645c98c12b3aa14fdd805ee8cc2f5f47ae19fde7c1ba0a889501e99196a20a930d3b3a8eb016222b148b2029dc9c5d15748a7c1
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-hoist-variables@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: 933a923e4d7ed587b60793d7335c9ed3b531c2e978475c25ad9c44c3ccca382caa6820f1b6331af5c1bd0746edeed5fdd1b0df3144c7566ec0ca90506f89d03e
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-member-expression-to-functions@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: 529f26af314fa20b0ae60006a803253ef2924b4320ebebf42d80fa1aa8bd958367526eb3d28b8c62875e46bef0bdae14bdc249c457283c53ce0e4193aa132317
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-module-imports@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: cb4721068f9e63c3031835927c93a7adf9b496391cef0a312f50ce2abb79934a45fe2da2196c541b0bb16ce47e5a9c5e5c535f042381b6852188caa442bfb3aa
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.15.4":
version: 7.15.7
resolution: "@babel/helper-module-transforms@npm:7.15.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.15.4"
"@babel/helper-replace-supers": "npm:^7.15.4"
"@babel/helper-simple-access": "npm:^7.15.4"
"@babel/helper-split-export-declaration": "npm:^7.15.4"
"@babel/helper-validator-identifier": "npm:^7.15.7"
"@babel/template": "npm:^7.15.4"
"@babel/traverse": "npm:^7.15.4"
"@babel/types": "npm:^7.15.6"
checksum: 7c083aaa544d6eaf45f6361c78ba4a76fa1723ab279b77a9c8cbf8b6512e7ba8b495f5f6f5ad5fc57e7a2267b4e887bce4766a4590af0a0bc5cf98105ff1bcb9
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-optimise-call-expression@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: fd89ea4b8280768740f4ba0ad6f163d2f05a037fc103707c0b370e69661bb329166905caa1150379472cd8515ebd5812aa04f307d7324a0319e289aae30ba55e
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: de33dc7c7b4b334f87a78c6ad2cbab3e25eaef07edcc7941bc03907eed12833fa222890bb3fe83968b108d90898946756caec42d8a51ac3783c77299736de977
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-replace-supers@npm:7.15.4"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.15.4"
"@babel/helper-optimise-call-expression": "npm:^7.15.4"
"@babel/traverse": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
checksum: ad71403452c318d57d5d38bcc05fdf934c3f5925eb50c2cf60ea79e526142b4bd19f3577b317977d98b0fcefd38283f8ee537ca28f60264089285bc0a541ce88
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-simple-access@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: 02b9048a1bc0b844593d44e2bbed6ddecae64dbc80797336bc4ea8376a0b8222933bdead5bd7b8c03a535553f12a1c9e54c1531209db4c2ce7543006e19f841c
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-split-export-declaration@npm:7.15.4"
dependencies:
"@babel/types": "npm:^7.15.4"
checksum: 95acba111c9e77a703b460ec03047bcbc86bfe88be3e2209f8fb19b48e6a05270e341aa344fac49a2b23a42701dc6d892313a8a7a98a6ae46f31d7d612938f33
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: f348d5637ad70b6b54b026d6544bd9040f78d24e7ec245a0fc42293968181f6ae9879c22d89744730d246ce8ec53588f716f102addd4df8bbc79b73ea10004ac
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: bedd645277d08780797b7a190d945e2f5641de7b764040fec79b1d0ba5d8398e5ab747c2218314632a56f992012ad4a0de55eb6de788fa14a8e16eff7ea31319
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.15.7":
version: 7.15.7
resolution: "@babel/helper-validator-identifier@npm:7.15.7"
checksum: 398bbf808232073504426d08fa6a5ee7b70a41eda3c7a02115d9f879fbd89c057bef27e8013df2084d59eed43587dac91c915074fa8385544fae0caf03791c2b
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-option@npm:7.14.5"
checksum: 9cb2d6c72e73459abfccc7ed42bb1055ce4ca4aba9754edbad694f7f47d0dee940382f51b5f19bb16f1d69b6c32fc734bea9a5654a8f98da09d6be9641b02029
languageName: node
linkType: hard
"@babel/helpers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helpers@npm:7.15.4"
dependencies:
"@babel/template": "npm:^7.15.4"
"@babel/traverse": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
checksum: 92756ac9a0bee4700be560015d6e2ee17a373df99f212a87c5145c4af648fbca3ec7be7e8cfdff3707f7d7a4cfdefa62000c1a5e2accb44da81bfe7e1dd42ae7
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: b9d16895e4bf780d69504c7cc8a9871dc668bcd1851c4a7a7f039f34ba5bb1f04efc4ad6b79112496c7896d541a4d38efa02e7d8be8fb0a1f352097cff8ba79d
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.15.4, @babel/parser@npm:^7.15.5, @babel/parser@npm:^7.7.0, @babel/parser@npm:^7.7.2":
version: 7.15.5
resolution: "@babel/parser@npm:7.15.5"
bin:
parser: ./bin/babel-parser.js
checksum: 69c8f38246d6530421a24f0bbed6fc5c9482316d8b322a8687af13ba7aaba2f42fa8b67375c71aa7f0e084f60f3338ec5ac4ed4c818a65e00ff29bd59cde1ede
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.14.5
resolution: "@babel/plugin-syntax-typescript@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8aab66fad457918bb35dcd5cc1bd9251b48ab1abb226c07fa05a8873f6973845d331e3f215341d03ca856c50b13511242af915d07b89f399d4424208bc7dfd68
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.10.2":
version: 7.15.4
resolution: "@babel/runtime-corejs3@npm:7.15.4"
dependencies:
core-js-pure: "npm:^3.16.0"
regenerator-runtime: "npm:^0.13.4"
checksum: 3b86b5c3aaf3c4d0211caf5adbb630ab3be05523adf2ece75b13911524b102ebf87107f95e5d39c3ee69ce8e727c479b9f0b96c492c59c93ccf2283523126ffe
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.11.2":
version: 7.15.4
resolution: "@babel/runtime@npm:7.15.4"
dependencies:
regenerator-runtime: "npm:^0.13.4"
checksum: 2e366347254c9d3e738641d88a086cdfb1de516111e50ebbe9e6b5d8ed78d41819cf991fc0804fa50e04ae7a2157cc28ef3b4180781af5fecfe65310d7ebf301
languageName: node
linkType: hard
"@babel/template@npm:^7.15.4, @babel/template@npm:^7.3.3":
version: 7.15.4
resolution: "@babel/template@npm:7.15.4"
dependencies:
"@babel/code-frame": "npm:^7.14.5"
"@babel/parser": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
checksum: 4ce66d750f3075350a89d998433f1815230469e169398652d0964774ab9b568655afd592f14f9da2e430d173c59fdf9c6a5d26e385fc1dae7e69a88faeae56fe
languageName: node
linkType: hard
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.15.4, @babel/traverse@npm:^7.7.0, @babel/traverse@npm:^7.7.2":
version: 7.15.4
resolution: "@babel/traverse@npm:7.15.4"
dependencies:
"@babel/code-frame": "npm:^7.14.5"
"@babel/generator": "npm:^7.15.4"
"@babel/helper-function-name": "npm:^7.15.4"
"@babel/helper-hoist-variables": "npm:^7.15.4"
"@babel/helper-split-export-declaration": "npm:^7.15.4"
"@babel/parser": "npm:^7.15.4"
"@babel/types": "npm:^7.15.4"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 7ce19ed6bef46743c7b8e8362c5d6f63729f15d624a7eb4c044eae24b1c0b1e4a50528240c86f07c53738cf694cc826c7e0f888737412638ce8506b06d724add
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.7.0":
version: 7.15.0
resolution: "@babel/types@npm:7.15.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.9"
to-fast-properties: "npm:^2.0.0"
checksum: 94e8f9eae94296f16cb0fbb9697b51e84c14649cb48c9a1a671f17a2456b625232e97febf509567670e260bd44c7e2c00cb37df6b96f1883717fecc0796bc90a
languageName: node
linkType: hard
"@babel/types@npm:^7.15.4, @babel/types@npm:^7.15.6":
version: 7.15.6
resolution: "@babel/types@npm:7.15.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.9"
to-fast-properties: "npm:^2.0.0"
checksum: f927d6e1001b3a12c3fa983a22f874cae0ab299f5c9814ccc1875564ef1fd64cc782da2652ba3ca62bfee5c055f00d7ee7492f2b83ee0e0a908e95f4ebe7c927
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.23.6
resolution: "@babel/types@npm:7.23.6"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 42cefce8a68bd09bb5828b4764aa5586c53c60128ac2ac012e23858e1c179347a4aac9c66fc577994fbf57595227611c5ec8270bf0cfc94ff033bbfac0550b70
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.1.1"
espree: "npm:^7.3.0"
globals: "npm:^13.9.0"
ignore: "npm:^4.0.6"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^3.13.1"
minimatch: "npm:^3.0.4"
strip-json-comments: "npm:^3.1.1"
checksum: 0eed93369f72ef044686d07824742121f9b95153ff34f4614e4e69d64332ee68c84eb70da851a9005bb76b3d1d64ad76c2e6293a808edc0f7dfb883689ca136d
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.0"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.4"
checksum: 217fac9e03492361825a2bf761d4bb7ec6d10002a10f7314142245eb13ac9d123523d24d5619c3c4159af215c7b3e583ed386108e227014bef4efbf9caca8ccc
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.0
resolution: "@humanwhocodes/object-schema@npm:1.2.0"
checksum: 2129b319392f3c72fbebe6a1b657039ef40b7a51b9ee532fac5bbd05421b456302a64c78778d8cb5384aa8fad7e5cf179ceee7608d81b3d6876e394c25cfe996
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@istanbuljs/load-nyc-config@npm:^1.0.0":
version: 1.1.0
resolution: "@istanbuljs/load-nyc-config@npm:1.1.0"
dependencies:
camelcase: "npm:^5.3.1"
find-up: "npm:^4.1.0"
get-package-type: "npm:^0.1.0"
js-yaml: "npm:^3.13.1"
resolve-from: "npm:^5.0.0"
checksum: dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a
languageName: node
linkType: hard
"@jest/console@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/console@npm:27.1.0"
dependencies:
"@jest/types": "npm:^27.1.0"
"@types/node": "npm:*"
chalk: "npm:^4.0.0"
jest-message-util: "npm:^27.1.0"
jest-util: "npm:^27.1.0"
slash: "npm:^3.0.0"
checksum: 66177c6db13f18f5d7a1f2c8d66fbf4a8479af21941db9e3f3f32147b75623af9b9c97ba66d27c5bc74ae62e7ccb21d3c4bf46088e2dbb06de2eb5e468f961e6
languageName: node
linkType: hard
"@jest/core@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/core@npm:27.1.0"
dependencies:
"@jest/console": "npm:^27.1.0"
"@jest/reporters": "npm:^27.1.0"
"@jest/test-result": "npm:^27.1.0"
"@jest/transform": "npm:^27.1.0"
"@jest/types": "npm:^27.1.0"
"@types/node": "npm:*"
ansi-escapes: "npm:^4.2.1"
chalk: "npm:^4.0.0"
emittery: "npm:^0.8.1"
exit: "npm:^0.1.2"
graceful-fs: "npm:^4.2.4"
jest-changed-files: "npm:^27.1.0"
jest-config: "npm:^27.1.0"
jest-haste-map: "npm:^27.1.0"
jest-message-util: "npm:^27.1.0"
jest-regex-util: "npm:^27.0.6"
jest-resolve: "npm:^27.1.0"
jest-resolve-dependencies: "npm:^27.1.0"
jest-runner: "npm:^27.1.0"
jest-runtime: "npm:^27.1.0"
jest-snapshot: "npm:^27.1.0"
jest-util: "npm:^27.1.0"
jest-validate: "npm:^27.1.0"
jest-watcher: "npm:^27.1.0"
micromatch: "npm:^4.0.4"
p-each-series: "npm:^2.1.0"
rimraf: "npm:^3.0.0"
slash: "npm:^3.0.0"
strip-ansi: "npm:^6.0.0"
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
checksum: 72d9371636072fbd8739b6a7ca49018285f95461d559fb371398b5513b183c787114e53e169eb9359b6610f6468d5e573fe5d268b144f9d99ced6563a9ba54ba
languageName: node
linkType: hard
"@jest/environment@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/environment@npm:27.1.0"
dependencies:
"@jest/fake-timers": "npm:^27.1.0"
"@jest/types": "npm:^27.1.0"
"@types/node": "npm:*"
jest-mock: "npm:^27.1.0"
checksum: 4fac97b9e202965ccc9ab66722eeedd556dc6f4c1425e723ad299d509a8837d1ba82375f2f72c4febe8bdb0218bd90f630dbf48de9d3fdd99ed851841caecf4b
languageName: node
linkType: hard
"@jest/fake-timers@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/fake-timers@npm:27.1.0"
dependencies:
"@jest/types": "npm:^27.1.0"
"@sinonjs/fake-timers": "npm:^7.0.2"
"@types/node": "npm:*"
jest-message-util: "npm:^27.1.0"
jest-mock: "npm:^27.1.0"
jest-util: "npm:^27.1.0"
checksum: fa96a15d45e2766baaebdb1dc4e56d5fd411f0d6efad53434cdf3923823eb71ab62d42f4fac88f5c389e9fa449ad6b9d308c4cf9df71a8e2896e7de569a2e98a
languageName: node
linkType: hard
"@jest/globals@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/globals@npm:27.1.0"
dependencies:
"@jest/environment": "npm:^27.1.0"
"@jest/types": "npm:^27.1.0"
expect: "npm:^27.1.0"
checksum: 6a5c6631e845b72fb6962fde67e53400a224cc6e205cee4fa97ec0b2683f0592cd5329f6d22d69f2566a0fca2c42ddf7acf15fd156f23b669392b5b30719f8e5
languageName: node
linkType: hard
"@jest/reporters@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/reporters@npm:27.1.0"
dependencies:
"@bcoe/v8-coverage": "npm:^0.2.3"
"@jest/console": "npm:^27.1.0"
"@jest/test-result": "npm:^27.1.0"
"@jest/transform": "npm:^27.1.0"
"@jest/types": "npm:^27.1.0"
chalk: "npm:^4.0.0"
collect-v8-coverage: "npm:^1.0.0"
exit: "npm:^0.1.2"
glob: "npm:^7.1.2"
graceful-fs: "npm:^4.2.4"
istanbul-lib-coverage: "npm:^3.0.0"
istanbul-lib-instrument: "npm:^4.0.3"
istanbul-lib-report: "npm:^3.0.0"
istanbul-lib-source-maps: "npm:^4.0.0"
istanbul-reports: "npm:^3.0.2"
jest-haste-map: "npm:^27.1.0"
jest-resolve: "npm:^27.1.0"
jest-util: "npm:^27.1.0"
jest-worker: "npm:^27.1.0"
slash: "npm:^3.0.0"
source-map: "npm:^0.6.0"
string-length: "npm:^4.0.1"
terminal-link: "npm:^2.0.0"
v8-to-istanbul: "npm:^8.0.0"
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
checksum: cfe11ad402be93f242eabb4fb48f6c69849498157c5d31ba8bb94d09bde0b73cf9da490da629ec2871d6b36d2e19bb83caed1d8b1add3b51e5e632858ffee894
languageName: node
linkType: hard
"@jest/source-map@npm:^27.0.6":
version: 27.0.6
resolution: "@jest/source-map@npm:27.0.6"
dependencies:
callsites: "npm:^3.0.0"
graceful-fs: "npm:^4.2.4"
source-map: "npm:^0.6.0"
checksum: d4a549c641bacb9ab57f5ebd3347258478e5daa5014831133e1f1535ba71a1a0ae06b29c6e4d7f3cd670063c9d8ef9c27b5a83f0b50763d51dbf0e24caf7dad3
languageName: node
linkType: hard
"@jest/test-result@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/test-result@npm:27.1.0"
dependencies:
"@jest/console": "npm:^27.1.0"
"@jest/types": "npm:^27.1.0"
"@types/istanbul-lib-coverage": "npm:^2.0.0"
collect-v8-coverage: "npm:^1.0.0"
checksum: c29ec4efaa626f39b66ad0cc70d96280a4b0f7affb1d4f4ea49c0a8528035fff9224e5e42200ab32d4af36a17afe04d3af3ce1ac7877ce97758f65501f22530f
languageName: node
linkType: hard
"@jest/test-sequencer@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/test-sequencer@npm:27.1.0"
dependencies:
"@jest/test-result": "npm:^27.1.0"
graceful-fs: "npm:^4.2.4"
jest-haste-map: "npm:^27.1.0"
jest-runtime: "npm:^27.1.0"
checksum: 53ee441efd4814dcf9d53a55201ad8ed04ed2f18624906e1539d5b090305111f30dbee2ed060723580078bda11477774d7fe7403b5036a02ac94878bf4d21e6d
languageName: node
linkType: hard
"@jest/transform@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/transform@npm:27.1.0"
dependencies:
"@babel/core": "npm:^7.1.0"
"@jest/types": "npm:^27.1.0"
babel-plugin-istanbul: "npm:^6.0.0"
chalk: "npm:^4.0.0"
convert-source-map: "npm:^1.4.0"
fast-json-stable-stringify: "npm:^2.0.0"
graceful-fs: "npm:^4.2.4"
jest-haste-map: "npm:^27.1.0"
jest-regex-util: "npm:^27.0.6"
jest-util: "npm:^27.1.0"
micromatch: "npm:^4.0.4"
pirates: "npm:^4.0.1"
slash: "npm:^3.0.0"
source-map: "npm:^0.6.1"
write-file-atomic: "npm:^3.0.0"
checksum: 234a388d98f72a9d26926d6c728c31e52efa6abc50b532d613363cb6955b79491bd48c21bbbf0b0a41337f6e3968251992554cbe47c315509112daa0bf007881
languageName: node
linkType: hard
"@jest/types@npm:^27.1.0":
version: 27.1.0
resolution: "@jest/types@npm:27.1.0"
dependencies:
"@types/istanbul-lib-coverage": "npm:^2.0.0"
"@types/istanbul-reports": "npm:^3.0.0"
"@types/node": "npm:*"
"@types/yargs": "npm:^16.0.0"
chalk: "npm:^4.0.0"
checksum: 0dcc26e4589d9f8981320f7d2bd3dae7f195a45dd0e376ec5255caec385bda6e25e0beea585192ea6c064cd5f78321055ef6577dc5f13c09d17385ffc70a2c5f
languageName: node
linkType: hard
"@next/env@npm:12.1.6":
version: 12.1.6
resolution: "@next/env@npm:12.1.6"
checksum: b4a012eb32d863122a943060bcdbed932a1e0966b1a58350cd3f5aa65686534cd870a61e3eb6abbf848bc1b6b1a924a4908e35a511d173c2d506c2cedbcd96a7
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:11.1.2":
version: 11.1.2
resolution: "@next/eslint-plugin-next@npm:11.1.2"
dependencies:
glob: "npm:7.1.7"
checksum: 13bb4784966bbad60b6873a59000d2aa26746931a0d58a5dcbab394f6f36000f82248a499ec08b1dbfda67f72988750a33efbcecffd6f456e35065c5afa94c0d
languageName: node
linkType: hard
"@next/swc-android-arm-eabi@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-android-arm-eabi@npm:12.1.6"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@next/swc-android-arm64@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-android-arm64@npm:12.1.6"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-darwin-arm64@npm:12.1.6"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-darwin-x64@npm:12.1.6"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm-gnueabihf@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-linux-arm-gnueabihf@npm:12.1.6"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-linux-arm64-gnu@npm:12.1.6"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-linux-arm64-musl@npm:12.1.6"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-linux-x64-gnu@npm:12.1.6"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-linux-x64-musl@npm:12.1.6"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-win32-arm64-msvc@npm:12.1.6"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-ia32-msvc@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-win32-ia32-msvc@npm:12.1.6"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:12.1.6":
version: 12.1.6
resolution: "@next/swc-win32-x64-msvc@npm:12.1.6"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@notionhq/client@npm:^1.0.4":
version: 1.0.4
resolution: "@notionhq/client@npm:1.0.4"
dependencies:
"@types/node-fetch": "npm:^2.5.10"
node-fetch: "npm:^2.6.1"
checksum: ec9b2389537f0ae79c1e55d12bce1798924976b89bcf8d793ffc4f6914f230a07eec34f4053e086aa5c5fa7800cf4f57f5047cf0ceca6de730cebb0b9d32b000
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.1"
checksum: 7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@rushstack/eslint-patch@npm:^1.0.6":
version: 1.0.6
resolution: "@rushstack/eslint-patch@npm:1.0.6"
checksum: dc5cbb9658e7bc3a13cee41fc63df704ff3d041df30d392fe4c9fe56632b51d00d09cf432b989f14b200e9760a68639a199bc9893a1052ee5901413501992d20
languageName: node
linkType: hard
"@sinonjs/commons@npm:^1.7.0":
version: 1.8.3
resolution: "@sinonjs/commons@npm:1.8.3"
dependencies:
type-detect: "npm:4.0.8"
checksum: e4d2471feb19f735654f798fcdf389b90fab5913da609f566b04c4cdd9131a97e897d565251d35389aeebcca70a22ab4ed2291c7f7927706ead12e4f94841bf1
languageName: node
linkType: hard
"@sinonjs/fake-timers@npm:^7.0.2":
version: 7.1.2
resolution: "@sinonjs/fake-timers@npm:7.1.2"
dependencies:
"@sinonjs/commons": "npm:^1.7.0"
checksum: c94de47ff2eceb2a7009c970f932509e81e474b555ea994343aea4c87aed26844ba298a70d585c0769e63fe379ebae6aaad61d37b3bca71f740a8d3d49f1bc27
languageName: node
linkType: hard
"@testim/chrome-version@npm:^1.0.7":
version: 1.0.7
resolution: "@testim/chrome-version@npm:1.0.7"
checksum: 7bc95b02fc4b509fed8a9cad644e948eb60bca6a9934e7c8b2cf8c668f7c635743f8efc34cefceaa92954d2544644237aa9fb55bbfc4e04ac6a985cde6aab8bd
languageName: node
linkType: hard
"@tootallnate/once@npm:1":
version: 1.1.2
resolution: "@tootallnate/once@npm:1.1.2"
checksum: 8fe4d006e90422883a4fa9339dd05a83ff626806262e1710cee5758d493e8cbddf2db81c0e4690636dc840b02c9fda62877866ea774ebd07c1777ed5fafbdec6
languageName: node
linkType: hard
"@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.14":
version: 7.1.16
resolution: "@types/babel__core@npm:7.1.16"
dependencies:
"@babel/parser": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
"@types/babel__generator": "npm:*"
"@types/babel__template": "npm:*"
"@types/babel__traverse": "npm:*"
checksum: de44ce9b785a299856a31c6119d26a82f02b480a9d4d2cc29a849183b410389d6ff8ce16e9dfc4dcf8862d488ec60d9b10e1004fe315d14972e50ca5b23e9b99
languageName: node
linkType: hard
"@types/babel__generator@npm:*":
version: 7.6.3