forked from shadowcz007/design-ai-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6890 lines (6890 loc) · 311 KB
/
package-lock.json
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
{
"name": "design-ai-lab",
"version": "0.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"7zip-bin": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.0.3.tgz",
"integrity": "sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA==",
"dev": true
},
"@babel/runtime": {
"version": "7.12.5",
"resolved": "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.12.5.tgz",
"integrity": "sha1-QQ5+SHRB4bNgwpvnFdhw2bmFiC4=",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@braintree/sanitize-url": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-3.1.0.tgz",
"integrity": "sha512-GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg=="
},
"@develar/schema-utils": {
"version": "2.6.5",
"resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz",
"integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==",
"dev": true,
"requires": {
"ajv": "^6.12.0",
"ajv-keywords": "^3.4.1"
}
},
"@electron/get": {
"version": "1.12.4",
"resolved": "https://registry.npmjs.org/@electron/get/-/get-1.12.4.tgz",
"integrity": "sha512-6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg==",
"dev": true,
"requires": {
"debug": "^4.1.1",
"env-paths": "^2.2.0",
"fs-extra": "^8.1.0",
"global-agent": "^2.0.2",
"global-tunnel-ng": "^2.7.1",
"got": "^9.6.0",
"progress": "^2.0.3",
"semver": "^6.2.0",
"sumchecker": "^3.0.1"
}
},
"@electron/universal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.0.4.tgz",
"integrity": "sha512-ajZoumi4XwqwmZe8YVhu4XGkZBCPyWZsVCQONPTIe9TUlleSN+dic3YpXlaWcilx/HOzTdldTKtabNTeI0gDoA==",
"dev": true,
"requires": {
"@malept/cross-spawn-promise": "^1.1.0",
"asar": "^3.0.3",
"debug": "^4.3.1",
"dir-compare": "^2.4.0",
"fs-extra": "^9.0.1"
},
"dependencies": {
"fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"dev": true,
"requires": {
"at-least-node": "^1.0.0",
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
}
},
"jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"dev": true,
"requires": {
"graceful-fs": "^4.1.6",
"universalify": "^2.0.0"
}
},
"universalify": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
"integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
"dev": true
}
}
},
"@ffmpeg-installer/darwin-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/darwin-x64/download/@ffmpeg-installer/darwin-x64-4.1.0.tgz",
"integrity": "sha1-SOFwbGkOYoFISCv7ZKy2dHIImqo=",
"optional": true
},
"@ffmpeg-installer/ffmpeg": {
"version": "1.0.20",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/ffmpeg/download/@ffmpeg-installer/ffmpeg-1.0.20.tgz",
"integrity": "sha1-08nCu812FJRo+wiGwrP+nkeVSQs=",
"requires": {
"@ffmpeg-installer/darwin-x64": "4.1.0",
"@ffmpeg-installer/linux-arm": "4.1.3",
"@ffmpeg-installer/linux-arm64": "4.1.4",
"@ffmpeg-installer/linux-ia32": "4.1.0",
"@ffmpeg-installer/linux-x64": "4.1.0",
"@ffmpeg-installer/win32-ia32": "4.1.0",
"@ffmpeg-installer/win32-x64": "4.1.0"
}
},
"@ffmpeg-installer/linux-arm": {
"version": "4.1.3",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/linux-arm/download/@ffmpeg-installer/linux-arm-4.1.3.tgz",
"integrity": "sha1-xVTxBe1fEEdewl177JSSbOGNtME=",
"optional": true
},
"@ffmpeg-installer/linux-arm64": {
"version": "4.1.4",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/linux-arm64/download/@ffmpeg-installer/linux-arm64-4.1.4.tgz",
"integrity": "sha1-chnz+QG7Z/eSbLBgtWtpdKbK0p8=",
"optional": true
},
"@ffmpeg-installer/linux-ia32": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/linux-ia32/download/@ffmpeg-installer/linux-ia32-4.1.0.tgz",
"integrity": "sha1-ra1wsNDZ2NgTmD1uaDxaM4p15EI=",
"optional": true
},
"@ffmpeg-installer/linux-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/linux-x64/download/@ffmpeg-installer/linux-x64-4.1.0.tgz",
"integrity": "sha1-tKXYnE4S5tkwbbzcVz33FuwcQyM=",
"optional": true
},
"@ffmpeg-installer/win32-ia32": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/win32-ia32/download/@ffmpeg-installer/win32-ia32-4.1.0.tgz",
"integrity": "sha1-bqxPtpG2TALnoRbB4tFn8+m0Bjg=",
"optional": true
},
"@ffmpeg-installer/win32-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffmpeg-installer/win32-x64/download/@ffmpeg-installer/win32-x64-4.1.0.tgz",
"integrity": "sha1-F+hpm1eY1MYONuLWMmqOvl6VosU=",
"optional": true
},
"@ffprobe-installer/darwin-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/darwin-x64/download/@ffprobe-installer/darwin-x64-4.1.0.tgz",
"integrity": "sha1-AlxRCPrz5FbmpAfdZbeY+NzIBd0=",
"optional": true
},
"@ffprobe-installer/ffprobe": {
"version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/ffprobe/download/@ffprobe-installer/ffprobe-1.1.0.tgz",
"integrity": "sha1-ovb704P5DZNZ3GwFUtypeTqISzw=",
"requires": {
"@ffprobe-installer/darwin-x64": "4.1.0",
"@ffprobe-installer/linux-arm": "4.3.2",
"@ffprobe-installer/linux-arm64": "4.3.2",
"@ffprobe-installer/linux-ia32": "4.1.0",
"@ffprobe-installer/linux-x64": "4.1.0",
"@ffprobe-installer/win32-ia32": "4.1.0",
"@ffprobe-installer/win32-x64": "4.1.0"
}
},
"@ffprobe-installer/linux-arm": {
"version": "4.3.2",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/linux-arm/download/@ffprobe-installer/linux-arm-4.3.2.tgz",
"integrity": "sha1-CTR+Z1OVRBaNmBVIbNVDw+iMuik=",
"optional": true
},
"@ffprobe-installer/linux-arm64": {
"version": "4.3.2",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/linux-arm64/download/@ffprobe-installer/linux-arm64-4.3.2.tgz",
"integrity": "sha1-pk7SdnLVVGC96lm8Y9oM83MfGeg=",
"optional": true
},
"@ffprobe-installer/linux-ia32": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/linux-ia32/download/@ffprobe-installer/linux-ia32-4.1.0.tgz",
"integrity": "sha1-ULWVKSe4sbxCw/Lt14i5lehHDRc=",
"optional": true
},
"@ffprobe-installer/linux-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/linux-x64/download/@ffprobe-installer/linux-x64-4.1.0.tgz",
"integrity": "sha1-tnyWdIRXZ3FxyjGw+4PkvTxkSrU=",
"optional": true
},
"@ffprobe-installer/win32-ia32": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/win32-ia32/download/@ffprobe-installer/win32-ia32-4.1.0.tgz",
"integrity": "sha1-GcxtEEP35UwnZK2mr49/JvmLutg=",
"optional": true
},
"@ffprobe-installer/win32-x64": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/@ffprobe-installer/win32-x64/download/@ffprobe-installer/win32-x64-4.1.0.tgz",
"integrity": "sha1-7T6KMp7rbAYlrEOeMa2exDABszw=",
"optional": true
},
"@fortawesome/fontawesome-free": {
"version": "5.15.3",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.3.tgz",
"integrity": "sha512-rFnSUN/QOtnOAgqFRooTA3H57JLDm0QEG/jPdk+tLQNL/eWd+Aok8g3qCI+Q1xuDPWpGW/i9JySpJVsq8Q0s9w=="
},
"@hapi/accept": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz",
"integrity": "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/ammo": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@hapi/ammo/-/ammo-5.0.1.tgz",
"integrity": "sha512-FbCNwcTbnQP4VYYhLNGZmA76xb2aHg9AMPiy18NZyWMG310P5KdFGyA9v2rm5ujrIny77dEEIkMOwl0Xv+fSSA==",
"requires": {
"@hapi/hoek": "9.x.x"
}
},
"@hapi/b64": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@hapi/b64/-/b64-5.0.0.tgz",
"integrity": "sha512-ngu0tSEmrezoiIaNGG6rRvKOUkUuDdf4XTPnONHGYfSGRmDqPZX5oJL6HAdKTo1UQHECbdB4OzhWrfgVppjHUw==",
"requires": {
"@hapi/hoek": "9.x.x"
}
},
"@hapi/boom": {
"version": "9.1.2",
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.2.tgz",
"integrity": "sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q==",
"requires": {
"@hapi/hoek": "9.x.x"
}
},
"@hapi/bounce": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@hapi/bounce/-/bounce-2.0.0.tgz",
"integrity": "sha512-JesW92uyzOOyuzJKjoLHM1ThiOvHPOLDHw01YV8yh5nCso7sDwJho1h0Ad2N+E62bZyz46TG3xhAi/78Gsct6A==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/bourne": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-2.0.0.tgz",
"integrity": "sha512-WEezM1FWztfbzqIUbsDzFRVMxSoLy3HugVcux6KDDtTqzPsLE8NDRHfXvev66aH1i2oOKKar3/XDjbvh/OUBdg=="
},
"@hapi/call": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/@hapi/call/-/call-8.0.1.tgz",
"integrity": "sha512-bOff6GTdOnoe5b8oXRV3lwkQSb/LAWylvDMae6RgEWWntd0SHtkYbQukDHKlfaYtVnSAgIavJ0kqszF/AIBb6g==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/catbox": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@hapi/catbox/-/catbox-11.1.1.tgz",
"integrity": "sha512-u/8HvB7dD/6X8hsZIpskSDo4yMKpHxFd7NluoylhGrL6cUfYxdQPnvUp9YU2C6F9hsyBVLGulBd9vBN1ebfXOQ==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/podium": "4.x.x",
"@hapi/validate": "1.x.x"
}
},
"@hapi/catbox-memory": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@hapi/catbox-memory/-/catbox-memory-5.0.0.tgz",
"integrity": "sha512-ByuxVJPHNaXwLzbBv4GdTr6ccpe1nG+AfYt+8ftDWEJY7EWBWzD+Klhy5oPTDGzU26pNUh1e7fcYI1ILZRxAXQ==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/content": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@hapi/content/-/content-5.0.2.tgz",
"integrity": "sha512-mre4dl1ygd4ZyOH3tiYBrOUBzV7Pu/EOs8VLGf58vtOEECWed8Uuw6B4iR9AN/8uQt42tB04qpVaMyoMQh0oMw==",
"requires": {
"@hapi/boom": "9.x.x"
}
},
"@hapi/cryptiles": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@hapi/cryptiles/-/cryptiles-5.1.0.tgz",
"integrity": "sha512-fo9+d1Ba5/FIoMySfMqPBR/7Pa29J2RsiPrl7bkwo5W5o+AN1dAYQRi4SPrPwwVxVGKjgLOEWrsvt1BonJSfLA==",
"requires": {
"@hapi/boom": "9.x.x"
}
},
"@hapi/file": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@hapi/file/-/file-2.0.0.tgz",
"integrity": "sha512-WSrlgpvEqgPWkI18kkGELEZfXr0bYLtr16iIN4Krh9sRnzBZN6nnWxHFxtsnP684wueEySBbXPDg/WfA9xJdBQ=="
},
"@hapi/hapi": {
"version": "20.1.2",
"resolved": "https://registry.npmjs.org/@hapi/hapi/-/hapi-20.1.2.tgz",
"integrity": "sha512-yLppH93as7vw+uaAMVcHEB13eBojuzGhcX948y/CGukNRAlnPV+c1EJGbYPLXVffpH8wCNsI7TrTaeifSFS6Vw==",
"requires": {
"@hapi/accept": "^5.0.1",
"@hapi/ammo": "^5.0.1",
"@hapi/boom": "^9.1.0",
"@hapi/bounce": "^2.0.0",
"@hapi/call": "^8.0.0",
"@hapi/catbox": "^11.1.1",
"@hapi/catbox-memory": "^5.0.0",
"@hapi/heavy": "^7.0.1",
"@hapi/hoek": "^9.0.4",
"@hapi/mimos": "^5.0.0",
"@hapi/podium": "^4.1.1",
"@hapi/shot": "^5.0.5",
"@hapi/somever": "^3.0.0",
"@hapi/statehood": "^7.0.3",
"@hapi/subtext": "^7.0.3",
"@hapi/teamwork": "^5.1.0",
"@hapi/topo": "^5.0.0",
"@hapi/validate": "^1.1.1"
}
},
"@hapi/heavy": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@hapi/heavy/-/heavy-7.0.1.tgz",
"integrity": "sha512-vJ/vzRQ13MtRzz6Qd4zRHWS3FaUc/5uivV2TIuExGTM9Qk+7Zzqj0e2G7EpE6KztO9SalTbiIkTh7qFKj/33cA==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/validate": "1.x.x"
}
},
"@hapi/hoek": {
"version": "9.1.1",
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz",
"integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw=="
},
"@hapi/iron": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@hapi/iron/-/iron-6.0.0.tgz",
"integrity": "sha512-zvGvWDufiTGpTJPG1Y/McN8UqWBu0k/xs/7l++HVU535NLHXsHhy54cfEMdW7EjwKfbBfM9Xy25FmTiobb7Hvw==",
"requires": {
"@hapi/b64": "5.x.x",
"@hapi/boom": "9.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/cryptiles": "5.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/mimos": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@hapi/mimos/-/mimos-5.0.0.tgz",
"integrity": "sha512-EVS6wJYeE73InTlPWt+2e3Izn319iIvffDreci3qDNT+t3lA5ylJ0/SoTaID8e0TPNUkHUSsgJZXEmLHvoYzrA==",
"requires": {
"@hapi/hoek": "9.x.x",
"mime-db": "1.x.x"
}
},
"@hapi/nigel": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@hapi/nigel/-/nigel-4.0.2.tgz",
"integrity": "sha512-ht2KoEsDW22BxQOEkLEJaqfpoKPXxi7tvabXy7B/77eFtOyG5ZEstfZwxHQcqAiZhp58Ae5vkhEqI03kawkYNw==",
"requires": {
"@hapi/hoek": "^9.0.4",
"@hapi/vise": "^4.0.0"
}
},
"@hapi/pez": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@hapi/pez/-/pez-5.0.3.tgz",
"integrity": "sha512-mpikYRJjtrbJgdDHG/H9ySqYqwJ+QU/D7FXsYciS9P7NYBXE2ayKDAy3H0ou6CohOCaxPuTV4SZ0D936+VomHA==",
"requires": {
"@hapi/b64": "5.x.x",
"@hapi/boom": "9.x.x",
"@hapi/content": "^5.0.2",
"@hapi/hoek": "9.x.x",
"@hapi/nigel": "4.x.x"
}
},
"@hapi/podium": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@hapi/podium/-/podium-4.1.1.tgz",
"integrity": "sha512-jh7a6+5Z4FUWzx8fgmxjaAa1DTBu+Qfg+NbVdo0f++rE5DgsVidUYrLDp3db65+QjDLleA2MfKQXkpT8ylBDXA==",
"requires": {
"@hapi/hoek": "9.x.x",
"@hapi/teamwork": "5.x.x",
"@hapi/validate": "1.x.x"
}
},
"@hapi/shot": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@hapi/shot/-/shot-5.0.5.tgz",
"integrity": "sha512-x5AMSZ5+j+Paa8KdfCoKh+klB78otxF+vcJR/IoN91Vo2e5ulXIW6HUsFTCU+4W6P/Etaip9nmdAx2zWDimB2A==",
"requires": {
"@hapi/hoek": "9.x.x",
"@hapi/validate": "1.x.x"
}
},
"@hapi/somever": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@hapi/somever/-/somever-3.0.0.tgz",
"integrity": "sha512-Upw/kmKotC9iEmK4y047HMYe4LDKsE5NWfjgX41XNKmFvxsQL7OiaCWVhuyyhU0ShDGBfIAnCH8jZr49z/JzZA==",
"requires": {
"@hapi/bounce": "2.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@hapi/statehood": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/@hapi/statehood/-/statehood-7.0.3.tgz",
"integrity": "sha512-pYB+pyCHkf2Amh67QAXz7e/DN9jcMplIL7Z6N8h0K+ZTy0b404JKPEYkbWHSnDtxLjJB/OtgElxocr2fMH4G7w==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/bounce": "2.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/cryptiles": "5.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/iron": "6.x.x",
"@hapi/validate": "1.x.x"
}
},
"@hapi/subtext": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/@hapi/subtext/-/subtext-7.0.3.tgz",
"integrity": "sha512-CekDizZkDGERJ01C0+TzHlKtqdXZxzSWTOaH6THBrbOHnsr3GY+yiMZC+AfNCypfE17RaIakGIAbpL2Tk1z2+A==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/content": "^5.0.2",
"@hapi/file": "2.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/pez": "^5.0.1",
"@hapi/wreck": "17.x.x"
}
},
"@hapi/teamwork": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@hapi/teamwork/-/teamwork-5.1.0.tgz",
"integrity": "sha512-llqoQTrAJDTXxG3c4Kz/uzhBS1TsmSBa/XG5SPcVXgmffHE1nFtyLIK0hNJHCB3EuBKT84adzd1hZNY9GJLWtg=="
},
"@hapi/topo": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz",
"integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==",
"requires": {
"@hapi/hoek": "^9.0.0"
}
},
"@hapi/validate": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@hapi/validate/-/validate-1.1.3.tgz",
"integrity": "sha512-/XMR0N0wjw0Twzq2pQOzPBZlDzkekGcoCtzO314BpIEsbXdYGthQUbxgkGDf4nhk1+IPDAsXqWjMohRQYO06UA==",
"requires": {
"@hapi/hoek": "^9.0.0",
"@hapi/topo": "^5.0.0"
}
},
"@hapi/vise": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@hapi/vise/-/vise-4.0.0.tgz",
"integrity": "sha512-eYyLkuUiFZTer59h+SGy7hUm+qE9p+UemePTHLlIWppEd+wExn3Df5jO04bFQTm7nleF5V8CtuYQYb+VFpZ6Sg==",
"requires": {
"@hapi/hoek": "9.x.x"
}
},
"@hapi/wreck": {
"version": "17.1.0",
"resolved": "https://registry.npmjs.org/@hapi/wreck/-/wreck-17.1.0.tgz",
"integrity": "sha512-nx6sFyfqOpJ+EFrHX+XWwJAxs3ju4iHdbB/bwR8yTNZOiYmuhA8eCe7lYPtYmb4j7vyK/SlbaQsmTtUrMvPEBw==",
"requires": {
"@hapi/boom": "9.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/hoek": "9.x.x"
}
},
"@jimp/bmp": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/bmp/download/@jimp/bmp-0.16.1.tgz",
"integrity": "sha1-bi2mVbK6Iuch3weVQj806S7xN2g=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"bmp-js": "^0.1.0"
}
},
"@jimp/core": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/core/download/@jimp/core-0.16.1.tgz",
"integrity": "sha1-aMQoj2738xoPa4Wbo/so2ukw050=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"any-base": "^1.1.0",
"buffer": "^5.2.0",
"exif-parser": "^0.1.12",
"file-type": "^9.0.0",
"load-bmfont": "^1.3.1",
"mkdirp": "^0.5.1",
"phin": "^2.9.1",
"pixelmatch": "^4.0.2",
"tinycolor2": "^1.4.1"
}
},
"@jimp/custom": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/custom/download/@jimp/custom-0.16.1.tgz",
"integrity": "sha1-KLZZxZ4goddaDEYGe9P0vTAs+cU=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/core": "^0.16.1"
}
},
"@jimp/gif": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/gif/download/@jimp/gif-0.16.1.tgz",
"integrity": "sha1-0ffDpY9GZkgnUJM6+Lj0ZmQU88o=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"gifwrap": "^0.9.2",
"omggif": "^1.0.9"
}
},
"@jimp/jpeg": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/jpeg/download/@jimp/jpeg-0.16.1.tgz",
"integrity": "sha1-O3uwikFz8vbYHzBJslHfPuKsgXU=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"jpeg-js": "0.4.2"
},
"dependencies": {
"jpeg-js": {
"version": "0.4.2",
"resolved": "https://registry.npm.taobao.org/jpeg-js/download/jpeg-js-0.4.2.tgz",
"integrity": "sha1-izRbGuSr3mTC2i/mfqIWoRSsJ50="
}
}
},
"@jimp/plugin-blit": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-blit/download/@jimp/plugin-blit-0.16.1.tgz",
"integrity": "sha1-CeqRn50ybeO5woJv5BVdo33ejts=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-blur": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-blur/download/@jimp/plugin-blur-0.16.1.tgz",
"integrity": "sha1-5hT6ACeX3NZi5wXUzqN259uWi/U=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-circle": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-circle/download/@jimp/plugin-circle-0.16.1.tgz",
"integrity": "sha1-IOMZSmfKKXQKuiYw/U0Kia+idJE=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-color": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-color/download/@jimp/plugin-color-0.16.1.tgz",
"integrity": "sha1-DymLp03ugYtmODTNgNU+VvN1UjM=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"tinycolor2": "^1.4.1"
}
},
"@jimp/plugin-contain": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-contain/download/@jimp/plugin-contain-0.16.1.tgz",
"integrity": "sha1-PF9cSV/ZuwipcHOdg2lJNPWBI/I=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-cover": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-cover/download/@jimp/plugin-cover-0.16.1.tgz",
"integrity": "sha1-DoyuwWpAq+FbGzLlODpgOjMG3EE=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-crop": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-crop/download/@jimp/plugin-crop-0.16.1.tgz",
"integrity": "sha1-s2JJfIcwQ/5HuogasIYEv3Im9Q8=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-displace": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-displace/download/@jimp/plugin-displace-0.16.1.tgz",
"integrity": "sha1-TdnbUYw+eN6dcj+GojS/mJIq/o0=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-dither": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-dither/download/@jimp/plugin-dither-0.16.1.tgz",
"integrity": "sha1-tH3iwLsJYIvtIotBw80BqF7C1Fs=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-fisheye": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-fisheye/download/@jimp/plugin-fisheye-0.16.1.tgz",
"integrity": "sha1-9iUEe2zb4bg7iekDD9AlqxnNsaQ=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-flip": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-flip/download/@jimp/plugin-flip-0.16.1.tgz",
"integrity": "sha1-epnqIr3oAmQQF+0PJhWHDBRDKbs=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-gaussian": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-gaussian/download/@jimp/plugin-gaussian-0.16.1.tgz",
"integrity": "sha1-CEXjFAhczVLjT62ag5SbwNgaaOg=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-invert": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-invert/download/@jimp/plugin-invert-0.16.1.tgz",
"integrity": "sha1-fm9aFXByVvN3jQaSFnW7zxhUXJc=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-mask": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-mask/download/@jimp/plugin-mask-0.16.1.tgz",
"integrity": "sha1-5/JGDgXDzaevXnbzPMsFefZvkN8=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-normalize": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-normalize/download/@jimp/plugin-normalize-0.16.1.tgz",
"integrity": "sha1-Ay39iO77xN7cixstJDgy5POvMMg=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-print": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-print/download/@jimp/plugin-print-0.16.1.tgz",
"integrity": "sha1-ZrgDVj+dEJgllwcURm5qua5jn/Y=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"load-bmfont": "^1.4.0"
}
},
"@jimp/plugin-resize": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-resize/download/@jimp/plugin-resize-0.16.1.tgz",
"integrity": "sha1-ZeOdhI7RO6LWxvr4HV1ZA5ZXHRA=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-rotate": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-rotate/download/@jimp/plugin-rotate-0.16.1.tgz",
"integrity": "sha1-U/tdUaSz0Fr5yRwqj//l16GkfIw=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-scale": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-scale/download/@jimp/plugin-scale-0.16.1.tgz",
"integrity": "sha1-ifa6Wf7tNCmEftImrr2jOiQMxkc=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-shadow": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-shadow/download/@jimp/plugin-shadow-0.16.1.tgz",
"integrity": "sha1-p6+JKnQP6/QSEeEKVGfDxcUhoEw=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugin-threshold": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugin-threshold/download/@jimp/plugin-threshold-0.16.1.tgz",
"integrity": "sha1-NPMHj5llFFt64mxToyrXSxGVu/U=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1"
}
},
"@jimp/plugins": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/plugins/download/@jimp/plugins-0.16.1.tgz",
"integrity": "sha1-nwhUTJcibWRgoWztefV+hb7DJXs=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/plugin-blit": "^0.16.1",
"@jimp/plugin-blur": "^0.16.1",
"@jimp/plugin-circle": "^0.16.1",
"@jimp/plugin-color": "^0.16.1",
"@jimp/plugin-contain": "^0.16.1",
"@jimp/plugin-cover": "^0.16.1",
"@jimp/plugin-crop": "^0.16.1",
"@jimp/plugin-displace": "^0.16.1",
"@jimp/plugin-dither": "^0.16.1",
"@jimp/plugin-fisheye": "^0.16.1",
"@jimp/plugin-flip": "^0.16.1",
"@jimp/plugin-gaussian": "^0.16.1",
"@jimp/plugin-invert": "^0.16.1",
"@jimp/plugin-mask": "^0.16.1",
"@jimp/plugin-normalize": "^0.16.1",
"@jimp/plugin-print": "^0.16.1",
"@jimp/plugin-resize": "^0.16.1",
"@jimp/plugin-rotate": "^0.16.1",
"@jimp/plugin-scale": "^0.16.1",
"@jimp/plugin-shadow": "^0.16.1",
"@jimp/plugin-threshold": "^0.16.1",
"timm": "^1.6.1"
}
},
"@jimp/png": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/png/download/@jimp/png-0.16.1.tgz",
"integrity": "sha1-8kz8MVKZALE6LdnU/bRGDB5NgU4=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/utils": "^0.16.1",
"pngjs": "^3.3.3"
}
},
"@jimp/tiff": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/tiff/download/@jimp/tiff-0.16.1.tgz",
"integrity": "sha1-DodWaVaH11dLa8c++rCs1CYLehI=",
"requires": {
"@babel/runtime": "^7.7.2",
"utif": "^2.0.1"
}
},
"@jimp/types": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/types/download/@jimp/types-0.16.1.tgz",
"integrity": "sha1-DbqzezICMVyRAQ8Wwxdm01ojIsw=",
"requires": {
"@babel/runtime": "^7.7.2",
"@jimp/bmp": "^0.16.1",
"@jimp/gif": "^0.16.1",
"@jimp/jpeg": "^0.16.1",
"@jimp/png": "^0.16.1",
"@jimp/tiff": "^0.16.1",
"timm": "^1.6.1"
}
},
"@jimp/utils": {
"version": "0.16.1",
"resolved": "https://registry.npm.taobao.org/@jimp/utils/download/@jimp/utils-0.16.1.tgz",
"integrity": "sha1-L1Hm8U/4MHxKqD1eGid9oUqf4/c=",
"requires": {
"@babel/runtime": "^7.7.2",
"regenerator-runtime": "^0.13.3"
}
},
"@malept/cross-spawn-promise": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
"integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
"dev": true,
"requires": {
"cross-spawn": "^7.0.1"
}
},
"@paddlejs-mediapipe/opencv": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@paddlejs-mediapipe/opencv/-/opencv-1.0.0.tgz",
"integrity": "sha512-YgqdrcXMwa+/HxXJKN3TUXqaFnsO6DnGoAoghtUdySjrx8ZwQwP6NuMmB6CwS/C1pb5qk/6G7pqBGcZT2fEqqQ=="
},
"@paddlejs-models/humanseg": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/@paddlejs-models/humanseg/-/humanseg-0.0.6.tgz",
"integrity": "sha512-3je/Zs2LWTuvyR/QCHazGz+DOA14SzGYysQV277LWmapb4PIcD4kosE+5q7dnisJKmdDw1dpaQJZZdwc3yjueQ==",
"requires": {
"@paddlejs-mediapipe/opencv": "^1.0.0",
"@paddlejs/paddlejs-backend-webgl": "^1.0.0",
"@paddlejs/paddlejs-core": "^2.0.0"
}
},
"@paddlejs/paddlejs-backend-webgl": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@paddlejs/paddlejs-backend-webgl/-/paddlejs-backend-webgl-1.0.0.tgz",
"integrity": "sha512-ZlvBhMOoXdZQVDXjgh+k+ySVULXwlCcyI0GNWx9SSpVr0aPuJvkQuvHBPwELYk7Lo6xLCgPIpD9e8MNrY46MUg=="
},
"@paddlejs/paddlejs-core": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@paddlejs/paddlejs-core/-/paddlejs-core-2.0.0.tgz",
"integrity": "sha512-EOxnK9hv3yvH51jt05mFHEeFvZDJZiuVAos8bUFbHS0ct5FaFlL72Qihc5TadCDRjF245+2wG8iE3EVJUAssPg=="
},
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
"dev": true
},
"@szmarczak/http-timer": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
"dev": true,
"requires": {
"defer-to-connect": "^1.0.1"
}
},
"@tensorflow-models/blazeface": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@tensorflow-models/blazeface/-/blazeface-0.0.5.tgz",
"integrity": "sha512-bIMJDV2CD8rr7v9OrIDdDZVh9sbk0EhlZdHaDFpgWUw3Lp21wUN7GSifOJVE5hV2ngmpzM+J12OH8bG1GZoDag=="
},
"@tensorflow-models/body-pix": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@tensorflow-models/body-pix/-/body-pix-2.1.0.tgz",
"integrity": "sha512-HSO7Cic8WvinJRiknPvjtL1Dm7bYpRfP8Ln1iPxR+ATxihylaZf5XatNDp1Cmv5qii1LyxWfzvKzcvin7WKQ5Q=="
},
"@tensorflow-models/deeplab": {
"version": "0.2.1",
"resolved": "https://registry.npm.taobao.org/@tensorflow-models/deeplab/download/@tensorflow-models/deeplab-0.2.1.tgz",
"integrity": "sha1-fcWmYEBXTJLcfMGfuXq+PzkKHuo="
},
"@tensorflow-models/face-landmarks-detection": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@tensorflow-models/face-landmarks-detection/-/face-landmarks-detection-0.0.1.tgz",
"integrity": "sha512-81x+xC/oG3n4cgJhCVFYoPxUcCfkqgdq95z1h0mUa8QrEC5iASAUJt10mRzjTTtN8l71r+S03U/TBG/8ut2PDA==",
"requires": {
"@tensorflow-models/blazeface": "0.0.5",
"rimraf": "^3.0.2"
},
"dependencies": {
"rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"requires": {
"glob": "^7.1.3"
}
}
}
},
"@tensorflow-models/knn-classifier": {
"version": "1.2.2",
"resolved": "https://registry.npm.taobao.org/@tensorflow-models/knn-classifier/download/@tensorflow-models/knn-classifier-1.2.2.tgz",
"integrity": "sha1-pakEWz0iWgbmDyscwt5WvaxnSOg="
},
"@tensorflow-models/mobilenet": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@tensorflow-models/mobilenet/-/mobilenet-2.1.0.tgz",
"integrity": "sha512-JjqT9ijHDFA2FEpUGWg7H2lQ0GrMuE2VmiCRBYmUew6b4JKht8LXDjG5HxZh95YH6c/25sZWTpGeHbquloH+hw=="
},
"@tensorflow/tfjs": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs/-/tfjs-3.3.0.tgz",
"integrity": "sha512-xo22GCUCGcPtNGIdDpLPrp9ms3atXmzX8AF4y3aIBEwK5KlvGe+ZhcoQ2xEOCPQGBr7NB7AO6rwT8gRoziAHVg==",
"requires": {
"@tensorflow/tfjs-backend-cpu": "3.3.0",
"@tensorflow/tfjs-backend-webgl": "3.3.0",
"@tensorflow/tfjs-converter": "3.3.0",
"@tensorflow/tfjs-core": "3.3.0",
"@tensorflow/tfjs-data": "3.3.0",
"@tensorflow/tfjs-layers": "3.3.0",
"argparse": "^1.0.10",
"chalk": "^4.1.0",
"core-js": "3",
"regenerator-runtime": "^0.13.5",
"yargs": "^16.0.3"
},
"dependencies": {
"@tensorflow/tfjs-converter": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-converter/-/tfjs-converter-3.3.0.tgz",
"integrity": "sha512-k57wN4yelePhmO9orcT/wzGMIuyedrMpVtg0FhxpV6BQu0+TZ/ti3W4Kb97GWJsoHKXMoing9SnioKfVnBW6hw=="
}
}
},
"@tensorflow/tfjs-backend-cpu": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-backend-cpu/-/tfjs-backend-cpu-3.3.0.tgz",
"integrity": "sha512-DLctv+PUZni26kQW1hq8jwQQ8u+GGc/p764WQIC4/IDagGtfGAUW1mHzWcTxtni2l4re1VrwE41ogWLhv4sGHg==",
"requires": {
"@types/seedrandom": "2.4.27",
"seedrandom": "2.4.3"
}
},
"@tensorflow/tfjs-backend-wasm": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-backend-wasm/-/tfjs-backend-wasm-3.3.0.tgz",
"integrity": "sha512-1mU3+GuCc0tPzG65qIVwlJoIOyOOvVVkNl1NsId7PTt/PwE/QwiofsCmfPDqH47rTMxBzhvnHZTi+Nj9VBaz1g==",
"requires": {
"@tensorflow/tfjs-backend-cpu": "3.3.0",
"@types/emscripten": "~0.0.34"
}
},
"@tensorflow/tfjs-backend-webgl": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-backend-webgl/-/tfjs-backend-webgl-3.3.0.tgz",
"integrity": "sha512-GWCtXbrjPTyye3ooId9GlcNDwnIMskZarUpNIQ5g/zeISLfwEQoutA/UqJF+HzuEHgGMsWFkmaO3xKVT7UMpdg==",
"requires": {
"@tensorflow/tfjs-backend-cpu": "3.3.0",
"@types/offscreencanvas": "~2019.3.0",
"@types/seedrandom": "2.4.27",
"@types/webgl-ext": "0.0.30",
"@types/webgl2": "0.0.5",
"seedrandom": "2.4.3"
}
},
"@tensorflow/tfjs-converter": {
"version": "2.8.6",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-converter/-/tfjs-converter-2.8.6.tgz",
"integrity": "sha512-Uv4YC66qjVC9UwBxz0IeLZ8KS2CReh63WlGRtHcSwDEYiwsa7cvp9H6lFSSPT7kiJmrK6JtHeJGIVcTuNnSt9w=="
},
"@tensorflow/tfjs-core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-core/-/tfjs-core-3.3.0.tgz",
"integrity": "sha512-6G+LcCiQBl4Kza5mDbWbf8QSWBTW3l7SDjGhQzMO1ITtQatHzxkuHGHcJ4CTUJvNA0JmKf4QJWOvlFqEmxwyLQ==",
"requires": {
"@types/offscreencanvas": "~2019.3.0",
"@types/seedrandom": "2.4.27",
"@types/webgl-ext": "0.0.30",
"node-fetch": "~2.6.1",
"seedrandom": "2.4.3"
}
},
"@tensorflow/tfjs-data": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-data/-/tfjs-data-3.3.0.tgz",
"integrity": "sha512-0x28tRe6RJu5GmYq3IYN2GNnOgXU0nY+o6zZrlijkK+W3vjSTJlZzaBSifoeD6J8gzVpjs8W8qd/JKHQ1MQp8w==",
"requires": {
"@types/node-fetch": "^2.1.2",
"node-fetch": "~2.6.1"
}
},
"@tensorflow/tfjs-layers": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-layers/-/tfjs-layers-3.3.0.tgz",
"integrity": "sha512-qO+TL2I29vWUiuFcQJXNyayWFYagwR+SIfbex8p5jjYaCGHGwE5GQcrH+ngoCgKZxm5tdMvYJsJPnih2M3fYzQ=="
},
"@tensorflow/tfjs-node": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@tensorflow/tfjs-node/-/tfjs-node-3.3.0.tgz",
"integrity": "sha512-grRgaXereQt5mQnu31gHCPkzA6SGReXW94b5FEMk1Psenmb0APnT7MGgZbujiMruQ81vG0/8gYA28uyZeZKcJw==",
"requires": {