-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5298 lines (4586 loc) · 229 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@aashutoshrathi/word-wrap@^1.2.3":
"integrity" "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz"
"version" "1.2.6"
"@babel/parser@^7.23.3":
"integrity" "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@babel/parser/-/parser-7.23.5.tgz"
"version" "7.23.5"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
"version" "0.8.1"
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@electron-forge/cli@^7.2.0":
"integrity" "sha512-FJ8XzT4w6bTC3trvHHWL67W1zp7g2xmCC5riNa1rjk8Gd2C1j8wf0ul4ch9kbcaEAFaXuXwv98QKXxhCn4aLtQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/cli/-/cli-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/core" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"@electron/get" "^3.0.0"
"chalk" "^4.0.0"
"commander" "^4.1.1"
"debug" "^4.3.1"
"fs-extra" "^10.0.0"
"listr2" "^5.0.3"
"semver" "^7.2.1"
"@electron-forge/[email protected]":
"integrity" "sha512-PI1wETlF/+Cxm1m/IgURQ9S3LzHU70/S4CHmkw4xJg4wYVRTfiKpH2XRE9VqEJU854hEnsCGynAIn7/Z2h6SIA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/core-utils/-/core-utils-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron/rebuild" "^3.2.10"
"@malept/cross-spawn-promise" "^2.0.0"
"chalk" "^4.0.0"
"debug" "^4.3.1"
"find-up" "^5.0.0"
"fs-extra" "^10.0.0"
"log-symbols" "^4.0.0"
"semver" "^7.2.1"
"yarn-or-npm" "^3.0.1"
"@electron-forge/[email protected]":
"integrity" "sha512-7Sh0KW79Z/y9MStU3sWTBbTkM4SvV6rL557/ndlfAbZrxcGMnmWHrzn/odAZW1eyfhKguBb7C1Ijw0YTpsdVsw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/core/-/core-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/core-utils" "7.2.0"
"@electron-forge/maker-base" "7.2.0"
"@electron-forge/plugin-base" "7.2.0"
"@electron-forge/publisher-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/template-base" "7.2.0"
"@electron-forge/template-vite" "7.2.0"
"@electron-forge/template-vite-typescript" "7.2.0"
"@electron-forge/template-webpack" "7.2.0"
"@electron-forge/template-webpack-typescript" "7.2.0"
"@electron-forge/tracer" "7.2.0"
"@electron/get" "^3.0.0"
"@electron/packager" "^18.0.0"
"@electron/rebuild" "^3.2.10"
"@malept/cross-spawn-promise" "^2.0.0"
"chalk" "^4.0.0"
"debug" "^4.3.1"
"fast-glob" "^3.2.7"
"filenamify" "^4.1.0"
"find-up" "^5.0.0"
"fs-extra" "^10.0.0"
"got" "^11.8.5"
"interpret" "^3.1.1"
"listr2" "^5.0.3"
"lodash" "^4.17.20"
"log-symbols" "^4.0.0"
"node-fetch" "^2.6.7"
"progress" "^2.0.3"
"rechoir" "^0.8.0"
"resolve-package" "^1.0.1"
"semver" "^7.2.1"
"source-map-support" "^0.5.13"
"sudo-prompt" "^9.1.1"
"username" "^5.1.0"
"yarn-or-npm" "^3.0.1"
"@electron-forge/[email protected]":
"integrity" "sha512-5dCFiVo4WhSlLf/T9MP+jnMqP3qfmwvjCSiTRE08USeotNWhycztcFox94NbxMJkRt329tNeG2RRs7RzdCz21w=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/maker-base/-/maker-base-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"fs-extra" "^10.0.0"
"which" "^2.0.2"
"@electron-forge/maker-deb@^7.2.0":
"integrity" "sha512-UYulMZpof+PIcapUFxQ5pVoSqa2FsS8crY8WGbVm1ALuknJUn4C2I37S8AujQH0l7oJRGnH95Y7Bcryyhe08yw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/maker-deb/-/maker-deb-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/maker-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
optionalDependencies:
"electron-installer-debian" "^3.2.0"
"@electron-forge/maker-rpm@^7.2.0":
"integrity" "sha512-XKWK8Db44O9L7Njx0jEYLPfkf5eJ/i+XqT1Tejke+t0b74uCqFMKcbWLFp1LZj0hVM3kACy1LqtTCuOlti3INA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/maker-rpm/-/maker-rpm-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/maker-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
optionalDependencies:
"electron-installer-redhat" "^3.2.0"
"@electron-forge/maker-squirrel@^7.2.0":
"integrity" "sha512-SyPeFgJoMUcOPDM8+1AUPuseOqnl5YqnnjgKX9+YUIrsGKIsSz1cTtSOEu5R/l2yWNWFTmLnOlcuqIe7NayHBg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/maker-squirrel/-/maker-squirrel-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/maker-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"fs-extra" "^10.0.0"
optionalDependencies:
"electron-winstaller" "^5.0.0"
"@electron-forge/maker-zip@^7.2.0":
"integrity" "sha512-U6FSSMcHogHDv+7SmF037lJ9m0stwwqyerw7Q6mD3jKQHX9GBxFApEzA5HSURGPAEBhPgPppYOSMGRB6LV5F2g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/maker-zip/-/maker-zip-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/maker-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"cross-zip" "^4.0.0"
"fs-extra" "^10.0.0"
"got" "^11.8.5"
"@electron-forge/plugin-auto-unpack-natives@^7.2.0":
"integrity" "sha512-5BI2t/Qt9wP188PHoS1qv/0CqIhByyacWRVeAgQ9kP6iMsPyyc4kn3kWGDQF2MyFqMmusRzcdM+SljDGR9aIeg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/plugin-auto-unpack-natives/-/plugin-auto-unpack-natives-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/plugin-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/[email protected]":
"integrity" "sha512-c/pQK36BMBMKiemO68g1ZQOCXBA93x/aeX3lIXwK5bKVuaGt16Unfmby5Q7iIvY+/KsBuLYGkAder8HDN+4Nbw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/plugin-base/-/plugin-base-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/plugin-vite@^7.2.0":
"integrity" "sha512-gVQ98tNRVL1ildZgehdJWNogZq6WJnefayxPhT9zrWrRxNUKChRTugDAPrv8Og/fHwAT5em+wHOilqBr3X2K2A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/plugin-vite/-/plugin-vite-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/core-utils" "7.2.0"
"@electron-forge/plugin-base" "7.2.0"
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/web-multi-logger" "7.2.0"
"chalk" "^4.0.0"
"debug" "^4.3.1"
"vite" "^4.1.1"
"@electron-forge/[email protected]":
"integrity" "sha512-c0pwcQeMZi0S4iLlgA3pqm6ZdW2u7Ea4Ynat04Gw7su5GLtbrKRgYSL36ZRhzz7sgm4372niI0k91KaH5KToHg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/publisher-base/-/publisher-base-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/[email protected]":
"integrity" "sha512-d8i+pwPwBnlmFTRkq7QfaoRS9LywfyjDdHqQZuArFbL6NLAEbZ52irFiAE3NSLf4STew/BA6IK9sTPz3KRmvQw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/shared-types/-/shared-types-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/tracer" "7.2.0"
"@electron/packager" "^18.0.0"
"@electron/rebuild" "^3.2.10"
"listr2" "^5.0.3"
"@electron-forge/[email protected]":
"integrity" "sha512-X7JrgQctgN0saFih/kKWVJ3KxiI1BpzdrkW58vs5H0kXXmA6UObE16/dWuKYfB06j0yIsfMbZ32Md1yAkgdCfg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/template-base/-/template-base-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@malept/cross-spawn-promise" "^2.0.0"
"debug" "^4.3.1"
"fs-extra" "^10.0.0"
"username" "^5.1.0"
"@electron-forge/[email protected]":
"integrity" "sha512-knN3lxJY6UyXa2u5957K4ZyItCoCw22wrUhQARvdHOcgXvMFAcwvfEDT8zOQy6ki6A9W3cMHhSTys7dC8/ChVw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/template-vite-typescript/-/template-vite-typescript-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/template-base" "7.2.0"
"fs-extra" "^10.0.0"
"@electron-forge/[email protected]":
"integrity" "sha512-Q5FSD+NVNMJKuAo/htQXpk3Q/eo116Xhx0zTzhSldAqpsgfxdAIJhl8TFmdVvCJIig1vEcLG2n/PgudxnuDuEQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/template-vite/-/template-vite-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/template-base" "7.2.0"
"fs-extra" "^10.0.0"
"@electron-forge/[email protected]":
"integrity" "sha512-eshvPcYXUgmpB+ts9/xRPvQexY46unfe0mGmLDaj8s/5fqCANgyUO5jusvMXlJdf3qwJ/rfi3jS0NuqnjsqskQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/template-base" "7.2.0"
"fs-extra" "^10.0.0"
"@electron-forge/[email protected]":
"integrity" "sha512-h2LQ3vAzIraRqLUM5fKOLXknp7n5hrQXudRjO/vEEbm1a0jbl4yjp6liKk3yx8MFFO4eAHVDrXwRSsLR3a2Wew=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/template-webpack/-/template-webpack-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@electron-forge/shared-types" "7.2.0"
"@electron-forge/template-base" "7.2.0"
"fs-extra" "^10.0.0"
"@electron-forge/[email protected]":
"integrity" "sha512-EoJ07nptEuuY2fcs/bUWzIf11RQRx6Ch/dZ6A9WIRcFYe9cFrslQwvyUf0siY3jcqVvxETCz69JGuBxKGwak7A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/tracer/-/tracer-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"chrome-trace-event" "^1.0.3"
"@electron-forge/[email protected]":
"integrity" "sha512-RILwNWrcPvMIefpwho/xVu38cyjeAcJCfuJ9YpQDgsVyJzGtPVXbLeKCL8lepMu+I2j9lnYPMKkp2QzycLwMcg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron-forge/web-multi-logger/-/web-multi-logger-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"express" "^4.17.1"
"express-ws" "^5.0.2"
"xterm" "^4.9.0"
"xterm-addon-fit" "^0.5.0"
"xterm-addon-search" "^0.8.0"
"@electron/asar@^3.2.1", "@electron/asar@^3.2.7":
"integrity" "sha512-cmskk5M06ewHMZAplSiF4AlME3IrnnZhKnWbtwKVLRkdJkKyUVjMLhDIiPIx/+6zQWVlKX/LtmK9xDme7540Sg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/asar/-/asar-3.2.8.tgz"
"version" "3.2.8"
dependencies:
"commander" "^5.0.0"
"glob" "^7.1.6"
"minimatch" "^3.0.4"
"@electron/get@^2.0.0":
"integrity" "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/get/-/get-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"debug" "^4.1.1"
"env-paths" "^2.2.0"
"fs-extra" "^8.1.0"
"got" "^11.8.5"
"progress" "^2.0.3"
"semver" "^6.2.0"
"sumchecker" "^3.0.1"
optionalDependencies:
"global-agent" "^3.0.0"
"@electron/get@^3.0.0":
"integrity" "sha512-hLv4BYFiyrNRI+U0Mm2X7RxCCdJLkDUn8GCEp9QJzbLpZRko+UaLlCjOMkj6TEtirNLPyBA7y1SeGfnpOB21aQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/get/-/get-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"debug" "^4.1.1"
"env-paths" "^2.2.0"
"fs-extra" "^8.1.0"
"got" "^11.8.5"
"progress" "^2.0.3"
"semver" "^6.2.0"
"sumchecker" "^3.0.1"
optionalDependencies:
"global-agent" "^3.0.0"
"@electron/notarize@^2.1.0":
"integrity" "sha512-Sf7RG47rafeGuUm+kLEbTXMN8XZeYXN70dMBstrcgiykxCq3SLl1uqxFWndxSI1LfMqv4Eq9PTDHLPwiya31Kg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/notarize/-/notarize-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"debug" "^4.1.1"
"fs-extra" "^9.0.1"
"promise-retry" "^2.0.1"
"@electron/osx-sign@^1.0.5":
"integrity" "sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/osx-sign/-/osx-sign-1.0.5.tgz"
"version" "1.0.5"
dependencies:
"compare-version" "^0.1.2"
"debug" "^4.3.4"
"fs-extra" "^10.0.0"
"isbinaryfile" "^4.0.8"
"minimist" "^1.2.6"
"plist" "^3.0.5"
"@electron/packager@^18.0.0":
"integrity" "sha512-OXLR5N6FaikHGrZE6qs1A9etSi1U/TVmIAfMrNp6+EwzJ72pUv5NVEUia8oIm9w2VUp5EbuY5umEhMhHdLYMRQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/packager/-/packager-18.1.0.tgz"
"version" "18.1.0"
dependencies:
"@electron/asar" "^3.2.1"
"@electron/get" "^3.0.0"
"@electron/notarize" "^2.1.0"
"@electron/osx-sign" "^1.0.5"
"@electron/universal" "^2.0.1"
"@electron/windows-sign" "^1.0.0"
"cross-spawn-windows-exe" "^1.2.0"
"debug" "^4.0.1"
"extract-zip" "^2.0.0"
"filenamify" "^4.1.0"
"fs-extra" "^11.1.0"
"galactus" "^1.0.0"
"get-package-info" "^1.0.0"
"junk" "^3.1.0"
"parse-author" "^2.0.0"
"plist" "^3.0.0"
"rcedit" "^4.0.0"
"resolve" "^1.1.6"
"semver" "^7.1.3"
"yargs-parser" "^21.1.1"
"@electron/rebuild@^3.2.10":
"integrity" "sha512-fi+O1zgxSmZR1X8oSOHRgCWALSS56dGHJ2AXLx9Ua3wg/NmBaMI/jpu7moU6T8lk/XRLnsC9Ds/Jo4I+UCkHAA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/rebuild/-/rebuild-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"@malept/cross-spawn-promise" "^2.0.0"
"chalk" "^4.0.0"
"debug" "^4.1.1"
"detect-libc" "^2.0.1"
"fs-extra" "^10.0.0"
"got" "^11.7.0"
"node-abi" "^3.45.0"
"node-api-version" "^0.1.4"
"node-gyp" "^9.0.0"
"ora" "^5.1.0"
"semver" "^7.3.5"
"tar" "^6.0.5"
"yargs" "^17.0.1"
"@electron/universal@^2.0.1":
"integrity" "sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/universal/-/universal-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"@electron/asar" "^3.2.7"
"@malept/cross-spawn-promise" "^2.0.0"
"debug" "^4.3.1"
"dir-compare" "^4.2.0"
"fs-extra" "^11.1.1"
"minimatch" "^9.0.3"
"plist" "^3.1.0"
"@electron/windows-sign@^1.0.0":
"integrity" "sha512-sdkQYAR/TQCEyYgz2jMbusL/ljdj6qA7vyIm/S9HICMAitXhXROFHUOLLgiORj1uiaf2EOB2U33DatGubUuZaQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@electron/windows-sign/-/windows-sign-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"debug" "^4.3.4"
"fs-extra" "^11.1.1"
"minimist" "^1.2.8"
"@esbuild/[email protected]":
"integrity" "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz"
"version" "0.18.20"
"@eslint-community/eslint-utils@^4.2.0":
"integrity" "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"eslint-visitor-keys" "^3.3.0"
"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1":
"integrity" "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@eslint-community/regexpp/-/regexpp-4.10.0.tgz"
"version" "4.10.0"
"@eslint/eslintrc@^2.1.3":
"integrity" "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@eslint/eslintrc/-/eslintrc-2.1.3.tgz"
"version" "2.1.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.6.0"
"globals" "^13.19.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@eslint/[email protected]":
"integrity" "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@eslint/js/-/js-8.54.0.tgz"
"version" "8.54.0"
"@gar/promisify@^1.1.3":
"integrity" "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@gar/promisify/-/promisify-1.1.3.tgz"
"version" "1.1.3"
"@humanwhocodes/config-array@^0.11.13":
"integrity" "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@humanwhocodes/config-array/-/config-array-0.11.13.tgz"
"version" "0.11.13"
dependencies:
"@humanwhocodes/object-schema" "^2.0.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^2.0.1":
"integrity" "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz"
"version" "2.0.1"
"@jridgewell/gen-mapping@^0.3.0":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0":
"integrity" "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
"version" "3.1.1"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/source-map@^0.3.3":
"integrity" "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/source-map/-/source-map-0.3.5.tgz"
"version" "0.3.5"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/trace-mapping@^0.3.17":
"integrity" "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz"
"version" "0.3.20"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@jridgewell/trace-mapping@^0.3.9", "@jridgewell/[email protected]":
"integrity" "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"
"version" "0.3.9"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@kk/harmony-sdk@^1.0.8":
"integrity" "sha512-o1h5Zsu/C8kcjUoaS8IjxGdkSxgz7O0aZR7HyXwNX6q9JTpUJiY6Otb4wEeTbudgCH9xVPowQVtoOpin9oWQGw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/harmony-sdk/-/harmony-sdk-1.0.8.tgz"
"version" "1.0.8"
"@kk/image-format@^1.1.0":
"integrity" "sha512-+e1UlvLAttFNTs8QqGGoDJDzDamgi28aGc/VN+h+gMT2TJEpTywiwyKOntTXvytJHyPGHKAJwQ/yYDof77Ep+g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/image-format/-/image-format-1.1.0.tgz"
"version" "1.1.0"
"@kk/quickapp-sdk@^1.0.2":
"integrity" "sha512-YjaMHJxVGJHW8ArQ/rRrlPQ7y+PZGJ8vsST5IVqpdH0Shwy5LfXBWcQG3sitmGSN2DR05ghy4CX1pXwVWpnXeQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/quickapp-sdk/-/quickapp-sdk-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"core-js" "^3.8.1"
"@kk/request@^2.1.1":
"integrity" "sha512-L4I2MDAJRSJ2aqc9h3BejPtZ3sWQ9FVn62Aw5l8iy0WsqtjkyEZjMQOZUPx4q6mjspbfu6lbUsqCsZbbNUmQtg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/request/-/request-2.1.1.tgz"
"version" "2.1.1"
"@kk/sa@^6.0.3":
"integrity" "sha512-sJDdkSI+yh5+0I++xajTYGFfhk0s5mIcFh628Q0uQ+p19KQsUG3bZDEwGcUt3Yrzz3DyhkNTQEZppRQnJA3LAA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/sa/-/sa-6.0.3.tgz"
"version" "6.0.3"
"@kk/utils@^3.0.8":
"integrity" "sha512-yabingd7uAS2bj8GTeyv3ceSd7mdBHtIs/IKf3KYm6MAoDijyXeqnsduX75xhAnlKhMzfgJZNEodIk4jawfVOg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@kk/utils/-/utils-3.0.8.tgz"
"version" "3.0.8"
dependencies:
"@kk/harmony-sdk" "^1.0.8"
"@kk/quickapp-sdk" "^1.0.2"
"@malept/cross-spawn-promise@^1.0.0":
"integrity" "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"cross-spawn" "^7.0.1"
"@malept/cross-spawn-promise@^1.1.0":
"integrity" "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"cross-spawn" "^7.0.1"
"@malept/cross-spawn-promise@^2.0.0":
"integrity" "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"cross-spawn" "^7.0.1"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@npmcli/fs@^2.1.0":
"integrity" "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@npmcli/fs/-/fs-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"@gar/promisify" "^1.1.3"
"semver" "^7.3.5"
"@npmcli/move-file@^2.0.0":
"integrity" "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@npmcli/move-file/-/move-file-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@sindresorhus/is@^4.0.0":
"integrity" "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@sindresorhus/is/-/is-4.6.0.tgz"
"version" "4.6.0"
"@szmarczak/http-timer@^4.0.5":
"integrity" "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"
"version" "4.0.6"
dependencies:
"defer-to-connect" "^2.0.0"
"@tootallnate/once@2":
"integrity" "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@tootallnate/once/-/once-2.0.0.tgz"
"version" "2.0.0"
"@tsconfig/node10@^1.0.7":
"integrity" "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@tsconfig/node10/-/node10-1.0.9.tgz"
"version" "1.0.9"
"@tsconfig/node12@^1.0.7":
"integrity" "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@tsconfig/node12/-/node12-1.0.11.tgz"
"version" "1.0.11"
"@tsconfig/node14@^1.0.0":
"integrity" "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@tsconfig/node14/-/node14-1.0.3.tgz"
"version" "1.0.3"
"@tsconfig/node16@^1.0.2":
"integrity" "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@tsconfig/node16/-/node16-1.0.4.tgz"
"version" "1.0.4"
"@types/cacheable-request@^6.0.1":
"integrity" "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/cacheable-request/-/cacheable-request-6.0.3.tgz"
"version" "6.0.3"
dependencies:
"@types/http-cache-semantics" "*"
"@types/keyv" "^3.1.4"
"@types/node" "*"
"@types/responselike" "^1.0.0"
"@types/eslint-scope@^3.7.3":
"integrity" "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/eslint-scope/-/eslint-scope-3.7.7.tgz"
"version" "3.7.7"
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint@*":
"integrity" "sha512-4K8GavROwhrYl2QXDXm0Rv9epkA8GBFu0EI+XrrnnuCl7u8CWBRusX7fXJfanhZTDWSAL24gDI/UqXyUM0Injw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/eslint/-/eslint-8.44.8.tgz"
"version" "8.44.8"
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*", "@types/estree@^1.0.0":
"integrity" "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/estree/-/estree-1.0.5.tgz"
"version" "1.0.5"
"@types/fs-extra@^9.0.1":
"integrity" "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/fs-extra/-/fs-extra-9.0.13.tgz"
"version" "9.0.13"
dependencies:
"@types/node" "*"
"@types/glob@^7.1.1":
"integrity" "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/glob/-/glob-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/http-cache-semantics@*":
"integrity" "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz"
"version" "4.0.4"
"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
"integrity" "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/json-schema/-/json-schema-7.0.15.tgz"
"version" "7.0.15"
"@types/json5@^0.0.29":
"integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/keyv@^3.1.4":
"integrity" "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/keyv/-/keyv-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@types/node" "*"
"@types/minimatch@*":
"integrity" "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/minimatch/-/minimatch-5.1.2.tgz"
"version" "5.1.2"
"@types/node@*", "@types/node@^20.10.1", "@types/node@>= 14":
"integrity" "sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/node/-/node-20.10.1.tgz"
"version" "20.10.1"
dependencies:
"undici-types" "~5.26.4"
"@types/node@^18.11.18":
"integrity" "sha512-667KNhaD7U29mT5wf+TZUnrzPrlL2GNQ5N0BMjO2oNULhBxX0/FKCkm6JMu0Jh7Z+1LwUlR21ekd7KhIboNFNw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/node/-/node-18.19.0.tgz"
"version" "18.19.0"
dependencies:
"undici-types" "~5.26.4"
"@types/responselike@^1.0.0":
"integrity" "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/responselike/-/responselike-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"@types/node" "*"
"@types/semver@^7.3.12":
"integrity" "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/semver/-/semver-7.5.6.tgz"
"version" "7.5.6"
"@types/yauzl@^2.9.1":
"integrity" "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@types/yauzl/-/yauzl-2.10.3.tgz"
"version" "2.10.3"
dependencies:
"@types/node" "*"
"@typescript-eslint/eslint-plugin@^5.0.0":
"integrity" "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@eslint-community/regexpp" "^4.4.0"
"@typescript-eslint/scope-manager" "5.62.0"
"@typescript-eslint/type-utils" "5.62.0"
"@typescript-eslint/utils" "5.62.0"
"debug" "^4.3.4"
"graphemer" "^1.4.0"
"ignore" "^5.2.0"
"natural-compare-lite" "^1.4.0"
"semver" "^7.3.7"
"tsutils" "^3.21.0"
"@typescript-eslint/parser@^5.0.0":
"integrity" "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/parser/-/parser-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@typescript-eslint/scope-manager" "5.62.0"
"@typescript-eslint/types" "5.62.0"
"@typescript-eslint/typescript-estree" "5.62.0"
"debug" "^4.3.4"
"@typescript-eslint/[email protected]":
"integrity" "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@typescript-eslint/types" "5.62.0"
"@typescript-eslint/visitor-keys" "5.62.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@typescript-eslint/typescript-estree" "5.62.0"
"@typescript-eslint/utils" "5.62.0"
"debug" "^4.3.4"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/types/-/types-5.62.0.tgz"
"version" "5.62.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@typescript-eslint/types" "5.62.0"
"@typescript-eslint/visitor-keys" "5.62.0"
"debug" "^4.3.4"
"globby" "^11.1.0"
"is-glob" "^4.0.3"
"semver" "^7.3.7"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/utils/-/utils-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
"@typescript-eslint/scope-manager" "5.62.0"
"@typescript-eslint/types" "5.62.0"
"@typescript-eslint/typescript-estree" "5.62.0"
"eslint-scope" "^5.1.1"
"semver" "^7.3.7"
"@typescript-eslint/[email protected]":
"integrity" "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz"
"version" "5.62.0"
dependencies:
"@typescript-eslint/types" "5.62.0"
"eslint-visitor-keys" "^3.3.0"
"@ungap/structured-clone@^1.2.0":
"integrity" "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@ungap/structured-clone/-/structured-clone-1.2.0.tgz"
"version" "1.2.0"
"@vant/popperjs@^1.3.0":
"integrity" "sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vant/popperjs/-/popperjs-1.3.0.tgz"
"version" "1.3.0"
"@vant/use@^1.6.0":
"integrity" "sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vant/use/-/use-1.6.0.tgz"
"version" "1.6.0"
"@vitejs/plugin-vue@^4.5.1":
"integrity" "sha512-DaUzYFr+2UGDG7VSSdShKa9sIWYBa1LL8KC0MNOf2H5LjcTPjob0x8LbkqXWmAtbANJCkpiQTj66UVcQkN2s3g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vitejs/plugin-vue/-/plugin-vue-4.5.1.tgz"
"version" "4.5.1"
"@vue/[email protected]":
"integrity" "sha512-+/Lf68Vr/nFBA6ol4xOtJrW+BQWv3QWKfRwGSm70jtXwfhZNF4R/eRgyVJYoxFRhdCTk/F6g99BP0ffPgZihfQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/compiler-core/-/compiler-core-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@babel/parser" "^7.23.3"
"@vue/shared" "3.3.9"
"estree-walker" "^2.0.2"
"source-map-js" "^1.0.2"
"@vue/[email protected]":
"integrity" "sha512-nfWubTtLXuT4iBeDSZ5J3m218MjOy42Vp2pmKVuBKo2/BLcrFUX8nCSr/bKRFiJ32R8qbdnnnBgRn9AdU5v0Sg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/compiler-dom/-/compiler-dom-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/compiler-core" "3.3.9"
"@vue/shared" "3.3.9"
"@vue/[email protected]":
"integrity" "sha512-wy0CNc8z4ihoDzjASCOCsQuzW0A/HP27+0MDSSICMjVIFzk/rFViezkR3dzH+miS2NDEz8ywMdbjO5ylhOLI2A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/compiler-sfc/-/compiler-sfc-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@babel/parser" "^7.23.3"
"@vue/compiler-core" "3.3.9"
"@vue/compiler-dom" "3.3.9"
"@vue/compiler-ssr" "3.3.9"
"@vue/reactivity-transform" "3.3.9"
"@vue/shared" "3.3.9"
"estree-walker" "^2.0.2"
"magic-string" "^0.30.5"
"postcss" "^8.4.31"
"source-map-js" "^1.0.2"
"@vue/[email protected]":
"integrity" "sha512-NO5oobAw78R0G4SODY5A502MGnDNiDjf6qvhn7zD7TJGc8XDeIEw4fg6JU705jZ/YhuokBKz0A5a/FL/XZU73g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/compiler-ssr/-/compiler-ssr-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/compiler-dom" "3.3.9"
"@vue/shared" "3.3.9"
"@vue/devtools-api@^6.0.0-beta.11", "@vue/devtools-api@^6.5.0":
"integrity" "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/devtools-api/-/devtools-api-6.5.1.tgz"
"version" "6.5.1"
"@vue/[email protected]":
"integrity" "sha512-HnUFm7Ry6dFa4Lp63DAxTixUp8opMtQr6RxQCpDI1vlh12rkGIeYqMvJtK+IKyEfEOa2I9oCkD1mmsPdaGpdVg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/reactivity-transform/-/reactivity-transform-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@babel/parser" "^7.23.3"
"@vue/compiler-core" "3.3.9"
"@vue/shared" "3.3.9"
"estree-walker" "^2.0.2"
"magic-string" "^0.30.5"
"@vue/[email protected]":
"integrity" "sha512-VmpIqlNp+aYDg2X0xQhJqHx9YguOmz2UxuUJDckBdQCNkipJvfk9yA75woLWElCa0Jtyec3lAAt49GO0izsphw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/reactivity/-/reactivity-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/shared" "3.3.9"
"@vue/[email protected]":
"integrity" "sha512-xxaG9KvPm3GTRuM4ZyU8Tc+pMVzcu6eeoSRQJ9IE7NmCcClW6z4B3Ij6L4EDl80sxe/arTtQ6YmgiO4UZqRc+w=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/runtime-core/-/runtime-core-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/reactivity" "3.3.9"
"@vue/shared" "3.3.9"
"@vue/[email protected]":
"integrity" "sha512-e7LIfcxYSWbV6BK1wQv9qJyxprC75EvSqF/kQKe6bdZEDNValzeRXEVgiX7AHI6hZ59HA4h7WT5CGvm69vzJTQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/runtime-dom/-/runtime-dom-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/runtime-core" "3.3.9"
"@vue/shared" "3.3.9"
"csstype" "^3.1.2"
"@vue/[email protected]":
"integrity" "sha512-w0zT/s5l3Oa3ZjtLW88eO4uV6AQFqU8X5GOgzq7SkQQu6vVr+8tfm+OI2kDBplS/W/XgCBuFXiPw6T5EdwXP0A=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/server-renderer/-/server-renderer-3.3.9.tgz"
"version" "3.3.9"
dependencies:
"@vue/compiler-ssr" "3.3.9"
"@vue/shared" "3.3.9"
"@vue/shared@^3.0.0", "@vue/[email protected]":
"integrity" "sha512-ZE0VTIR0LmYgeyhurPTpy4KzKsuDyQbMSdM49eKkMnT5X4VfFBLysMzjIZhLEFQYjjOVVfbvUDHckwjDFiO2eA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@vue/shared/-/shared-3.3.9.tgz"
"version" "3.3.9"
"@webassemblyjs/ast@^1.11.5", "@webassemblyjs/[email protected]":
"integrity" "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/ast/-/ast-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@webassemblyjs/helper-numbers" "1.11.6"
"@webassemblyjs/helper-wasm-bytecode" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz"
"version" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz"
"version" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz"
"version" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@webassemblyjs/floating-point-hex-parser" "1.11.6"
"@webassemblyjs/helper-api-error" "1.11.6"
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz"
"version" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@webassemblyjs/ast" "1.11.6"
"@webassemblyjs/helper-buffer" "1.11.6"
"@webassemblyjs/helper-wasm-bytecode" "1.11.6"
"@webassemblyjs/wasm-gen" "1.11.6"
"@webassemblyjs/[email protected]":
"integrity" "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@xtuc/ieee754" "^1.2.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/leb128/-/leb128-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/utf8/-/utf8-1.11.6.tgz"
"version" "1.11.6"
"@webassemblyjs/wasm-edit@^1.11.5":
"integrity" "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw=="
"resolved" "http://nexus.quickcan.com/nexus/repository/npm-all/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz"
"version" "1.11.6"
dependencies:
"@webassemblyjs/ast" "1.11.6"
"@webassemblyjs/helper-buffer" "1.11.6"
"@webassemblyjs/helper-wasm-bytecode" "1.11.6"
"@webassemblyjs/helper-wasm-section" "1.11.6"