-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathyarn.lock
8226 lines (7390 loc) · 281 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
"@appium/base-driver@npm:^9.0.0, @appium/base-driver@npm:^9.1.0, @appium/base-driver@npm:^9.12.1":
version: 9.12.1
resolution: "@appium/base-driver@npm:9.12.1"
dependencies:
"@appium/support": "npm:^5.1.6"
"@appium/types": "npm:^0.22.0"
"@colors/colors": "npm:1.6.0"
"@types/async-lock": "npm:1.4.2"
"@types/bluebird": "npm:3.5.42"
"@types/express": "npm:5.0.0"
"@types/lodash": "npm:4.17.12"
"@types/method-override": "npm:0.0.35"
"@types/serve-favicon": "npm:2.5.7"
async-lock: "npm:1.4.1"
asyncbox: "npm:3.0.0"
axios: "npm:1.7.7"
bluebird: "npm:3.7.2"
body-parser: "npm:1.20.3"
express: "npm:4.21.1"
http-status-codes: "npm:2.3.0"
lodash: "npm:4.17.21"
lru-cache: "npm:10.4.3"
method-override: "npm:3.0.0"
morgan: "npm:1.10.0"
path-to-regexp: "npm:8.2.0"
serve-favicon: "npm:2.5.0"
source-map-support: "npm:0.5.21"
spdy: "npm:4.0.2"
type-fest: "npm:4.26.1"
validate.js: "npm:0.13.1"
dependenciesMeta:
spdy:
optional: true
checksum: ea334b8d5cc31e52f4512e95217f1c7aec19e1bbb477c60ee59dab8cd05d1daab018d6520c6798bfe676cee4ebb942e70d8dc1e8beb004dec79e4cb5a5a1b886
languageName: node
linkType: hard
"@appium/base-plugin@npm:^2.2.47":
version: 2.2.47
resolution: "@appium/base-plugin@npm:2.2.47"
dependencies:
"@appium/base-driver": "npm:^9.12.1"
"@appium/support": "npm:^5.1.6"
checksum: 8a6e542f167b7f68d64d3b12574095a639229f8f5fd15fd3877555cade82eb57040b5a79c9e82af593f10ba21eefbe00728583695709491d576f42ed04f0a42a
languageName: node
linkType: hard
"@appium/docutils@npm:^1.0.23":
version: 1.0.23
resolution: "@appium/docutils@npm:1.0.23"
dependencies:
"@appium/support": "npm:^5.1.6"
"@appium/tsconfig": "npm:^0.3.3"
"@sliphua/lilconfig-ts-loader": "npm:3.2.2"
"@types/which": "npm:3.0.4"
chalk: "npm:4.1.2"
consola: "npm:3.2.3"
diff: "npm:7.0.0"
json5: "npm:2.2.3"
lilconfig: "npm:3.1.2"
lodash: "npm:4.17.21"
pkg-dir: "npm:5.0.0"
read-pkg: "npm:5.2.0"
semver: "npm:7.6.3"
source-map-support: "npm:0.5.21"
teen_process: "npm:2.2.0"
type-fest: "npm:4.26.1"
typescript: "npm:5.6.3"
yaml: "npm:2.6.0"
yargs: "npm:17.7.2"
yargs-parser: "npm:21.1.1"
bin:
appium-docs: ./bin/appium-docs.js
checksum: 63c1f08f032b6320a4c4af4e2d5af0d4b858422dad9403cf431974ac482f6465fd1492138a7ec2de3435e56dbccb939ff898d919f0c6fb2ac5e85ecf063ffa3c
languageName: node
linkType: hard
"@appium/execute-driver-plugin@npm:^3.0.1":
version: 3.0.36
resolution: "@appium/execute-driver-plugin@npm:3.0.36"
dependencies:
"@types/bluebird": "npm:3.5.42"
bluebird: "npm:3.7.2"
lodash: "npm:4.17.21"
source-map-support: "npm:0.5.21"
webdriverio: "npm:8.40.6"
peerDependencies:
appium: ^2.0.0-beta.35
checksum: e7d9d4eed4b4ff0085e9f44166c627b5c2dfcd47b04e43bcb4f20597bb2c2383320a82f04d21e2b1eb15d48a4d913f8ccd1b5e3ecfd3a5905dd17b7c6a301629
languageName: node
linkType: hard
"@appium/images-plugin@npm:^3.0.17":
version: 3.0.21
resolution: "@appium/images-plugin@npm:3.0.21"
dependencies:
"@appium/opencv": "npm:^3.0.6"
"@appium/support": "npm:^5.1.6"
lodash: "npm:4.17.21"
lru-cache: "npm:10.4.3"
sharp: "npm:0.33.5"
source-map-support: "npm:0.5.21"
peerDependencies:
appium: ^2.0.0
checksum: d9356a0769b8b8bf9e54934b63449e6ca50fe69b1ea2d23c99fa78a1d0bd792c81845209bc10c8d6e2604450b894ecd58f8a0e1e57cfdda08f50833e27c6f231
languageName: node
linkType: hard
"@appium/logger@npm:^1.3.0, @appium/logger@npm:^1.6.0, @appium/logger@npm:^1.6.1":
version: 1.6.1
resolution: "@appium/logger@npm:1.6.1"
dependencies:
console-control-strings: "npm:1.1.0"
lodash: "npm:4.17.21"
lru-cache: "npm:10.4.3"
set-blocking: "npm:2.0.0"
checksum: 9b7f0bc45ed42f48aa52366f4349ebf074302b3a738375153374991e152a9a53f605dd5609b4924a2a035be85a74cc7d0b2285f610e8d38d34d2432b4d76252e
languageName: node
linkType: hard
"@appium/opencv@npm:^3.0.6":
version: 3.0.6
resolution: "@appium/opencv@npm:3.0.6"
dependencies:
"@types/bluebird": "npm:3.5.42"
bluebird: "npm:3.7.2"
lodash: "npm:4.17.21"
opencv-bindings: "npm:4.5.5"
sharp: "npm:0.33.5"
source-map-support: "npm:0.5.21"
checksum: b114874b22461543af106da468b24f0292abd47c58c4dddd67e57279e83a7407d27938db1718059034d8aa5b6bf2cff46f6a6023eb883b93bfbbd742847393d1
languageName: node
linkType: hard
"@appium/schema@npm:^0.6.1":
version: 0.6.1
resolution: "@appium/schema@npm:0.6.1"
dependencies:
"@types/json-schema": "npm:7.0.15"
json-schema: "npm:0.4.0"
source-map-support: "npm:0.5.21"
checksum: aca313d5f02f70b05bdb4945f72feeed7d2eff6ff0d84f1bd83e0b96e8f70fbc0f22578e0bafbe4f7a4fbc69565285eb31ff0c91feccd8298cb9563f11b1cf7e
languageName: node
linkType: hard
"@appium/schema@npm:^0.7.0":
version: 0.7.0
resolution: "@appium/schema@npm:0.7.0"
dependencies:
"@types/json-schema": "npm:7.0.15"
json-schema: "npm:0.4.0"
source-map-support: "npm:0.5.21"
checksum: 8f8fca50f0a7004e91b69f7ef750f56eca3a61245954d56200a0af398e5fb408ba7409aaedb519335d21c0bf201d09fd38b8dbbe32f3a8f65b92f2da61e39559
languageName: node
linkType: hard
"@appium/strongbox@npm:^0.x":
version: 0.3.3
resolution: "@appium/strongbox@npm:0.3.3"
dependencies:
env-paths: "npm:2.2.1"
slugify: "npm:1.6.6"
checksum: 84d1a3081ced2bd5b4a0e53c0f745bd47e2a7cbe111d9058efb0ecb7ee864744d12d607b52307935014762d6bd63a826c5c83c3d1e053dc55f5c366100794493
languageName: node
linkType: hard
"@appium/support@npm:5.1.2":
version: 5.1.2
resolution: "@appium/support@npm:5.1.2"
dependencies:
"@appium/logger": "npm:^1.6.0"
"@appium/tsconfig": "npm:^0.3.3"
"@appium/types": "npm:^0.21.1"
"@colors/colors": "npm:1.6.0"
"@types/archiver": "npm:6.0.2"
"@types/base64-stream": "npm:1.0.5"
"@types/find-root": "npm:1.1.4"
"@types/jsftp": "npm:2.1.5"
"@types/klaw": "npm:3.0.6"
"@types/lockfile": "npm:1.0.4"
"@types/mv": "npm:2.1.4"
"@types/ncp": "npm:2.0.8"
"@types/pluralize": "npm:0.0.33"
"@types/semver": "npm:7.5.8"
"@types/shell-quote": "npm:1.7.5"
"@types/supports-color": "npm:8.1.3"
"@types/teen_process": "npm:2.0.4"
"@types/uuid": "npm:10.0.0"
"@types/which": "npm:3.0.4"
archiver: "npm:7.0.1"
axios: "npm:1.7.2"
base64-stream: "npm:1.0.0"
bluebird: "npm:3.7.2"
bplist-creator: "npm:0.1.1"
bplist-parser: "npm:0.3.2"
form-data: "npm:4.0.0"
get-stream: "npm:6.0.1"
glob: "npm:10.4.2"
jsftp: "npm:2.1.3"
klaw: "npm:4.1.0"
lockfile: "npm:1.0.4"
lodash: "npm:4.17.21"
log-symbols: "npm:4.1.0"
moment: "npm:2.30.1"
mv: "npm:2.1.1"
ncp: "npm:2.0.0"
opencv-bindings: "npm:4.5.5"
pkg-dir: "npm:5.0.0"
plist: "npm:3.1.0"
pluralize: "npm:8.0.0"
read-pkg: "npm:5.2.0"
resolve-from: "npm:5.0.0"
sanitize-filename: "npm:1.6.3"
semver: "npm:7.6.2"
sharp: "npm:0.33.4"
shell-quote: "npm:1.8.1"
source-map-support: "npm:0.5.21"
supports-color: "npm:8.1.1"
teen_process: "npm:2.2.0"
type-fest: "npm:4.21.0"
uuid: "npm:10.0.0"
which: "npm:4.0.0"
yauzl: "npm:3.1.3"
dependenciesMeta:
sharp:
optional: true
checksum: ba63f4293bbbd9d17ffa0863f9a3c3dceb2e528815cdb869754001f66ee40d9a0e2652106f240d9fc0d1ffc5bbf71400c729fe4612173bb43d9074d82f221a34
languageName: node
linkType: hard
"@appium/support@patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch":
version: 5.1.2
resolution: "@appium/support@patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch::version=5.1.2&hash=33056c"
dependencies:
"@appium/logger": "npm:^1.6.0"
"@appium/tsconfig": "npm:^0.3.3"
"@appium/types": "npm:^0.21.1"
"@colors/colors": "npm:1.6.0"
"@types/archiver": "npm:6.0.2"
"@types/base64-stream": "npm:1.0.5"
"@types/find-root": "npm:1.1.4"
"@types/jsftp": "npm:2.1.5"
"@types/klaw": "npm:3.0.6"
"@types/lockfile": "npm:1.0.4"
"@types/mv": "npm:2.1.4"
"@types/ncp": "npm:2.0.8"
"@types/pluralize": "npm:0.0.33"
"@types/semver": "npm:7.5.8"
"@types/shell-quote": "npm:1.7.5"
"@types/supports-color": "npm:8.1.3"
"@types/teen_process": "npm:2.0.4"
"@types/uuid": "npm:10.0.0"
"@types/which": "npm:3.0.4"
archiver: "npm:7.0.1"
axios: "npm:1.7.2"
base64-stream: "npm:1.0.0"
bluebird: "npm:3.7.2"
bplist-creator: "npm:0.1.1"
bplist-parser: "npm:0.3.2"
form-data: "npm:4.0.0"
get-stream: "npm:6.0.1"
glob: "npm:10.4.2"
jsftp: "npm:2.1.3"
klaw: "npm:4.1.0"
lockfile: "npm:1.0.4"
lodash: "npm:4.17.21"
log-symbols: "npm:4.1.0"
moment: "npm:2.30.1"
mv: "npm:2.1.1"
ncp: "npm:2.0.0"
opencv-bindings: "npm:4.5.5"
pkg-dir: "npm:5.0.0"
plist: "npm:3.1.0"
pluralize: "npm:8.0.0"
read-pkg: "npm:5.2.0"
resolve-from: "npm:5.0.0"
sanitize-filename: "npm:1.6.3"
semver: "npm:7.6.2"
sharp: "npm:0.33.4"
shell-quote: "npm:1.8.1"
source-map-support: "npm:0.5.21"
supports-color: "npm:8.1.1"
teen_process: "npm:2.2.0"
type-fest: "npm:4.21.0"
uuid: "npm:10.0.0"
which: "npm:4.0.0"
yauzl: "npm:3.1.3"
dependenciesMeta:
sharp:
optional: true
checksum: 1eeb09c3e3e64a9810556a2c2448c479ab7807ce881b2f4a71fbabfd3241fac1f5c5809901d8744219db6c1877a1f70cfc163f29b969707d9e6f925fe58ee807
languageName: node
linkType: hard
"@appium/tsconfig@npm:^0.3.3":
version: 0.3.3
resolution: "@appium/tsconfig@npm:0.3.3"
dependencies:
"@tsconfig/node14": "npm:14.1.2"
checksum: 42557be0b1b0f8ed80aaa166f6cefda65700260b14bb54cade0a563fdcfa66f330f48a5e72cbf9f13c6231da4861b0b89f6c1a91f738e7df539cc7df52a704fb
languageName: node
linkType: hard
"@appium/types@npm:^0.21.1":
version: 0.21.3
resolution: "@appium/types@npm:0.21.3"
dependencies:
"@appium/logger": "npm:^1.6.1"
"@appium/schema": "npm:^0.6.1"
"@appium/tsconfig": "npm:^0.3.3"
"@types/express": "npm:4.17.21"
"@types/ws": "npm:8.5.12"
type-fest: "npm:4.26.1"
checksum: b6ee23be7392ab3e4f954bb35836ba8ce290a9bcddcfc2f8d54977b39602118824686ee32ccfcf3e45b7a3d7eb5974634a672de94892188db96bab58b583854f
languageName: node
linkType: hard
"@appium/types@npm:^0.22.0":
version: 0.22.0
resolution: "@appium/types@npm:0.22.0"
dependencies:
"@appium/logger": "npm:^1.6.1"
"@appium/schema": "npm:^0.7.0"
"@appium/tsconfig": "npm:^0.3.3"
"@types/express": "npm:5.0.0"
"@types/ws": "npm:8.5.12"
type-fest: "npm:4.26.1"
checksum: d055875af886479ec7728d4c6b9a98f589f96fa152a9dc61573a1d08423fd71e9125197f0d5b1faada2f831587704332737d7990ec6d0abc3b29d15af10c52a3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@colors/colors@npm:1.6.0, @colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 9328a0778a5b0db243af54455b79a69e3fb21122d6c15ef9e9fcc94881d8d17352d8b2b2590f9bdd46fac5c2d6c1636dcfc14358a20c70e22daf89e1a759b629
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: a5133df8492802465ed01f2f0a5784585241a1030c362d54a602ed1839816d6c93d71dde05cf2ddb4fd0796238c19774406bd62fa2564b637907b495f52425fe
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.1, @emnapi/runtime@npm:^1.2.0":
version: 1.3.1
resolution: "@emnapi/runtime@npm:1.3.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.4.0":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.18.0":
version: 0.18.0
resolution: "@eslint/config-array@npm:0.18.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 0234aeb3e6b052ad2402a647d0b4f8a6aa71524bafe1adad0b8db1dfe94d7f5f26d67c80f79bb37ac61361a1d4b14bb8fb475efe501de37263cf55eabb79868f
languageName: node
linkType: hard
"@eslint/core@npm:^0.7.0":
version: 0.7.0
resolution: "@eslint/core@npm:0.7.0"
checksum: 3cdee8bc6cbb96ac6103d3ead42e59830019435839583c9eb352b94ed558bd78e7ffad5286dc710df21ec1e7bd8f52aa6574c62457a4dd0f01f3736fa4a7d87a
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.1.0":
version: 3.1.0
resolution: "@eslint/eslintrc@npm:3.1.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 5b7332ed781edcfc98caa8dedbbb843abfb9bda2e86538529c843473f580e40c69eb894410eddc6702f487e9ee8f8cfa8df83213d43a8fdb549f23ce06699167
languageName: node
linkType: hard
"@eslint/js@npm:9.14.0, @eslint/js@npm:^9.14.0":
version: 9.14.0
resolution: "@eslint/js@npm:9.14.0"
checksum: a423dd435e10aa3b461599aa02f6cbadd4b5128cb122467ee4e2c798e7ca4f9bb1fce4dcea003b29b983090238cf120899c1af657cf86300b399e4f996b83ddc
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/object-schema@npm:2.1.4"
checksum: e9885532ea70e483fb007bf1275968b05bb15ebaa506d98560c41a41220d33d342e19023d5f2939fed6eb59676c1bda5c847c284b4b55fce521d282004da4dda
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.0":
version: 0.2.2
resolution: "@eslint/plugin-kit@npm:0.2.2"
dependencies:
levn: "npm:^0.4.1"
checksum: ec533ccc99f2ab003d6f64495cff853730fb7d8bc0eaf031ffccc68de7c34c74a2eda50dfa759cacfb409f014c98d306714c995348d5383c9d3140f9f80a5895
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 8356359c9f60108ec204cbd249ecd0356667359b2524886b357617c4a7c3b6aace0fd5a369f63747b926a762a88f8a25bc066fa1778508d110195ce7686243e1
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: f0da1282dfb45e8120480b9e2e275e2ac9bbe1cf016d046fdad8e27cc1285c45bb9e711681237944445157b430093412b4446c1ab3fc4bb037861b5904101d3b
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.0":
version: 0.4.1
resolution: "@humanwhocodes/retry@npm:0.4.1"
checksum: be7bb6841c4c01d0b767d9bb1ec1c9359ee61421ce8ba66c249d035c5acdfd080f32d55a5c9e859cdd7868788b8935774f65b2caf24ec0b7bd7bf333791f063b
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-darwin-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-darwin-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-arm64":
optional: true
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-darwin-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-darwin-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-darwin-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-darwin-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-darwin-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-darwin-x64":
optional: true
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-darwin-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.2"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-arm@npm:1.0.5":
version: 1.0.5
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.2"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linux-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.2":
version: 1.0.2
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
version: 1.0.4
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-arm@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-arm": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-arm@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-arm@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-arm": "npm:1.0.5"
dependenciesMeta:
"@img/sharp-libvips-linux-arm":
optional: true
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-s390x@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-s390x": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-s390x@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-s390x": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-s390x":
optional: true
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linux-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linux-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linux-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linux-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linux-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linux-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-arm64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-arm64":
optional: true
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.4"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.2"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-linuxmusl-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
dependencies:
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
dependenciesMeta:
"@img/sharp-libvips-linuxmusl-x64":
optional: true
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-wasm32@npm:0.33.4"
dependencies:
"@emnapi/runtime": "npm:^1.1.1"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-wasm32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-wasm32@npm:0.33.5"
dependencies:
"@emnapi/runtime": "npm:^1.2.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-win32-ia32@npm:0.33.4"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-ia32@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-ia32@npm:0.33.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.33.4":
version: 0.33.4
resolution: "@img/sharp-win32-x64@npm:0.33.4"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@img/sharp-win32-x64@npm:0.33.5":
version: 0.33.5
resolution: "@img/sharp-win32-x64@npm:0.33.5"
conditions: os=win32 & cpu=x64
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
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
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
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
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.3"
checksum: 325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
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
"@playwright/test@npm:^1.45.1":
version: 1.48.2
resolution: "@playwright/test@npm:1.48.2"
dependencies:
playwright: "npm:1.48.2"
bin:
playwright: cli.js
checksum: 68bab3bee8d716111e9a166785e6c3c406b6a184fc46d03b5468fcbb92b6242e5628f6a75f9d286e2491ec0e9e59af67542a1f114b6659d790b5a1f41e4d305b
languageName: node
linkType: hard
"@promptbook/utils@npm:0.69.5":
version: 0.69.5
resolution: "@promptbook/utils@npm:0.69.5"
dependencies:
spacetrim: "npm:0.11.59"
checksum: 148aa35a01151740d175b1c2c640349cc3af4c42f5f927c77f92b68ccb4303331e4e27e595d21d36ad97bf4556d4a8741346215f6228b193efd5dd027f013550
languageName: node
linkType: hard
"@puppeteer/browsers@npm:1.9.1, @puppeteer/browsers@npm:^1.6.0":
version: 1.9.1
resolution: "@puppeteer/browsers@npm:1.9.1"
dependencies:
debug: "npm:4.3.4"
extract-zip: "npm:2.0.1"
progress: "npm:2.0.3"
proxy-agent: "npm:6.3.1"
tar-fs: "npm:3.0.4"
unbzip2-stream: "npm:1.4.3"
yargs: "npm:17.7.2"
bin:
browsers: lib/cjs/main-cli.js
checksum: 8cbde5ec8060c2bdfdc0d7149711cf0cccc6648ed61d0b969cd305918108e7973ce8a7ff3f7533fcc3c49552afe1955755cd7a3924c1fdbea7330d48094b35ee
languageName: node
linkType: hard
"@sidvind/better-ajv-errors@npm:3.0.1":
version: 3.0.1
resolution: "@sidvind/better-ajv-errors@npm:3.0.1"
dependencies:
kleur: "npm:^4.1.0"
peerDependencies:
ajv: ^6.12.3 || ^7.0.0 || ^8.0.0
checksum: 0d151b0a08bb178ea196025affd8a466621a265778e2214f1e4d2d329e6c1c694b2b61fbb68c3169708f37cb4d116d1c609140de16e23bf35669ce5a34cc488a
languageName: node
linkType: hard
"@sindresorhus/is@npm:^5.2.0":
version: 5.6.0