-
Notifications
You must be signed in to change notification settings - Fork 16
/
package-lock.json
5054 lines (5054 loc) · 199 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": "@aicombinator/bot",
"version": "0.4.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@aicombinator/bot",
"version": "0.4.1",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@activepieces/piece-airtable": "^0.2.0",
"@activepieces/piece-asana": "^0.2.0",
"@activepieces/piece-bannerbear": "^0.2.0",
"@activepieces/piece-binance": "^0.2.0",
"@activepieces/piece-blackbaud": "^0.2.0",
"@activepieces/piece-clickup": "^0.2.0",
"@activepieces/piece-discord": "^0.2.0",
"@activepieces/piece-drip": "^0.2.0",
"@activepieces/piece-dropbox": "^0.2.0",
"@activepieces/piece-figma": "^0.2.0",
"@activepieces/piece-gmail": "^0.2.0",
"@activepieces/piece-google-calendar": "^0.2.0",
"@activepieces/piece-google-contacts": "^0.2.0",
"@activepieces/piece-google-drive": "^0.2.0",
"@activepieces/piece-google-sheets": "^0.2.0",
"@activepieces/piece-google-tasks": "^0.2.0",
"@activepieces/piece-hackernews": "^0.2.0",
"@activepieces/piece-hubspot": "^0.2.0",
"@activepieces/piece-intercom": "^0.2.0",
"@activepieces/piece-mailchimp": "^0.2.0",
"@activepieces/piece-openai": "^0.2.0",
"@activepieces/piece-pipedrive": "^0.2.0",
"@activepieces/piece-posthog": "^0.2.0",
"@activepieces/piece-sendgrid": "^0.2.0",
"@activepieces/piece-slack": "^0.2.0",
"@activepieces/piece-square": "^0.2.0",
"@activepieces/piece-stripe": "^0.2.0",
"@activepieces/piece-telegram-bot": "^0.2.0",
"@activepieces/piece-todoist": "^0.2.0",
"@activepieces/piece-trello": "^0.2.0",
"@activepieces/piece-twilio": "^0.2.0",
"@activepieces/piece-typeform": "^0.2.0",
"@activepieces/piece-wordpress": "^0.2.0",
"@activepieces/piece-youtube": "^0.2.0",
"@activepieces/piece-zoom": "^0.2.0",
"@supabase/supabase-js": "^2.10.0",
"inquirer": "^9.1.5",
"puppeteer": "^19.7.2",
"puppeteer-extra": "^3.3.6",
"totp-generator": "^0.0.14"
},
"bin": {
"bot": "cli.js"
}
},
"node_modules/@activepieces/framework": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/framework/-/framework-0.2.0.tgz",
"integrity": "sha512-GlBXcflGEe46GFAbhOdsAmnKtqXahEBvr42D5rWKfIJnkbOtpiLKQbtUTWamhh+b3lGliUCXKzdInfYvQY3o6A==",
"dependencies": {
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-airtable": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-airtable/-/piece-airtable-0.2.0.tgz",
"integrity": "sha512-RzKgxNwuzfzeHoaI1FbiOOHI3tJo8+OwylIWGOXQnrNxYH/9oQlQSQFUy++eonYf30uPlolYvUsJrip9XjF2hg==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"airtable": "0.11.6",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-asana": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-asana/-/piece-asana-0.2.0.tgz",
"integrity": "sha512-LiQIFgDI8LqY9JJAyPzMDVyAZkSLxEsbCFQKtiqpXT5hqpjug1idTyGPlVpZpO3WuYHp+yfMoTnayxjT/XxY/w==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-bannerbear": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-bannerbear/-/piece-bannerbear-0.2.0.tgz",
"integrity": "sha512-AE9JNquVmQgkSTDVFdR3hWPsmKOkZEv0RVuAVxixDdD4sT9AeJNL+Y20j6c5W4BUxjH+1k2RFHSFDTr3j5cevw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-binance": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-binance/-/piece-binance-0.2.0.tgz",
"integrity": "sha512-k0aL7i1dwxcpjN/vHmbZk+I2817QTFkeIMP2MVl2bkmH+ue8KMAXxFgwAt46XCQ+OhVmQD6pJkoBzr4psLhU6A==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-blackbaud": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-blackbaud/-/piece-blackbaud-0.2.0.tgz",
"integrity": "sha512-X87AzVpGIgWYgGQHOkC7f6ry0QP1ReXL3IfX/vRkYVxP4e7thV+TFBlcrrXjegYj4lOzCL0NIe2kSR68JE6jPw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"ajv": "8.12.0",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-clickup": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-clickup/-/piece-clickup-0.2.0.tgz",
"integrity": "sha512-adWz5C0QpHQ7Vc58l0bGGdHRR6o+CwkeyEN2LkBDz+AZ1pAT+nwzRTpdMWYishYFoFc38/bysiQ5v3C/NCMYKQ==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-discord": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-discord/-/piece-discord-0.2.0.tgz",
"integrity": "sha512-uF8pxyWDQ8XW6dqexKq5a5RWthKQX+11We2w/CAJrAn/y5z1wjnrG8eYZMSr6AZr+a5mLU64qXXYbpx6YAy2pw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-drip": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-drip/-/piece-drip-0.2.0.tgz",
"integrity": "sha512-pmV/t1+Ah8BnzAtNBe37/f36EycL74yw8BxsIsqWWvqZzIWOK7nTzm4Vh7svmsnaqJCsC/mbwbSnkZdPEqp98w==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-dropbox": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-dropbox/-/piece-dropbox-0.2.0.tgz",
"integrity": "sha512-2YThPG9TQb5q/2yMPZrnTZVyAqBR58g/DvIhZC9RLK3p7MTtFzrUcNf8hi3PYuoNUEFBP9kGWbh9EhQyCwgDtA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-figma": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-figma/-/piece-figma-0.2.0.tgz",
"integrity": "sha512-O5eQKej2GQKfh8gnEI067w3TpWnerdu/fOftPeeEwJm5AytPzUtxTnYmq6xUaATYH/srf1aZ9x9Sn5FHZsDRnQ==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-gmail": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-gmail/-/piece-gmail-0.2.0.tgz",
"integrity": "sha512-UD2/6Lj8aAo8MPCjwM6o0caC0u582bxq8Pty+cAGLhVeBwMrk8RffZyFtOyrsXVDmp2MvcMWe+NF1i3mGRYAnw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"dayjs": "1.11.7",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-google-calendar": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-google-calendar/-/piece-google-calendar-0.2.0.tgz",
"integrity": "sha512-TLXNovNQ6j3SFqtcF/1pGN8arp1dULzh6bQLzuza6meZ0XbE6vNpsGXhAOiZ4uk2pR7mz7JNe6OBbHawuyQk+Q==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-google-contacts": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-google-contacts/-/piece-google-contacts-0.2.0.tgz",
"integrity": "sha512-bBVpUmvqFFir7kAbT8hVXaEQdUXbB1wwlQ+0eH9XCeIyaxj/i39ia3lmNORM1IPePGa1kFgqendS5F8mkMMJRg==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-google-drive": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-google-drive/-/piece-google-drive-0.2.0.tgz",
"integrity": "sha512-/a1cNxxf76dRXG2a4FoKdjc4Did1PLA2yl0ta/bN1gHYqQjsYs1M8d7ssKIMnmXlf6bI/SjJ5wgJLj+cjmy24Q==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"form-data": "4.0.0",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-google-sheets": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-google-sheets/-/piece-google-sheets-0.2.0.tgz",
"integrity": "sha512-xC8N/CCBAnZTwQOrwTg9wE8SzL7yirEAarwV0bHgHARtHBEr5CxLT75GfpLy+4VWAunmgnvzF/9/1qn5r6lYLA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-google-tasks": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-google-tasks/-/piece-google-tasks-0.2.0.tgz",
"integrity": "sha512-W0SYAFnduRkLq9w9y0gdOLlseQC8AdDMYaUqCa1XRLdw3V595DLH/b2AU1whIMdf6/r0ULFWcsTqozcJxoJTqg==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-hackernews": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-hackernews/-/piece-hackernews-0.2.0.tgz",
"integrity": "sha512-qaeStemFlOrY8cGhBuMJZFCmPeQgHZmzvs1kT7B2jCbhWz6skiSyzkgH9d1ZfvjcTdHIJBb6SQKowAlcy0nZzw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-hubspot": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-hubspot/-/piece-hubspot-0.2.0.tgz",
"integrity": "sha512-qLfGXiYmmxe3aTAqSFBdSMZ6tPSh4Zb9hG+Ekp5MafJEaFIyhCiojR0oFp8Yk0q1K036EipuX7s0V2CrNHAt/g==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-intercom": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-intercom/-/piece-intercom-0.2.0.tgz",
"integrity": "sha512-rsDXUe1SCq3pZBWN9767L3d/ZJELO2B7ZR3EXZwnuJMFO78w7fTp2mIypOFLWCsekJ+teOGZZNYosCV9RP7Q8w==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-mailchimp": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-mailchimp/-/piece-mailchimp-0.2.0.tgz",
"integrity": "sha512-sX0JmOj/J3x7Hu8mvppAH1DsztqgjizsnMvnN02MllMejHo6i6hBjbNamKCZIp2QOfIiNRreGgcnlCXo48xXdg==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@mailchimp/mailchimp_marketing": "3.0.80",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-openai": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-openai/-/piece-openai-0.2.0.tgz",
"integrity": "sha512-uP0H+hrakJfjCKM3wZ+6V/cetXXd/oykYzGZUo9ZJwt+7WMvA941sgU4LHALz1WADjodcNB8vICpnhNaeEPOww==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"openai": "3.2.1",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-pipedrive": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-pipedrive/-/piece-pipedrive-0.2.0.tgz",
"integrity": "sha512-Hsqb7uEBHspBng7h59EVnEc9NN+eJNV7vfKnpOHMFg1C+42xS3hjRijFxCu0KbVdQ1jC03mHtTuoxePFavJIag==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-posthog": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-posthog/-/piece-posthog-0.2.0.tgz",
"integrity": "sha512-oAA6Vh2AY17Bg2oGj+Vry3WiNPh4rE65GhTKm1mcvSD98w5BGQ87TA9JIgZgdbN9cbzVzRNTZrZtWOkkw/EC6g==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-sendgrid": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-sendgrid/-/piece-sendgrid-0.2.0.tgz",
"integrity": "sha512-we6rmMwGwssGieHRnygR3PeWd7MsljE+oMj8UHjkv0XdchuU83W9RDDYsWcANEFSQyklOJkHJ4qrEisTeeKtSA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-slack": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-slack/-/piece-slack-0.2.0.tgz",
"integrity": "sha512-JwUfD9yofJ2d+zeuM7T26Ve/GnHKNTcbYK1Mwkf7/7hRsmwLU0w8k259TvtRyuRdHzBTMzlfXfGxR37MvqYH3A==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-square": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-square/-/piece-square-0.2.0.tgz",
"integrity": "sha512-grDp5pfsc3cEGlqAtPstvL9r2lFKaX0djpa9k4eO3+Y1kpznL3YkxQyuQLy6j8rtGFh41fI5MYxcDkMoDCrbVw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-stripe": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-stripe/-/piece-stripe-0.2.0.tgz",
"integrity": "sha512-c0HXjUgpAjAnjaL3MI+e1ksC+XsLIOu4Yyv/SXhoi8dgA9i07kwRLgnTYJ0ZRjsuUqllnfoeG3WzhyoyCDL5Fw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-telegram-bot": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-telegram-bot/-/piece-telegram-bot-0.2.0.tgz",
"integrity": "sha512-pNzwcy5d/4duYAMGsc5tWMkg/7gLkGKDGFQfoLaWZdO6OleCe0TLX+z1e/j7Ac0JFf4anDQShCqc3RmbZoMXDw==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-todoist": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-todoist/-/piece-todoist-0.2.0.tgz",
"integrity": "sha512-mwDjGMBHBDR1dxCPVtOlER1ta5YPp48P/WZgaz57M6AJ6CwfWXZ/pr7ZEqo2/yi4YYMfpQ9z37Dbv5u7Fc+4LA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"dayjs": "1.11.7",
"lodash": "4.17.21",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-trello": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-trello/-/piece-trello-0.2.0.tgz",
"integrity": "sha512-/ygmC5B8qgwZcTCLnWl572FPgSLjQG90bP8gMoJ3tnd0lvJfqHtEvijlfFsyPfW0HrGhJlZuopdgEHcYy4LGtA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-twilio": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-twilio/-/piece-twilio-0.2.0.tgz",
"integrity": "sha512-tQA3kCctAyiJyvP/tH2lZgw2qwn30tXDPJfG5uERqKrsLGCfKrolLU2rhgtyp/ZNg0kYNzfeJblldVB54GrkkQ==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-typeform": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-typeform/-/piece-typeform-0.2.0.tgz",
"integrity": "sha512-ouyVAIjNRlaDFEHtbHrvbWFnIFcUwq+s67++0VlcHWhWqneVYnoF4pNhBSHfU9LEn0fkTp3bOYvNCDq5LDl6iA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-wordpress": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-wordpress/-/piece-wordpress-0.2.0.tgz",
"integrity": "sha512-8kad4c3Sr45WgqfgOXdh3YZQOp4lLsGqK9ARoXWuL5z7qwOV3n3sbdVqX82uyRsjpTg3828/HDfguCTmzKin1Q==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-youtube": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-youtube/-/piece-youtube-0.2.0.tgz",
"integrity": "sha512-2gpbX2Pa6UnzncxQlHG4O0qijFoiAHlUL2Uile1Fy4ZuZB7B8u/K5QepA4vja7Q9qlZF5x+hBWxWdHj0pzTv9w==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cheerio": "1.0.0-rc.12",
"cron-validator": "1.3.1",
"dayjs": "1.11.7",
"feedparser": "2.2.10",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/piece-zoom": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/piece-zoom/-/piece-zoom-0.2.0.tgz",
"integrity": "sha512-vJ7hwjzXe/uhSsGyrQyZK6B+MUOZJ9UJ4sSUuanMFHPCtaRZwcI/XjTRlesJlza8LSCKYTaG2yx3v8DwfwtUHA==",
"dependencies": {
"@activepieces/framework": "0.2.0",
"@activepieces/shared": "0.2.0",
"@sinclair/typebox": "0.24.51",
"axios": "1.2.4",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@activepieces/shared": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@activepieces/shared/-/shared-0.2.0.tgz",
"integrity": "sha512-gToGGMH0TskbfCOmtc1MPbD7EU8iWqPfa3g/UlEHShEUDRWvwG6njDR6y5XYs4XfWByGfgeTC0IOWiyQ0IXndg==",
"dependencies": {
"@sinclair/typebox": "0.24.51",
"cron-validator": "1.3.1",
"nanoid": "3.3.4",
"tslib": "2.4.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"dependencies": {
"@babel/highlight": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.19.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@mailchimp/mailchimp_marketing": {
"version": "3.0.80",
"resolved": "https://registry.npmjs.org/@mailchimp/mailchimp_marketing/-/mailchimp_marketing-3.0.80.tgz",
"integrity": "sha512-Cgz0xPb+1DUjmrl5whAsmqfAChBko+Wf4/PLQE4RvwfPlcq2agfHr1QFiXEhZ8e+GQwQ3hZQn9iLGXwIXwxUCg==",
"dependencies": {
"dotenv": "^8.2.0",
"superagent": "3.8.1"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@sinclair/typebox": {
"version": "0.24.51",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz",
"integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
},
"node_modules/@supabase/functions-js": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.1.0.tgz",
"integrity": "sha512-vRziB+AqRXRaGHjEFHwBo0kuNDTuAxI7VUeqU24Fe86ISoD8YEQm0dGdpleJEcqgDGWaO6pxT1tfj1BRY5PwMg==",
"dependencies": {
"cross-fetch": "^3.1.5"
}
},
"node_modules/@supabase/gotrue-js": {
"version": "2.14.0",
"resolved": "https://registry.npmjs.org/@supabase/gotrue-js/-/gotrue-js-2.14.0.tgz",
"integrity": "sha512-FI6q4n4iZ2zrEt1BnBYYe8HQ1k9t5CpBcDQxVXa8PeMwygXpzR0AcdfAsZ5Yba42C8YsBA132ti01f+RINS3UQ==",
"dependencies": {
"cross-fetch": "^3.1.5"
}
},
"node_modules/@supabase/postgrest-js": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.4.1.tgz",
"integrity": "sha512-aruqwV/aTggkM7OVv2JinCeXmRMKHJCZpkuS1nuoa0NgLw7g3NyILSyWOKYTBJ/PxE/zXtWsBhdxFzaaNz5uxg==",
"dependencies": {
"cross-fetch": "^3.1.5"
}
},
"node_modules/@supabase/realtime-js": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.7.0.tgz",
"integrity": "sha512-wg35ofiCpIemycmPZvvZk3jM9c9z8VvnPUBbSP9ZZN2vSOEJ9C7DZuLiiZMXsyNUzjVgIn62A1tN99T5+9O8Aw==",
"dependencies": {
"@types/phoenix": "^1.5.4",
"websocket": "^1.0.34"
}
},
"node_modules/@supabase/storage-js": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.3.1.tgz",
"integrity": "sha512-BaPIvyvjuZW1V0CnfGKUZyzpBUXnsh0XD8eqTOYd+MdiGPmIPI0vtwnT4fAoK8mipp1vpcN62EVQaqeUnWXPtQ==",
"dependencies": {
"cross-fetch": "^3.1.5"
}
},
"node_modules/@supabase/supabase-js": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.10.0.tgz",
"integrity": "sha512-/vkpPxGDyLfTASWnVHL8vdgQxn9SX/Cs+BotTxFhLSIeGFSazC6rpQSMKu6RqzO7gjBD1KqTv0h3auWfClWs+Q==",
"dependencies": {
"@supabase/functions-js": "^2.1.0",
"@supabase/gotrue-js": "^2.12.0",
"@supabase/postgrest-js": "^1.1.1",
"@supabase/realtime-js": "^2.4.0",
"@supabase/storage-js": "^2.3.1",
"cross-fetch": "^3.1.5"
}
},
"node_modules/@types/debug": {
"version": "4.1.7",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
"integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
"dependencies": {
"@types/ms": "*"
}
},
"node_modules/@types/ms": {
"version": "0.7.31",
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
"integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
},
"node_modules/@types/node": {
"version": "18.14.6",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz",
"integrity": "sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==",
"optional": true
},
"node_modules/@types/phoenix": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.5.5.tgz",
"integrity": "sha512-1eWWT19k0L4ZiTvdXjAvJ9KvW0B8SdiVftQmFPJGTEx78Q4PCSIQDpz+EfkFVR1N4U9gREjlW4JXL8YCIlY0bw=="
},
"node_modules/@types/yauzl": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
"integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
"optional": true,
"dependencies": {
"@types/node": "*"
}
},
"node_modules/abort-controller": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
"dependencies": {
"event-target-shim": "^5.0.0"
},
"engines": {
"node": ">=6.5"
}
},
"node_modules/abortcontroller-polyfill": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz",
"integrity": "sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ=="
},
"node_modules/addressparser": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz",
"integrity": "sha512-aQX7AISOMM7HFE0iZ3+YnD07oIeJqWGVnJ+ZIKaBZAk03ftmVYVqsGas/rbXKR21n4D/hKCSHypvcyOkds/xzg=="
},
"node_modules/agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"dependencies": {
"debug": "4"
},
"engines": {
"node": ">= 6.0.0"
}
},
"node_modules/airtable": {
"version": "0.11.6",
"resolved": "https://registry.npmjs.org/airtable/-/airtable-0.11.6.tgz",
"integrity": "sha512-Na67L2TO1DflIJ1yOGhQG5ilMfL2beHpsR+NW/jhaYOa4QcoxZOtDFs08cpSd1tBMsLpz5/rrz/VMX/pGL/now==",
"dependencies": {
"@types/node": ">=8.0.0 <15",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.4.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/airtable/node_modules/@types/node": {
"version": "14.18.40",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.40.tgz",
"integrity": "sha512-pGteXO/JQX7wPxGR8lyT+doqjMa7XvlVowwrDwLfX92k5SdLkk4cwC7CYSLBxrenw/R5oQwKioVIak7ZgplM3g=="
},
"node_modules/ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ansi-escapes": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.1.0.tgz",
"integrity": "sha512-bQyg9bzRntwR/8b89DOEhGwctcwCrbWW/TuqTQnpqpy5Fz3aovcOTj5i8NJV6AHc8OGNdMaqdxAWww8pz2kiKg==",
"dependencies": {
"type-fest": "^3.0.0"
},
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"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==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"node_modules/array-indexofobject": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz",
"integrity": "sha512-tpdPBIBm4TMNxSp8O3pZgC7mF4+wn9SmJlhE+7bi5so6x39PvzUqChQMbv93R5ilYGZ1HV+Neki4IH/i+87AoQ=="
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"node_modules/axios": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.2.4.tgz",
"integrity": "sha512-lIQuCfBJvZB/Bv7+RWUqEJqNShGOVpk9v7P0ZWx5Ip0qY6u7JBAU6dzQPMLasU9vHL2uD8av/1FDJXj7n6c39w==",
"dependencies": {
"follow-redirects": "^1.15.0",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/bl": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
"dependencies": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
}
},
"node_modules/boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"node_modules/buffer-crc32": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
"engines": {
"node": "*"
}
},
"node_modules/bufferutil": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz",
"integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==",
"hasInstallScript": true,
"dependencies": {
"node-gyp-build": "^4.3.0"
},
"engines": {
"node": ">=6.14.2"
}
},
"node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/chardet": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
},
"node_modules/cheerio": {
"version": "1.0.0-rc.12",
"resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz",
"integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==",
"dependencies": {
"cheerio-select": "^2.1.0",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.0.1",
"htmlparser2": "^8.0.1",
"parse5": "^7.0.0",
"parse5-htmlparser2-tree-adapter": "^7.0.0"
},
"engines": {
"node": ">= 6"
},
"funding": {
"url": "https://github.com/cheeriojs/cheerio?sponsor=1"
}
},
"node_modules/cheerio-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz",
"integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==",
"dependencies": {
"boolbase": "^1.0.0",