-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage-lock.json
6780 lines (6780 loc) · 272 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": "@xan105/nodert",
"version": "2.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@xan105/nodert",
"version": "2.2.1",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/xan105"
},
{
"type": "paypal",
"url": "https://www.paypal.me/xan105"
},
{
"type": "patreon",
"url": "https://www.patreon.com/xan105"
}
],
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@xan105/error": "^1.7.1",
"@xan105/fs": "^2.2.1",
"@xan105/is": "^2.9.3",
"@xan105/request": "^1.1.0",
"adm-zip": "^0.5.10",
"node-abi": "^3.67.0"
},
"devDependencies": {
"@nodert-win10-rs4/windows.devices.lights": "^0.4.4",
"@nodert-win10-rs4/windows.devices.printers": "^0.4.4",
"@nodert-win10-rs4/windows.foundation": "^0.4.4",
"@nodert-win10-rs4/windows.graphics.display": "^0.4.4",
"@nodert-win10-rs4/windows.ui.core": "^0.4.4",
"@nodert-win11-22h2/windows.ai.machinelearning": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.activation": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.appextensions": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.appointments": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.appointments.appointmentsprovider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.appointments.dataprovider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.appservice": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.background": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.calls": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.calls.background": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.calls.provider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.chat": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.communicationblocking": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.contacts": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.contacts.dataprovider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.contacts.provider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.conversationalagent": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.core": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.datatransfer": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop.core": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.datatransfer.sharetarget": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.email": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.email.dataprovider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.extendedexecution": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.extendedexecution.foreground": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.holographic": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.lockscreen": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.payments": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.payments.provider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.resources": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.resources.core": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.resources.management": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.search": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.search.core": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.socialinfo": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.socialinfo.provider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.store": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.store.licensemanagement": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.useractivities": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.useractivities.core": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.userdataaccounts": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.userdataaccounts.provider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.userdataaccounts.systemaccess": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.userdatatasks": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.userdatatasks.dataprovider": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.voicecommands": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.wallet": "^0.1.6",
"@nodert-win11-22h2/windows.applicationmodel.wallet.system": "^0.1.6",
"@nodert-win11-22h2/windows.data.html": "^0.1.6",
"@nodert-win11-22h2/windows.data.json": "^0.1.6",
"@nodert-win11-22h2/windows.data.pdf": "^0.1.6",
"@nodert-win11-22h2/windows.data.text": "^0.1.6",
"@nodert-win11-22h2/windows.data.xml.dom": "^0.1.6",
"@nodert-win11-22h2/windows.data.xml.xsl": "^0.1.6",
"@nodert-win11-22h2/windows.devices": "^0.1.6",
"@nodert-win11-22h2/windows.devices.adc": "^0.1.6",
"@nodert-win11-22h2/windows.devices.adc.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.alljoyn": "^0.1.6",
"@nodert-win11-22h2/windows.devices.background": "^0.1.6",
"@nodert-win11-22h2/windows.devices.bluetooth": "^0.1.6",
"@nodert-win11-22h2/windows.devices.bluetooth.advertisement": "^0.1.6",
"@nodert-win11-22h2/windows.devices.bluetooth.background": "^0.1.6",
"@nodert-win11-22h2/windows.devices.bluetooth.genericattributeprofile": "^0.1.6",
"@nodert-win11-22h2/windows.devices.bluetooth.rfcomm": "^0.1.6",
"@nodert-win11-22h2/windows.devices.custom": "^0.1.6",
"@nodert-win11-22h2/windows.devices.display": "^0.1.6",
"@nodert-win11-22h2/windows.devices.display.core": "^0.1.6",
"@nodert-win11-22h2/windows.devices.enumeration": "^0.1.6",
"@nodert-win11-22h2/windows.devices.enumeration.pnp": "^0.1.6",
"@nodert-win11-22h2/windows.devices.geolocation": "^0.1.6",
"@nodert-win11-22h2/windows.devices.geolocation.geofencing": "^0.1.6",
"@nodert-win11-22h2/windows.devices.geolocation.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.gpio": "^0.1.6",
"@nodert-win11-22h2/windows.devices.gpio.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.haptics": "^0.1.6",
"@nodert-win11-22h2/windows.devices.humaninterfacedevice": "^0.1.6",
"@nodert-win11-22h2/windows.devices.i2c": "^0.1.6",
"@nodert-win11-22h2/windows.devices.i2c.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.input": "^0.1.6",
"@nodert-win11-22h2/windows.devices.lights.effects": "^0.1.6",
"@nodert-win11-22h2/windows.devices.midi": "^0.1.6",
"@nodert-win11-22h2/windows.devices.perception": "^0.1.6",
"@nodert-win11-22h2/windows.devices.perception.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.pointofservice": "^0.1.6",
"@nodert-win11-22h2/windows.devices.pointofservice.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.portable": "^0.1.6",
"@nodert-win11-22h2/windows.devices.power": "^0.1.6",
"@nodert-win11-22h2/windows.devices.printers.extensions": "^0.1.6",
"@nodert-win11-22h2/windows.devices.pwm": "^0.1.6",
"@nodert-win11-22h2/windows.devices.pwm.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.radios": "^0.1.6",
"@nodert-win11-22h2/windows.devices.scanners": "^0.1.6",
"@nodert-win11-22h2/windows.devices.sensors": "^0.1.6",
"@nodert-win11-22h2/windows.devices.sensors.custom": "^0.1.6",
"@nodert-win11-22h2/windows.devices.serialcommunication": "^0.1.6",
"@nodert-win11-22h2/windows.devices.smartcards": "^0.1.6",
"@nodert-win11-22h2/windows.devices.sms": "^0.1.6",
"@nodert-win11-22h2/windows.devices.spi": "^0.1.6",
"@nodert-win11-22h2/windows.devices.spi.provider": "^0.1.6",
"@nodert-win11-22h2/windows.devices.usb": "^0.1.6",
"@nodert-win11-22h2/windows.devices.wifi": "^0.1.6",
"@nodert-win11-22h2/windows.devices.wifidirect": "^0.1.6",
"@nodert-win11-22h2/windows.devices.wifidirect.services": "^0.1.6",
"@nodert-win11-22h2/windows.embedded.devicelockdown": "^0.1.6",
"@nodert-win11-22h2/windows.foundation.collections": "^0.1.6",
"@nodert-win11-22h2/windows.foundation.diagnostics": "^0.1.6",
"@nodert-win11-22h2/windows.foundation.metadata": "^0.1.6",
"@nodert-win11-22h2/windows.foundation.numerics": "^0.1.6",
"@nodert-win11-22h2/windows.gaming.input": "^0.1.6",
"@nodert-win11-22h2/windows.gaming.input.custom": "^0.1.6",
"@nodert-win11-22h2/windows.gaming.input.forcefeedback": "^0.1.6",
"@nodert-win11-22h2/windows.gaming.ui": "^0.1.6",
"@nodert-win11-22h2/windows.gaming.xboxlive.storage": "^0.1.6",
"@nodert-win11-22h2/windows.globalization": "^0.1.6",
"@nodert-win11-22h2/windows.globalization.collation": "^0.1.6",
"@nodert-win11-22h2/windows.globalization.datetimeformatting": "^0.1.6",
"@nodert-win11-22h2/windows.globalization.fonts": "^0.1.6",
"@nodert-win11-22h2/windows.globalization.numberformatting": "^0.1.6",
"@nodert-win11-22h2/windows.globalization.phonenumberformatting": "^0.1.6",
"@nodert-win11-22h2/windows.graphics": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.capture": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.directx": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.directx.direct3d11": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.display.core": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.effects": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.holographic": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.imaging": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing.optiondetails": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing.printsupport": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing.printticket": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing.workflow": "^0.1.6",
"@nodert-win11-22h2/windows.graphics.printing3d": "^0.1.6",
"@nodert-win11-22h2/windows.management": "^0.1.6",
"@nodert-win11-22h2/windows.management.core": "^0.1.6",
"@nodert-win11-22h2/windows.management.deployment": "^0.1.6",
"@nodert-win11-22h2/windows.management.policies": "^0.1.6",
"@nodert-win11-22h2/windows.management.update": "^0.1.6",
"@nodert-win11-22h2/windows.management.workplace": "^0.1.6",
"@nodert-win11-22h2/windows.media": "^0.1.6",
"@nodert-win11-22h2/windows.media.appbroadcasting": "^0.1.6",
"@nodert-win11-22h2/windows.media.apprecording": "^0.1.6",
"@nodert-win11-22h2/windows.media.audio": "^0.1.6",
"@nodert-win11-22h2/windows.media.capture": "^0.1.6",
"@nodert-win11-22h2/windows.media.capture.core": "^0.1.6",
"@nodert-win11-22h2/windows.media.capture.frames": "^0.1.6",
"@nodert-win11-22h2/windows.media.casting": "^0.1.6",
"@nodert-win11-22h2/windows.media.closedcaptioning": "^0.1.6",
"@nodert-win11-22h2/windows.media.contentrestrictions": "^0.1.6",
"@nodert-win11-22h2/windows.media.control": "^0.1.6",
"@nodert-win11-22h2/windows.media.core": "^0.1.6",
"@nodert-win11-22h2/windows.media.devices": "^0.1.6",
"@nodert-win11-22h2/windows.media.devices.core": "^0.1.6",
"@nodert-win11-22h2/windows.media.dialprotocol": "^0.1.6",
"@nodert-win11-22h2/windows.media.editing": "^0.1.6",
"@nodert-win11-22h2/windows.media.effects": "^0.1.6",
"@nodert-win11-22h2/windows.media.faceanalysis": "^0.1.6",
"@nodert-win11-22h2/windows.media.import": "^0.1.6",
"@nodert-win11-22h2/windows.media.mediaproperties": "^0.1.6",
"@nodert-win11-22h2/windows.media.miracast": "^0.1.6",
"@nodert-win11-22h2/windows.media.ocr": "^0.1.6",
"@nodert-win11-22h2/windows.media.playback": "^0.1.6",
"@nodert-win11-22h2/windows.media.playlists": "^0.1.6",
"@nodert-win11-22h2/windows.media.playto": "^0.1.6",
"@nodert-win11-22h2/windows.media.protection": "^0.1.6",
"@nodert-win11-22h2/windows.media.protection.playready": "^0.1.6",
"@nodert-win11-22h2/windows.media.render": "^0.1.6",
"@nodert-win11-22h2/windows.media.speechrecognition": "^0.1.6",
"@nodert-win11-22h2/windows.media.speechsynthesis": "^0.1.6",
"@nodert-win11-22h2/windows.media.streaming.adaptive": "^0.1.6",
"@nodert-win11-22h2/windows.media.transcoding": "^0.1.6",
"@nodert-win11-22h2/windows.networking": "^0.1.6",
"@nodert-win11-22h2/windows.networking.backgroundtransfer": "^0.1.6",
"@nodert-win11-22h2/windows.networking.connectivity": "^0.1.6",
"@nodert-win11-22h2/windows.networking.networkoperators": "^0.1.6",
"@nodert-win11-22h2/windows.networking.proximity": "^0.1.6",
"@nodert-win11-22h2/windows.networking.pushnotifications": "^0.1.6",
"@nodert-win11-22h2/windows.networking.servicediscovery.dnssd": "^0.1.6",
"@nodert-win11-22h2/windows.networking.sockets": "^0.1.6",
"@nodert-win11-22h2/windows.networking.vpn": "^0.1.6",
"@nodert-win11-22h2/windows.networking.xboxlive": "^0.1.6",
"@nodert-win11-22h2/windows.perception": "^0.1.6",
"@nodert-win11-22h2/windows.perception.automation.core": "^0.1.6",
"@nodert-win11-22h2/windows.perception.people": "^0.1.6",
"@nodert-win11-22h2/windows.perception.spatial": "^0.1.6",
"@nodert-win11-22h2/windows.perception.spatial.surfaces": "^0.1.6",
"@nodert-win11-22h2/windows.phone.applicationmodel": "^0.1.6",
"@nodert-win11-22h2/windows.phone.devices.notification": "^0.1.6",
"@nodert-win11-22h2/windows.phone.devices.power": "^0.1.6",
"@nodert-win11-22h2/windows.phone.management.deployment": "^0.1.6",
"@nodert-win11-22h2/windows.phone.media.devices": "^0.1.6",
"@nodert-win11-22h2/windows.phone.notification.management": "^0.1.6",
"@nodert-win11-22h2/windows.phone.personalinformation": "^0.1.6",
"@nodert-win11-22h2/windows.phone.personalinformation.provisioning": "^0.1.6",
"@nodert-win11-22h2/windows.phone.speech.recognition": "^0.1.6",
"@nodert-win11-22h2/windows.phone.startscreen": "^0.1.6",
"@nodert-win11-22h2/windows.phone.system": "^0.1.6",
"@nodert-win11-22h2/windows.phone.system.power": "^0.1.6",
"@nodert-win11-22h2/windows.phone.system.profile": "^0.1.6",
"@nodert-win11-22h2/windows.phone.system.userprofile.gameservices.core": "^0.1.6",
"@nodert-win11-22h2/windows.phone.ui.input": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.identity": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.identity.core": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.identity.provider": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.onlineid": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.web": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.web.core": "^0.1.6",
"@nodert-win11-22h2/windows.security.authentication.web.provider": "^0.1.6",
"@nodert-win11-22h2/windows.security.authorization.appcapabilityaccess": "^0.1.6",
"@nodert-win11-22h2/windows.security.credentials": "^0.1.6",
"@nodert-win11-22h2/windows.security.credentials.ui": "^0.1.6",
"@nodert-win11-22h2/windows.security.cryptography": "^0.1.6",
"@nodert-win11-22h2/windows.security.cryptography.certificates": "^0.1.6",
"@nodert-win11-22h2/windows.security.cryptography.core": "^0.1.6",
"@nodert-win11-22h2/windows.security.cryptography.dataprotection": "^0.1.6",
"@nodert-win11-22h2/windows.security.dataprotection": "^0.1.6",
"@nodert-win11-22h2/windows.security.enterprisedata": "^0.1.6",
"@nodert-win11-22h2/windows.security.exchangeactivesyncprovisioning": "^0.1.6",
"@nodert-win11-22h2/windows.security.isolation": "^0.1.6",
"@nodert-win11-22h2/windows.services.cortana": "^0.1.6",
"@nodert-win11-22h2/windows.services.maps": "^0.1.6",
"@nodert-win11-22h2/windows.services.maps.guidance": "^0.1.6",
"@nodert-win11-22h2/windows.services.maps.localsearch": "^0.1.6",
"@nodert-win11-22h2/windows.services.maps.offlinemaps": "^0.1.6",
"@nodert-win11-22h2/windows.services.store": "^0.1.6",
"@nodert-win11-22h2/windows.services.targetedcontent": "^0.1.6",
"@nodert-win11-22h2/windows.storage": "^0.1.6",
"@nodert-win11-22h2/windows.storage.accesscache": "^0.1.6",
"@nodert-win11-22h2/windows.storage.bulkaccess": "^0.1.6",
"@nodert-win11-22h2/windows.storage.compression": "^0.1.6",
"@nodert-win11-22h2/windows.storage.fileproperties": "^0.1.6",
"@nodert-win11-22h2/windows.storage.pickers": "^0.1.6",
"@nodert-win11-22h2/windows.storage.pickers.provider": "^0.1.6",
"@nodert-win11-22h2/windows.storage.provider": "^0.1.6",
"@nodert-win11-22h2/windows.storage.search": "^0.1.6",
"@nodert-win11-22h2/windows.storage.streams": "^0.1.6",
"@nodert-win11-22h2/windows.system": "^0.1.6",
"@nodert-win11-22h2/windows.system.diagnostics": "^0.1.6",
"@nodert-win11-22h2/windows.system.diagnostics.deviceportal": "^0.1.6",
"@nodert-win11-22h2/windows.system.diagnostics.telemetry": "^0.1.6",
"@nodert-win11-22h2/windows.system.diagnostics.tracereporting": "^0.1.6",
"@nodert-win11-22h2/windows.system.display": "^0.1.6",
"@nodert-win11-22h2/windows.system.implementation.fileexplorer": "^0.1.6",
"@nodert-win11-22h2/windows.system.inventory": "^0.1.6",
"@nodert-win11-22h2/windows.system.power": "^0.1.6",
"@nodert-win11-22h2/windows.system.power.diagnostics": "^0.1.6",
"@nodert-win11-22h2/windows.system.profile": "^0.1.6",
"@nodert-win11-22h2/windows.system.profile.systemmanufacturers": "^0.1.6",
"@nodert-win11-22h2/windows.system.remotedesktop": "^0.1.6",
"@nodert-win11-22h2/windows.system.remotedesktop.input": "^0.1.6",
"@nodert-win11-22h2/windows.system.remotesystems": "^0.1.6",
"@nodert-win11-22h2/windows.system.threading": "^0.1.6",
"@nodert-win11-22h2/windows.system.threading.core": "^0.1.6",
"@nodert-win11-22h2/windows.system.update": "^0.1.6",
"@nodert-win11-22h2/windows.system.userprofile": "^0.1.6",
"@nodert-win11-22h2/windows.ui": "^0.1.6",
"@nodert-win11-22h2/windows.ui.accessibility": "^0.1.6",
"@nodert-win11-22h2/windows.ui.applicationsettings": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.desktop": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.diagnostics": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.effects": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.interactions": "^0.1.6",
"@nodert-win11-22h2/windows.ui.composition.scenes": "^0.1.6",
"@nodert-win11-22h2/windows.ui.core.animationmetrics": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input.inking": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input.inking.analysis": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input.inking.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.input.spatial": "^0.1.6",
"@nodert-win11-22h2/windows.ui.notifications": "^0.1.6",
"@nodert-win11-22h2/windows.ui.notifications.management": "^0.1.6",
"@nodert-win11-22h2/windows.ui.popups": "^0.1.6",
"@nodert-win11-22h2/windows.ui.shell": "^0.1.6",
"@nodert-win11-22h2/windows.ui.startscreen": "^0.1.6",
"@nodert-win11-22h2/windows.ui.text": "^0.1.6",
"@nodert-win11-22h2/windows.ui.text.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.uiautomation": "^0.1.6",
"@nodert-win11-22h2/windows.ui.uiautomation.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.viewmanagement": "^0.1.6",
"@nodert-win11-22h2/windows.ui.viewmanagement.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.webui": "^0.1.6",
"@nodert-win11-22h2/windows.ui.webui.core": "^0.1.6",
"@nodert-win11-22h2/windows.ui.windowmanagement": "^0.1.6",
"@nodert-win11-22h2/windows.web": "^0.1.6",
"@nodert-win11-22h2/windows.web.atompub": "^0.1.6",
"@nodert-win11-22h2/windows.web.http": "^0.1.6",
"@nodert-win11-22h2/windows.web.http.diagnostics": "^0.1.6",
"@nodert-win11-22h2/windows.web.http.filters": "^0.1.6",
"@nodert-win11-22h2/windows.web.http.headers": "^0.1.6",
"@nodert-win11-22h2/windows.web.syndication": "^0.1.6",
"@nodert-win11-22h2/windows.web.ui": "^0.1.6",
"@nodert-win11-22h2/windows.web.ui.interop": "^0.1.6",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@xan105/shell": "^0.1.0",
"eslint": "^8.56.0",
"nan": "^2.20.0",
"node-gyp": "^10.1.0",
"patch-package": "^8.0.0",
"prebuildify": "^6.0.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.12.2",
"npm": "^10.2.4"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"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"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.56.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.14",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
"integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
"dev": true
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dev": true,
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodert-win10-rs4/windows.devices.lights": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/@nodert-win10-rs4/windows.devices.lights/-/windows.devices.lights-0.4.4.tgz",
"integrity": "sha512-XRhFJdLI0seycP2UyajrU4Um8VQLSriWw8NgY9iz6avUkNC6XNO9TdmzNvCW+DY1k7xJggesowBWNX2qEdepMQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win10-rs4/windows.devices.printers": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/@nodert-win10-rs4/windows.devices.printers/-/windows.devices.printers-0.4.4.tgz",
"integrity": "sha512-VMJH5hyFp0r+O6C/Y1T2bEkIozy4gtHawo0D0joUCalNIzhEgLN3Ka4IdIFZhop8YLPtLBVBDZ3Qe1KCj8q5wA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win10-rs4/windows.foundation": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/@nodert-win10-rs4/windows.foundation/-/windows.foundation-0.4.4.tgz",
"integrity": "sha512-gA/jMwvKkEm+AFyIc9L6TZvP+DjcL54gkTOY0Izvcfmj3ctUiLFUqs1MdBJ5fjhTi0COPRhoq2eDSNl6t3IWEg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win10-rs4/windows.graphics.display": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/@nodert-win10-rs4/windows.graphics.display/-/windows.graphics.display-0.4.4.tgz",
"integrity": "sha512-LtawoxlUwUT5HJGfjN5HTbJ2+kqiPyG1Hu/Uv8jr50gkDRhqNKSAbRe1vKYD9/jhw5d4aa3UWdLU35kmkj444g==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win10-rs4/windows.ui.core": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/@nodert-win10-rs4/windows.ui.core/-/windows.ui.core-0.4.4.tgz",
"integrity": "sha512-u+hljdgtx7s+e5EXKylpNro6QTtnijTUTpQ8vCFJQsc4gWCY0tnTStcPF4iDy1JfFXlOkmFGwYvURvAqwtF9VA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.ai.machinelearning": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.ai.machinelearning/-/windows.ai.machinelearning-0.1.6.tgz",
"integrity": "sha512-4egfuRqc08KZ+hhAAOReG7HtKxdMtm7aCEACSGn8CkS/ehRds9buKAZMW9dBhVxFbZnkQWK8CznpDlGzqRvjMw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel/-/windows.applicationmodel-0.1.6.tgz",
"integrity": "sha512-7ALfec45OpndITK3IiRV88tdBmAc/T7ajS0ZLFNC1DivSY9k8gZF87XXs8EN3W5epR7B0P9ffG5scVQw0+AWDw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.activation": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.activation/-/windows.applicationmodel.activation-0.1.6.tgz",
"integrity": "sha512-ouZnH9AI1hvzStYxt7jS6cpJlPEfNipUrtuhgDUEsGJDAeB3UkxftOhAzOU9Pa1TuclCtrJzmm5E4gqWJ4jS3w==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.appextensions": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.appextensions/-/windows.applicationmodel.appextensions-0.1.6.tgz",
"integrity": "sha512-PGfqzA+CCMkGAon5ofQKwQzqmoy7AlCEpBCA5iIj7zztSLz22XUMiNjbpoGHSHTOfoZfvB+cxbpyEZDPGCL/UQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.appointments": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.appointments/-/windows.applicationmodel.appointments-0.1.6.tgz",
"integrity": "sha512-+1yE5X+KMjJEM9X1P54TWXJVwCri2KKuMDYEjlFj3HYtUW3xUQonQhBC0EgqWaUXy/PkKbgjAt7jdKUdCcSztA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.appointments.appointmentsprovider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.appointments.appointmentsprovider/-/windows.applicationmodel.appointments.appointmentsprovider-0.1.6.tgz",
"integrity": "sha512-dIxfjmp61All/xiCI6tLbFXZJg94Qr8DdxVA36ngaWnC6G/CinTGcz81NpGYvXEpSkbWevkP72uN81RCGWH/0w==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.appointments.dataprovider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.appointments.dataprovider/-/windows.applicationmodel.appointments.dataprovider-0.1.6.tgz",
"integrity": "sha512-HvksmaVQOGDt4gs06R1+fREhEzkKp77T3Ql6fT8YU66vHKiAZq5y7glPcvk/PXpLdWg6VMER4Y2hsMCJLyAwlw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.appservice": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.appservice/-/windows.applicationmodel.appservice-0.1.6.tgz",
"integrity": "sha512-uw0xoIAdnJ/Lin/gXscRC8RoXPk200QZanDlENr/YjG0GTWIovTOPrKE0F08Iz7dNVlqCFypfQtFEkEgwP80aw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.background": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.background/-/windows.applicationmodel.background-0.1.6.tgz",
"integrity": "sha512-d0nNpzyT+rUi/MRgjH9vASUHZls393WDoy8TWYlxiZTm0sydrQJCp2/S7o9tYMux0UGGuvYuMohwJXJWTqKJew==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.calls": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.calls/-/windows.applicationmodel.calls-0.1.6.tgz",
"integrity": "sha512-JhjKEfYup6hbEYoWaW6Oe/wqoGtEYyDpskuXGXSyduquQUY5Mg2Oq+o4hhWVVodCcHV3d9//bJxidTP7ajsd8g==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.calls.background": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.calls.background/-/windows.applicationmodel.calls.background-0.1.6.tgz",
"integrity": "sha512-Tj7bBj/UmcUWcEcak+xqvBv1ho4DBBWli6KpRvZx2fBUREUjnuaubInSAK4gOYmFNRWqbuwuxcGmmipJMCIqNQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.calls.provider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.calls.provider/-/windows.applicationmodel.calls.provider-0.1.6.tgz",
"integrity": "sha512-5iz/2DE0EfJudM1CO0Xkm5z0DZBlkc+XqwCDdEFk1OfxdV+qt8nFY7ruYpPDJ5Al2RykFJOLJzFnSrNn+GrzKw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.chat": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.chat/-/windows.applicationmodel.chat-0.1.6.tgz",
"integrity": "sha512-97Yv/h7LA1EOrIhda93GgyHBjLlK5V0kq2NokMkT0EDkOT4Xevb8hV+YJNhaQvmMs/D7/6X7nJ733Jr2JA2NwQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.communicationblocking": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.communicationblocking/-/windows.applicationmodel.communicationblocking-0.1.6.tgz",
"integrity": "sha512-r4vqcaqDFWXS/bE3kspCDfo3gf27m5PI8QcIqZTIT6Ec0LW8bPj/k4P5/MhAGz5mX/2FNIBZ6tT+OrLU3ELkpg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.contacts": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.contacts/-/windows.applicationmodel.contacts-0.1.6.tgz",
"integrity": "sha512-6gJCarAe3akz7PCVbqPU0BJn1UuRDv79N241EnDfyUQr2KYzFAjHmSsJAGcyvsGNjtjEq38s8jzPdYuHZdksyQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.contacts.dataprovider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.contacts.dataprovider/-/windows.applicationmodel.contacts.dataprovider-0.1.6.tgz",
"integrity": "sha512-DypdsMtHAUzg5YhqFkOx7o/JHTY7x68aGLsEyN4WWfyiFzvRxOJkj19rozV8HIGk6PmZ2lmY8AcIGCh0iX0dRg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.contacts.provider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.contacts.provider/-/windows.applicationmodel.contacts.provider-0.1.6.tgz",
"integrity": "sha512-QmEsjd7yqax/nNZC24oHE90j+ZiFFEpdqeltkJd68Ooa0aTh5zdnjdAcVV568VjDfdjswiRio+SbDCb4BHI8iw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.conversationalagent": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.conversationalagent/-/windows.applicationmodel.conversationalagent-0.1.6.tgz",
"integrity": "sha512-kPQyw/44h7A+M5m/3LDlG6IRv6LYBoWCXOu4i2SDIBVGAQTye0bNZy+jZu5Xxqbpi3rhDlyDndPyadEabtCUCA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.core": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.core/-/windows.applicationmodel.core-0.1.6.tgz",
"integrity": "sha512-xuNAcRZFFl2lhncm4JI0w6JAJZVeBLYs9TMUueQJmPjlOPfhbYpDwLNOEZMEcRSLB/uDH3YzCxuwOR+Ax5cCwg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.datatransfer": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.datatransfer/-/windows.applicationmodel.datatransfer-0.1.6.tgz",
"integrity": "sha512-dCrxWxAsRaPaz6ETQljWDOg9rMTT31YUAstAGWIWywxU5aMyttFduiOwmlxOmktl6vFTtZj7oOXT/UH6dzM+tQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop/-/windows.applicationmodel.datatransfer.dragdrop-0.1.6.tgz",
"integrity": "sha512-VAmvDDqNM7vvZOIVxCmxRx291NnKO2Rwkah8RN34qkkdvb4CRHFa5Ycrvw6uUEtA/g83UWBtqOhTDHU+3H3GGQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop.core": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.datatransfer.dragdrop.core/-/windows.applicationmodel.datatransfer.dragdrop.core-0.1.6.tgz",
"integrity": "sha512-WWCRrD982pEioxWlkX3Ty/fShNWvd/evk3AhuYwZ7KFCKkyfJ6NffR7Emh5cAvJ4EtfhupPSqiwxDz3cohg6Mw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.datatransfer.sharetarget": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.datatransfer.sharetarget/-/windows.applicationmodel.datatransfer.sharetarget-0.1.6.tgz",
"integrity": "sha512-VQ/9XNaWQrEfmQrPzBpc+iDRjzErEqv3vFHhqHcIxi2MNWi+geb1ZZLSXxjI5TqsZXo7tg/5TdRyn8yM0cJIew==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.email": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.email/-/windows.applicationmodel.email-0.1.6.tgz",
"integrity": "sha512-x+xMOI3Gu8vWYIsgmMmxwRxsccGrwZLBCfvNT/S2kxr/KNOW0h6CFZfDJphQNTFkofXdgdu8DqX4Cm6S3muPWQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.email.dataprovider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.email.dataprovider/-/windows.applicationmodel.email.dataprovider-0.1.6.tgz",
"integrity": "sha512-6Z/i2gLj2Ua88WwHCBZj1JXd0IgJtprQ7HcicMKpNggTffekfef2+WRjPy5q6+w8z1kO3DUAH6n3xZbetijE+g==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.extendedexecution": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.extendedexecution/-/windows.applicationmodel.extendedexecution-0.1.6.tgz",
"integrity": "sha512-g20jRxqfLGncY9FnBqE+yt4ttbhjqSau7dw1uCobVI2XLYLkByG/dwSIfJK1wp/y0L3Z5ZaPIGAKdKqTWro+2A==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.extendedexecution.foreground": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.extendedexecution.foreground/-/windows.applicationmodel.extendedexecution.foreground-0.1.6.tgz",
"integrity": "sha512-RFUQ0dAl4szchpCV+H8rwsMq9Ab21rhaV35ek80J2OnzRivtelnmKHOinqoymwk1AZdCR2ZO23Zpt3XqzuR0qw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.holographic": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.holographic/-/windows.applicationmodel.holographic-0.1.6.tgz",
"integrity": "sha512-rD3w/ZHVa/Ax82heXhUYtrlQurlUoDq0p/ji5eERpCgf9foZiwKJdRViwvvqY6i7B6hYKpEyzyLDCNJcDIlWTg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.lockscreen": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.lockscreen/-/windows.applicationmodel.lockscreen-0.1.6.tgz",
"integrity": "sha512-bUx3yJT3SEfwYBhRWFglt8d4DofkOVYOCwmURZ/IjJj7el+lF3WwGLDznHX+W4XNTxYVX3YC/TBQj5zV4hUyAQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.payments": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.payments/-/windows.applicationmodel.payments-0.1.6.tgz",
"integrity": "sha512-GraENp/kYDEr9NqF7TZ506I9Riyh84F7KQl7nAac0k6VTlD5qmvZQRn5FUGj0ZJDh6UNE5XrwIbVS46acLqBHw==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.payments.provider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.payments.provider/-/windows.applicationmodel.payments.provider-0.1.6.tgz",
"integrity": "sha512-7L/lifAnbnN1IcVhpzZabE4Ls3G2WOC9Md8LieIC4gYqHrKt/vqAsvSY9JddEl95jJ9fdihJwp7GR7iMgFz8cA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.resources": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.resources/-/windows.applicationmodel.resources-0.1.6.tgz",
"integrity": "sha512-n4PjKxhcnm7dU84IIlPNvn57LDbf2TiaRpPTHP/qb/QVwudHuhEsfNi065HxXo9Gi9r2lj7vAS/DolZS+yQc/A==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.resources.core": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.resources.core/-/windows.applicationmodel.resources.core-0.1.6.tgz",
"integrity": "sha512-DbNfEUAWeDJQSZ7/NBJpB/Cr4xgBfsdKsIQvVnJftnqbEXnibUZtgmRY3M5t8JFjL6Bj7SVGSpp+Nlcf4BB0rA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.resources.management": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.resources.management/-/windows.applicationmodel.resources.management-0.1.6.tgz",
"integrity": "sha512-GhRR+FZi2SclkQ1sStOfXiwProhvBaL82rTAYyUf4If5aGdj1gbDS3eVszCir3hq+uw+pwCYHZJs5R5IMcMNUg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.search": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.search/-/windows.applicationmodel.search-0.1.6.tgz",
"integrity": "sha512-CnXcpiCkAJulzVuHVejrAy31NzGXOwkfvpNDxKdySQk4M6NjAR1jaM2BCqj9Oe1RYFbRhfHA2Q9dJ6ek4VoTww==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.search.core": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.search.core/-/windows.applicationmodel.search.core-0.1.6.tgz",
"integrity": "sha512-LJRG9bDpNC4b/Mkvckb5zHaERBXbWl4RPE0W4KHW6MuRgkkvfzVzDptN6QktPUG7HAWEIPP3UPnnYnjUH0cKfg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.socialinfo": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.socialinfo/-/windows.applicationmodel.socialinfo-0.1.6.tgz",
"integrity": "sha512-X8c1xA5H96rZZdaYgZkOuO9ZQOUJ1w4NvJL+yVn+KTmfqB0TNT2GS0KsHs6kWwnBqjR+sAKPk7UIKsTDGQMW2Q==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.socialinfo.provider": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.socialinfo.provider/-/windows.applicationmodel.socialinfo.provider-0.1.6.tgz",
"integrity": "sha512-oBRjfNCc5EtnLKcFRdY2O1y7cgy4g+TvASkyabhnPHN0iXbNl7evlXQH3BGzptp5XwDaFBzSTmsRJasO6InkMA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.store": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.store/-/windows.applicationmodel.store-0.1.6.tgz",
"integrity": "sha512-Fnw6kXQZ7TeCoTXOuS8d3qjMx8bLphDFp7SQ6wNp706PGHIiOzGl6k4VASc8hb905i1hKnm33rK/hO0gvbgxPA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.store.licensemanagement": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.store.licensemanagement/-/windows.applicationmodel.store.licensemanagement-0.1.6.tgz",
"integrity": "sha512-BSfLW/KbiL5J/9wCJT07C8EFZScFM7Yj/ZIne6OGhW+49U5TmJjZg0UXIwaZBZCZaNAXMNgtCOZ/S2OZzcRsuQ==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.useractivities": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.useractivities/-/windows.applicationmodel.useractivities-0.1.6.tgz",
"integrity": "sha512-VdcaSlPSiGWgJbrhPJdQgXXuCGk6Y+jYV0Qvt6UE5p9nA6flifP57howTPbWZLjcqp6wm59gyk4BSJQsZorkgg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.useractivities.core": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@nodert-win11-22h2/windows.applicationmodel.useractivities.core/-/windows.applicationmodel.useractivities.core-0.1.6.tgz",
"integrity": "sha512-UVW0dLUBZI3f+h+89/DF0Jp5IcMWjDtZQJ97nRtakowhtfIcdRnT5ppasrM3Ae49DdNVHB5loCBoeumo5CupzA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"nan": "latest"
}
},
"node_modules/@nodert-win11-22h2/windows.applicationmodel.userdataaccounts": {