-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
1971 lines (1971 loc) · 162 KB
/
manifest.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
{
"version": 1,
"locale": "en_US",
"platform": "4.3.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.81.0-1",
"Date": "2023-01-17",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN packages. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. As of release 1.81.0-0, the following Boost libraries are\n included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n 'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility'\n 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh,\nhttps://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2023-01-17 22:52:33 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-01-22 08:20:02 UTC",
"Built": "R 4.3.0; ; 2023-04-15 00:42:37 UTC; windows"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.29",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", email = \"xie@yihui.name\", role = c(\"aut\", \"cre\")),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"Xianying\", \"Tan\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Maximilian\", \"Girlich\", role = \"ctb\"),\n person(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\n person(\"Johannes\", \"Rauh\", role = \"ctb\"),\n person(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\n person(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\n person(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\n person(\"Alex\", \"Pickering\", role = c(\"ctb\")),\n person(\"William\", \"Holmes\", role = c(\"ctb\")),\n person(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\n person(\"Andres\", \"Quintero\", role = c(\"ctb\")),\n person(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Description": "Data objects in R can be rendered as HTML tables using the\n JavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n 'DataTables' library has been included in this R package. The package name\n 'DT' is an abbreviation of 'DataTables'.",
"URL": "https://github.com/rstudio/DT",
"BugReports": "https://github.com/rstudio/DT/issues",
"License": "GPL-3 | file LICENSE",
"Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), httpuv, jsonlite\n(>= 0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, future,\ntestit, tibble",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-08-29 14:02:15 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\n Joe Cheng [aut],\n Xianying Tan [aut],\n JJ Allaire [ctb],\n Maximilian Girlich [ctb],\n Greg Freedman Ellis [ctb],\n Johannes Rauh [ctb],\n SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\n Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\n Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\n Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\n Alex Pickering [ctb],\n William Holmes [ctb],\n Mikko Marttila [ctb],\n Andres Quintero [ctb],\n Stéphane Laurent [ctb],\n Posit Software, PBC [cph, fnd]",
"Repository": "CRAN",
"Date/Publication": "2023-08-29 18:00:02 UTC",
"Built": "R 4.3.1; ; 2023-09-05 03:08:57 UTC; windows"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <winston@stdout.org>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.3.1; ; 2023-07-15 00:27:15 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.11",
"Date": "2023-07-03",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and\n Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "https://www.rcpp.org,\nhttps://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "rcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-07-03 15:56:55 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-07-06 07:33:14 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-13 00:44:49 UTC; windows",
"Archs": "x64"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "anytime",
"Type": "Package",
"Title": "Anything to 'POSIXct' or 'Date' Converter",
"Version": "0.3.9",
"Date": "2020-08-26",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.",
"URL": "http://dirk.eddelbuettel.com/code/anytime.html",
"BugReports": "https://github.com/eddelbuettel/anytime/issues",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"Depends": "R (>= 3.2.0)",
"Imports": "Rcpp (>= 0.12.9)",
"LinkingTo": "Rcpp (>= 0.12.9), BH",
"Suggests": "tinytest (>= 1.0.0), gettz",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2020-08-26 17:46:45.898451 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-08-27 11:40:21 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-09-05 00:41:00 UTC; windows",
"Archs": "x64"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.3.0; x86_64-w64-mingw32; 2023-04-15 00:42:00 UTC; windows",
"Archs": "x64"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.5.0",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"garrick@posit.co\", comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and\n 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as\n well as their various 'Bootswatch' themes. An interactive widget is\n also provided for previewing themes in real time.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Depends": "R (>= 2.10)",
"Imports": "base64enc, cachem, grDevices, htmltools (>= 0.5.4), jquerylib\n(>= 0.1.3), jsonlite, memoise (>= 2.0.1), mime, rlang, sass (>=\n0.4.0)",
"Suggests": "bsicons, curl, fontawesome, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.6.0), testthat,\nthematic, withr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Collate": "'accordion.R' 'bootswatch.R' 'breakpoints.R'\n'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R'\n'bs-remove.R' 'bs-theme-layers.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'card.R'\n'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'layout.R'\n'nav-items.R' 'nav-update.R' 'navs-legacy.R' 'navs.R'\n'onLoad.R' 'page.R' 'precompiled.R' 'print.R' 'shiny-devmode.R'\n'sidebar.R' 'staticimports.R' 'utils-shiny.R' 'utils-tags.R'\n'value-box.R' 'version-default.R' 'versions.R'",
"Config/testthat/edition": "3",
"Config/Needs/routine": "chromote, desc, renv",
"Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue,\nhtmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr,\nrprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2",
"Config/Needs/deploy": "BH, cpp11, dplyr, DT, ggplot2, ggridges, gt,\nhexbin, histoslider, lattice, leaflet, lubridate, modelr,\nnycflights13, plotly, reactable, reshape2, rprojroot,\nrsconnect, scales",
"NeedsCompilation": "no",
"Packaged": "2023-06-09 12:27:20 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>),\n Posit Software, PBC [cph, fnd],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-06-09 13:10:02 UTC",
"Built": "R 4.3.1; ; 2023-07-19 01:34:21 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cachem",
"Version": "1.0.8",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@rstudio.com\", c(\"aut\", \"cre\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap (>= 1.1.1)",
"Suggests": "testthat",
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Packaged": "2023-05-01 15:38:38 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 00:39:45 UTC; windows",
"Archs": "x64"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Jennifer\", \"Bryan\", , \"jenny@stat.ubc.ca\", c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", \"ctb\")\n )",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\n of cell range specification.",
"Depends": "R (>= 3.0.0)",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/rsheets/cellranger",
"BugReports": "https://github.com/rsheets/cellranger/issues",
"Suggests": "covr, testthat (>= 1.0.0), knitr, rmarkdown",
"RoxygenNote": "5.0.1.9000",
"VignetteBuilder": "knitr",
"Imports": "rematch, tibble",
"NeedsCompilation": "no",
"Packaged": "2016-07-26 06:50:00 UTC; jenny",
"Author": "Jennifer Bryan [cre, aut],\n Hadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <jenny@stat.ubc.ca>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.3.1; ; 2023-07-23 01:57:07 UTC; windows"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.1",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A suite of tools to build attractive command line interfaces\n ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\n etc. Supports custom themes via a 'CSS'-like language. It also\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": "R (>= 3.4)",
"Imports": "utils",
"Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "yes",
"Packaged": "2023-03-22 13:59:32 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-23 12:52:05 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.9.0",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"jeroen@berkeley.edu\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "https://docs.ropensci.org/commonmark/\nhttps://r-lib.r-universe.dev/commonmark\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\n syntax. This package uses the 'cmark' reference implementation for converting\n markdown text into various formats including html, latex and groff man. In\n addition it exposes the markdown parse tree in xml format. Also includes opt-in\n support for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-03-17 18:02:44 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2023-03-17 18:40:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.7",
"Authors@R": "\n c(\n person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.",
"License": "MIT + file LICENSE",
"URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Depends": "R (>= 3.5.0)",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat (>= 3.2.0), tibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-12-01 19:16:04 UTC; davis",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>),\n Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Benjamin Kietzman [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-12-02 13:20:02 UTC",
"Built": "R 4.3.2; ; 2023-12-31 01:16:04 UTC; windows"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.2",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"ctb\"))\n )",
"Description": "The crayon package is now superseded. Please use the 'cli' package\n for new projects.\n Colored terminal output on terminals that support 'ANSI'\n color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\n color support is automatically detected. Colors and highlighting can\n be combined and nested. New styles can also be created easily.\n This package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/crayon#readme",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R'\n'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.r'\n'ansi-palette.R' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'enc-utils.R' 'has_ansi.r'\n'has_color.r' 'link.R' 'styles.r' 'machinery.r' 'parts.r'\n'print.r' 'style-var.r' 'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-09-29 06:24:10 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2022-09-29 16:20:24 UTC",
"Built": "R 4.3.1; ; 2023-07-15 00:27:16 UTC; windows"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.0",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\")\n )",
"Description": "Provides building blocks for allowing HTML widgets to communicate\n with each other, with Shiny or without (i.e. static .html files). Currently\n supports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6",
"Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib",
"URL": "https://rstudio.github.io/crosstalk/",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-11-04 15:35:47 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-11-04 16:30:02 UTC",
"Built": "R 4.3.1; ; 2023-07-25 02:02:02 UTC; windows"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <edd@debian.org> with contributions\n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx,\n Michel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\n Matthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\n Winston Chang, and Dean Attali.",
"Version": "0.6.33",
"Date": "2023-06-28",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash', 'blake3' and 'crc32c' algorithms) permitting\n easy comparison of R language objects, as well as functions such as'hmac()' to\n create hash-based message authentication code. Please note that this package\n is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be\n used.",
"URL": "https://github.com/eddelbuettel/digest,\nhttps://dirk.eddelbuettel.com/code/digest.html",
"BugReports": "https://github.com/eddelbuettel/digest/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, simplermarkdown",
"VignetteBuilder": "simplermarkdown",
"NeedsCompilation": "yes",
"Packaged": "2023-06-28 02:46:18 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-07-07 14:10:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.1.2",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"François\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A fast, consistent tool for working with data frame like\n objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.5.0)",
"Imports": "cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>=\n1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6,\nrlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0),\nutils, vctrs (>= 0.6.0)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2,\nknitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,\nrmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6),\ntestthat (>= 3.1.5), tidyr (>= 1.3.0), withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-04-19 19:29:34 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Lionel Henry [aut],\n Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\n Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-04-20 14:00:03 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 01:40:42 UTC; windows",
"Archs": "x64"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately \n this power comes at a cost: misspelled arguments will be silently ignored. \n The ellipsis package provides a collection of functions to catch problems\n and alert the user.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis",
"BugReports": "https://github.com/r-lib/ellipsis/issues",
"Depends": "R (>= 3.2)",
"Imports": "rlang (>= 0.3.0)",
"Suggests": "covr, testthat",
"NeedsCompilation": "yes",
"Packaged": "2021-04-29 12:06:44 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 00:39:44 UTC; windows",
"Archs": "x64"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "evaluate",
"Type": "Package",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "0.21",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Parsing and evaluation tools that make it easy to recreate the\n command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": "R (>= 3.0.2)",
"Imports": "methods",
"Suggests": "covr, ggplot2, lattice, rlang, testthat (>= 3.0.0), withr",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2023-05-01 21:56:45 UTC; yihui",
"Author": "Hadley Wickham [aut],\n Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN",
"Date/Publication": "2023-05-05 23:30:02 UTC",
"Built": "R 4.3.1; ; 2023-07-15 00:27:16 UTC; windows"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "1.0.4",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"R-core@r-project.org\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R'\n'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R'\n'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Packaged": "2023-01-22 17:39:01 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <brodie.gaslam@yahoo.com>",
"Repository": "CRAN",
"Date/Publication": "2023-01-22 19:20:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 00:09:11 UTC; windows",
"Archs": "x64"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.1.1",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"winston@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(given = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n )",
"Description": "Fast implementation of data structures, including a key-value\n store, stack, and queue. Environments are commonly used as key-value stores\n in R, but every time a new key is used, it is added to R's global symbol\n table, causing a small amount of memory leakage. This can be problematic in\n cases where many different keys are used. Fastmap avoids this memory leak\n issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Suggests": "testthat (>= 2.1.1)",
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Packaged": "2023-02-24 16:01:27 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-02-24 16:30:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 00:09:17 UTC; windows",
"Archs": "x64"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.5.1",
"Title": "Easily Work with 'Font Awesome' Icons",
"Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\n documents and 'Shiny' apps. These icons can be inserted into HTML content\n through inline 'SVG' tags or 'i' tags. There is also a utility function for\n exporting 'Font Awesome' icons as 'PNG' images for those situations where\n raster graphics are needed.",
"Authors@R": "c(\n person(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome,\nhttps://rstudio.github.io/fontawesome/",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.2.3",
"Depends": "R (>= 3.3.0)",
"Imports": "rlang (>= 1.0.6), htmltools (>= 0.5.1.1)",
"Suggests": "covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0),\nrsvg",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2023-04-18 17:20:05 UTC; rich",
"Author": "Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>),\n Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Richard Iannone <rich@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-04-18 20:30:02 UTC",
"Built": "R 4.3.1; ; 2023-07-19 01:19:15 UTC; windows"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fs",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Version": "1.6.2",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A cross-platform interface to file system operations, built\n on top of the 'libuv' C library.",
"License": "MIT + file LICENSE",
"URL": "https://fs.r-lib.org, https://github.com/r-lib/fs,\nhttps://fs.r-lib.org/",
"BugReports": "https://github.com/r-lib/fs/issues",
"Depends": "R (>= 3.4)",
"Imports": "methods",
"Suggests": "covr, crayon, knitr, pillar (>= 1.0.0), rmarkdown, spelling,\ntestthat (>= 3.0.0), tibble (>= 1.1.0), vctrs (>= 0.3.0), withr",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "GNU make",
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "yes",
"Packaged": "2023-04-24 13:43:26 UTC; gaborcsardi",
"Author": "Jim Hester [aut],\n Hadley Wickham [aut],\n Gábor Csárdi [aut, cre],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-04-25 08:30:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"generics": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "generics",
"Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting",
"Version": "0.1.3",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "In order to reduce potential package dependencies and\n conflicts, generics provides a number of commonly used S3 generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": "R (>= 3.2)",
"Imports": "methods",
"Suggests": "covr, pkgload, testthat (>= 3.0.0), tibble, withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "no",
"Packaged": "2022-07-05 14:52:13 UTC; davis",
"Author": "Hadley Wickham [aut, cre],\n Max Kuhn [aut],\n Davis Vaughan [aut],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2022-07-05 19:40:02 UTC",
"Built": "R 4.3.1; ; 2023-07-19 00:09:12 UTC; windows"
}
},
"glue": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "glue",
"Title": "Interpreted String Literals",
"Version": "1.6.2",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Jennifer\", \"Bryan\", , \"jenny@rstudio.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "An implementation of interpreted string literals, inspired by\n Python's Literal String Interpolation\n <https://www.python.org/dev/peps/pep-0498/> and Docstrings\n <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted\n String Literals\n <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/",
"BugReports": "https://github.com/tidyverse/glue/issues",
"Depends": "R (>= 3.4)",
"Imports": "methods",
"Suggests": "covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,\nmicrobenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,\ntestthat (>= 3.0.0), vctrs (>= 0.3.0), waldo (>= 0.3.0), withr",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "hadley/emo, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2022-02-23 22:50:40 UTC; jenny",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>),\n RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <jenny@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2022-02-24 07:50:20 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"here": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "here",
"Title": "A Simpler Way to Find Your Files",
"Version": "1.0.1",
"Date": "2020-12-13",
"Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"krlmlr+r@mailbox.org\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@rstudio.com\",\n comment = c(ORCID = \"0000-0002-6983-2759\")))",
"Description": "Constructs paths to your project's files.\n Declare the relative path of a file within your project with 'i_am()'.\n Use the 'here()' function as a drop-in replacement for 'file.path()',\n it will always locate the files relative to your project root.",
"License": "MIT + file LICENSE",
"URL": "https://here.r-lib.org/, https://github.com/r-lib/here",
"BugReports": "https://github.com/r-lib/here/issues",
"Imports": "rprojroot (>= 2.0.2)",
"Suggests": "conflicted, covr, fs, knitr, palmerpenguins, plyr, readr,\nrlang, rmarkdown, testthat, uuid, withr",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1.9000",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2020-12-13 06:59:33 UTC; kirill",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n Jennifer Bryan [ctb] (<https://orcid.org/0000-0002-6983-2759>)",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "CRAN",
"Date/Publication": "2020-12-13 07:30:02 UTC",
"Built": "R 4.3.2; ; 2024-01-23 01:53:21 UTC; windows"
}
},
"highr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "highr",
"Type": "Package",
"Title": "Syntax Highlighting for R Source Code",
"Version": "0.10",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Yixuan\", \"Qiu\", role = \"aut\"),\n person(\"Christopher\", \"Gandrud\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\")\n )",
"Description": "Provides syntax highlighting for R source code. Currently it\n supports LaTeX and HTML output. Source code of other languages is supported\n via Andre Simon's highlight package (<http://www.andre-simon.de>).",
"Depends": "R (>= 3.3.0)",
"Imports": "xfun (>= 0.18)",
"Suggests": "knitr, markdown, testit",
"License": "GPL",
"URL": "https://github.com/yihui/highr",
"BugReports": "https://github.com/yihui/highr/issues",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2022-12-22 06:43:07 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Yixuan Qiu [aut],\n Christopher Gandrud [ctb],\n Qiang Li [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN",
"Date/Publication": "2022-12-22 07:00:02 UTC",
"Built": "R 4.3.1; ; 2023-07-15 01:12:19 UTC; windows"
}
},
"hms": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "hms",
"Title": "Pretty Time of Day",
"Date": "2023-03-21",
"Version": "1.1.3",
"Authors@R": "c(\n person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"R Consortium\", role = \"fnd\"),\n person(\"RStudio\", role = \"fnd\")\n )",
"Description": "Implements an S3 class for storing and formatting time-of-day\n values, based on the 'difftime' class.",
"Imports": "lifecycle, methods, pkgconfig, rlang (>= 1.0.2), vctrs (>=\n0.3.8)",
"Suggests": "crayon, lubridate, pillar (>= 1.1.0), testthat (>= 3.0.0)",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms",
"BugReports": "https://github.com/tidyverse/hms/issues",
"RoxygenNote": "7.2.3",
"Config/testthat/edition": "3",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Packaged": "2023-03-21 16:52:11 UTC; kirill",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n R Consortium [fnd],\n RStudio [fnd]",
"Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-21 18:10:02 UTC",
"Built": "R 4.3.1; ; 2023-07-23 01:42:39 UTC; windows"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "htmltools",
"Type": "Package",
"Title": "Tools for HTML",
"Version": "0.5.5",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@rstudio.com\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Winston\", \"Chang\", role = \"aut\", email = \"winston@rstudio.com\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@rstudio.com\"),\n person(\"Jeff\", \"Allen\", role = \"aut\", email = \"jeff@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "Tools for HTML generation and output.",
"Depends": "R (>= 2.14.1)",
"Imports": "utils, digest, grDevices, base64enc, rlang (>= 0.4.10),\nfastmap (>= 1.1.0), ellipsis",
"Suggests": "markdown, testthat, withr, Cairo, ragg, shiny",
"Enhances": "knitr",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools,\nhttps://rstudio.github.io/htmltools/",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R'\n'html_print.R' 'images.R' 'known_tags.R' 'selector.R'\n'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'",
"Config/Needs/website": "rstudio/quillt, bench",
"NeedsCompilation": "yes",
"Packaged": "2023-03-22 22:59:42 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>),\n Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>),\n Yihui Xie [aut],\n Jeff Allen [aut],\n RStudio [cph]",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-23 09:50:06 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 01:00:42 UTC; windows",
"Archs": "x64"
}
},
"htmlwidgets": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "htmlwidgets",
"Type": "Package",
"Title": "HTML Widgets for R",
"Version": "1.6.2",
"Authors@R": "c(\n person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")),\n person(\"Yihui\", \"Xie\", role = c(\"aut\")),\n person(\"JJ\", \"Allaire\", role = c(\"aut\")),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")),\n person(\"Ellis\", \"Hughes\", role = c(\"ctb\")),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "A framework for creating HTML widgets that render in various\n contexts including the R console, 'R Markdown' documents, and 'Shiny'\n web applications.",
"License": "MIT + file LICENSE",
"VignetteBuilder": "knitr",
"Imports": "grDevices, htmltools (>= 0.5.4), jsonlite (>= 0.9.16), yaml,\nknitr (>= 1.8), rmarkdown",
"Suggests": "testthat",
"Enhances": "shiny (>= 1.1)",
"URL": "https://github.com/ramnathv/htmlwidgets",
"BugReports": "https://github.com/ramnathv/htmlwidgets/issues",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-03-17 15:34:40 UTC; cpsievert",
"Author": "Ramnath Vaidyanathan [aut, cph],\n Yihui Xie [aut],\n JJ Allaire [aut],\n Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Kenton Russell [aut, cph],\n Ellis Hughes [ctb],\n RStudio [cph]",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-17 16:50:06 UTC",
"Built": "R 4.3.1; ; 2023-07-19 02:02:19 UTC; windows"
}
},
"httpuv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "httpuv",
"Type": "Package",
"Encoding": "UTF-8",
"Title": "HTTP and WebSocket Server Library",
"Version": "1.6.11",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\n person(\"Posit, PBC\", role = \"cph\", \"fnd\"),\n person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"),\n person(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"),\n person(\"Internet Systems Consortium, Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"),\n person(\"Alexander\", \"Chemeris\", role = \"cph\",\n comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"),\n person(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Sony Mobile Communcations AB\", role = \"cph\",\n comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Berkeley Software Design Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Kenneth\", \"MacKay\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"),\n person(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"),\n person(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"),\n person(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"),\n person(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"),\n person(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\")\n )",
"Description": "Provides low-level socket and protocol support for handling\n HTTP and WebSocket requests directly from within R. It is primarily\n intended as a building block for other packages, rather than making it\n particularly easy to create complete web applications using httpuv alone.\n httpuv is built on top of the libuv and http-parser C libraries, both of\n which were developed by Joyent, Inc. (See LICENSE file for libuv and\n http-parser license information.)",
"License": "GPL (>= 2) | file LICENSE",
"Depends": "R (>= 2.15.1)",
"Imports": "Rcpp (>= 1.0.7), utils, R6, promises, later (>= 0.8.0)",
"LinkingTo": "Rcpp, later",
"URL": "https://github.com/rstudio/httpuv",
"SystemRequirements": "GNU make, zlib",
"RoxygenNote": "7.2.3",
"Suggests": "testthat, callr, curl, websocket",
"Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'static_paths.R' 'utils.R'",
"NeedsCompilation": "yes",
"Packaged": "2023-05-11 01:48:49 UTC; jcheng",
"Author": "Joe Cheng [aut],\n Winston Chang [aut, cre],\n Posit, PBC fnd [cph],\n Hector Corrada Bravo [ctb],\n Jeroen Ooms [ctb],\n Andrzej Krzemienski [cph] (optional.hpp),\n libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS\n file),\n Joyent, Inc. and other Node contributors [cph] (libuv library, see\n src/libuv/AUTHORS file; and http-parser library, see\n src/http-parser/AUTHORS file),\n Niels Provos [cph] (libuv subcomponent: tree.h),\n Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton\n and inet_ntop, contained in src/libuv/src/inet.c),\n Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from\n msinttypes)),\n Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c),\n Sony Mobile Communcations AB [cph] (libuv subcomponent:\n pthread-fixes.c),\n Berkeley Software Design Inc. [cph] (libuv subcomponent:\n android-ifaddrs.h, android-ifaddrs.c),\n Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h,\n android-ifaddrs.c),\n Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph]\n (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c),\n Steve Reid [aut] (SHA-1 implementation),\n James Brown [aut] (SHA-1 implementation),\n Bob Trower [aut] (base64 implementation),\n Alexander Peslyak [aut] (MD5 implementation),\n Trantor Standard Systems [cph] (base64 implementation),\n Igor Sysoev [cph] (http-parser)",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-05-11 08:00:05 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-19 01:19:16 UTC; windows",
"Archs": "x64"
}
},
"jquerylib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "jquerylib",
"Title": "Obtain 'jQuery' as an HTML Dependency Object",
"Version": "0.1.4",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt\")\n )",
"Description": "Obtain any major version of 'jQuery' (<https://code.jquery.com/>) and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown').\n Most R users don't need to use this package directly, but other R packages (e.g. 'shiny', 'rmarkdown', etc.) depend on this package to avoid bundling redundant copies of 'jQuery'.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"RoxygenNote": "7.0.2",
"Imports": "htmltools",
"Suggests": "testthat",
"NeedsCompilation": "no",
"Packaged": "2021-04-26 16:40:21 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/lib/jquery-AUTHORS.txt)",
"Maintainer": "Carson Sievert <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-04-26 17:10:02 UTC",
"Built": "R 4.3.1; ; 2023-07-19 01:19:15 UTC; windows"
}
},
"jsonlite": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "jsonlite",
"Version": "1.8.7",
"Title": "A Simple and Robust JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"Depends": "methods",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroen@berkeley.edu\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Duncan\", \"Temple Lang\", role = \"ctb\"),\n person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))",
"URL": "https://jeroen.r-universe.dev/jsonlite\nhttps://arxiv.org/abs/1403.2805",
"BugReports": "https://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A reasonably fast JSON parser and generator, optimized for statistical \n data and the web. Offers simple, flexible tools for working with JSON in R, and\n is particularly powerful for building pipelines and interacting with a web API. \n The implementation is based on the mapping described in the vignette (Ooms, 2014).\n In addition to converting JSON data from/to R objects, 'jsonlite' contains \n functions to stream, validate, and prettify JSON data. The unit tests included \n with the package verify that all edge cases are encoded and decoded consistently \n for use with dynamic data in systems and applications.",
"Suggests": "httr, vctrs, testthat, knitr, rmarkdown, R.rsp, sf",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-06-29 08:00:03 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)",
"Repository": "CRAN",
"Date/Publication": "2023-06-29 22:10:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-13 00:44:49 UTC; windows",
"Archs": "x64"
}
},
"knitr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "knitr",
"Type": "Package",
"Title": "A General-Purpose Package for Dynamic Report Generation in R",
"Version": "1.43",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Abhraneel\", \"Sarma\", role = \"ctb\"),\n person(\"Adam\", \"Vogt\", role = \"ctb\"),\n person(\"Alastair\", \"Andrew\", role = \"ctb\"),\n person(\"Alex\", \"Zvoleff\", role = \"ctb\"),\n person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"),\n person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\n person(\"Aron\", \"Atkins\", role = \"ctb\"),\n person(\"Aaron\", \"Wolen\", role = \"ctb\"),\n person(\"Ashley\", \"Manton\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Ben\", \"Baumer\", role = \"ctb\"),\n person(\"Brian\", \"Diggs\", role = \"ctb\"),\n person(\"Brian\", \"Zhang\", role = \"ctb\"),\n person(\"Bulat\", \"Yapparov\", role = \"ctb\"),\n person(\"Cassio\", \"Pereira\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"David\", \"Hall\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", role = \"ctb\"),\n person(\"David\", \"Robinson\", role = \"ctb\"),\n person(\"Doug\", \"Hemken\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role = \"ctb\"),\n person(\"Elio\", \"Campitelli\", role = \"ctb\"),\n person(\"Ellis\", \"Hughes\", role = \"ctb\"),\n person(\"Emily\", \"Riederer\", role = \"ctb\"),\n person(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\n person(\"Fitch\", \"Simeon\", role = \"ctb\"),\n person(\"Forest\", \"Fang\", role = \"ctb\"),\n person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\n person(\"Gregoire\", \"Detrez\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", role = \"ctb\"),\n person(\"Heewon\", \"Jeon\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Hodges\", \"Daniel\", role = \"ctb\"),\n person(\"Jacob\", \"Bien\", role = \"ctb\"),\n person(\"Jake\", \"Burkhead\", role = \"ctb\"),\n person(\"James\", \"Manton\", role = \"ctb\"),\n person(\"Jared\", \"Lander\", role = \"ctb\"),\n person(\"Jason\", \"Punyon\", role = \"ctb\"),\n person(\"Javier\", \"Luraschi\", role = \"ctb\"),\n person(\"Jeff\", \"Arnold\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", role = \"ctb\"),\n person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\n person(\"Jeremy\", \"Stephens\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\"),\n person(\"John\", \"Honaker\", role = \"ctb\"),\n person(\"John\", \"Muschelli\", role = \"ctb\"),\n person(\"Jonathan\", \"Keane\", role = \"ctb\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Johan\", \"Toloe\", role = \"ctb\"),\n person(\"Jonathan\", \"Sidi\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Julien\", \"Barnier\", role = \"ctb\"),\n person(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\n person(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\n person(\"Karl\", \"Forner\", role = \"ctb\"),\n person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\n person(\"Kirill\", \"Mueller\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Lorenz\", \"Walthert\", role = \"ctb\"),\n person(\"Lucas\", \"Gallindo\", role = \"ctb\"),\n person(\"Marius\", \"Hofert\", role = \"ctb\"),\n person(\"Martin\", \"Modrák\", role = \"ctb\"),\n person(\"Michael\", \"Chirico\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\n person(\"Miller\", \"Patrick\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Nick\", \"Salkowski\", role = \"ctb\"),\n person(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Obada\", \"Mahdi\", role = \"ctb\"),\n person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")),\n person(\"Pedro\", \"Faria\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\n person(\"Rodrigo\", \"Copetti\", role = \"ctb\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\n person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")),\n person(\"Scott\", \"Kostyshak\", role = \"ctb\"),\n person(\"Sebastian\", \"Meyer\", role = \"ctb\"),\n person(\"Sietse\", \"Brouwer\", role = \"ctb\"),\n person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\n person(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\n person(\"Taiyun\", \"Wei\", role = \"ctb\"),\n person(\"Thibaut\", \"Assus\", role = \"ctb\"),\n person(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Tim\", \"Mastny\", role = \"ctb\"),\n person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\n person(\"Trevor\", \"Davis\", role = \"ctb\"),\n person(\"Viktoras\", \"Veitas\", role = \"ctb\"),\n person(\"Weicheng\", \"Zhu\", role = \"ctb\"),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Zachary\", \"Foster\", role = \"ctb\"),\n person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Provides a general-purpose tool for dynamic report generation in R\n using Literate Programming techniques.",
"Depends": "R (>= 3.3.0)",
"Imports": "evaluate (>= 0.15), highr, methods, tools, xfun (>= 0.39),\nyaml (>= 2.1.19)",
"Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), curl, jpeg, JuliaCall (>=\n0.11.1), magick, markdown (>= 1.3), png, ragg, reticulate (>=\n1.4), rgl (>= 0.95.1201), rlang, rmarkdown, sass, showtext,\nstyler (>= 1.2.0), targets (>= 0.6.0), testit, tibble,\ntikzDevice (>= 0.10), tinytex, webshot, rstudioapi, xml2 (>=\n1.2.0)",
"License": "GPL",
"URL": "https://yihui.org/knitr/",
"BugReports": "https://github.com/yihui/knitr/issues",
"Encoding": "UTF-8",
"VignetteBuilder": "knitr",
"SystemRequirements": "Package vignettes based on R Markdown v2 or\nreStructuredText require Pandoc (http://pandoc.org). The\nfunction rst2pdf() requires rst2pdf\n(https://github.com/rst2pdf/rst2pdf).",
"Collate": "'block.R' 'cache.R' 'utils.R' 'citation.R' 'hooks-html.R'\n'plot.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R'\n'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R'\n'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R'\n'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R'\n'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R'\n'template.R' 'utils-conversion.R' 'utils-rd2html.R'\n'utils-string.R' 'utils-sweave.R' 'utils-upload.R'\n'utils-vignettes.R' 'zzz.R'",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-05-24 02:50:56 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Abhraneel Sarma [ctb],\n Adam Vogt [ctb],\n Alastair Andrew [ctb],\n Alex Zvoleff [ctb],\n Amar Al-Zubaidi [ctb],\n Andre Simon [ctb] (the CSS files under inst/themes/ were derived from\n the Highlight package http://www.andre-simon.de),\n Aron Atkins [ctb],\n Aaron Wolen [ctb],\n Ashley Manton [ctb],\n Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>),\n Ben Baumer [ctb],\n Brian Diggs [ctb],\n Brian Zhang [ctb],\n Bulat Yapparov [ctb],\n Cassio Pereira [ctb],\n Christophe Dervieux [ctb],\n David Hall [ctb],\n David Hugh-Jones [ctb],\n David Robinson [ctb],\n Doug Hemken [ctb],\n Duncan Murdoch [ctb],\n Elio Campitelli [ctb],\n Ellis Hughes [ctb],\n Emily Riederer [ctb],\n Fabian Hirschmann [ctb],\n Fitch Simeon [ctb],\n Forest Fang [ctb],\n Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\n Garrick Aden-Buie [ctb],\n Gregoire Detrez [ctb],\n Hadley Wickham [ctb],\n Hao Zhu [ctb],\n Heewon Jeon [ctb],\n Henrik Bengtsson [ctb],\n Hiroaki Yutani [ctb],\n Ian Lyttle [ctb],\n Hodges Daniel [ctb],\n Jacob Bien [ctb],\n Jake Burkhead [ctb],\n James Manton [ctb],\n Jared Lander [ctb],\n Jason Punyon [ctb],\n Javier Luraschi [ctb],\n Jeff Arnold [ctb],\n Jenny Bryan [ctb],\n Jeremy Ashkenas [ctb, cph] (the CSS file at\n inst/misc/docco-classic.css),\n Jeremy Stephens [ctb],\n Jim Hester [ctb],\n Joe Cheng [ctb],\n Johannes Ranke [ctb],\n John Honaker [ctb],\n John Muschelli [ctb],\n Jonathan Keane [ctb],\n JJ Allaire [ctb],\n Johan Toloe [ctb],\n Jonathan Sidi [ctb],\n Joseph Larmarange [ctb],\n Julien Barnier [ctb],\n Kaiyin Zhong [ctb],\n Kamil Slowikowski [ctb],\n Karl Forner [ctb],\n Kevin K. Smith [ctb],\n Kirill Mueller [ctb],\n Kohske Takahashi [ctb],\n Lorenz Walthert [ctb],\n Lucas Gallindo [ctb],\n Marius Hofert [ctb],\n Martin Modrák [ctb],\n Michael Chirico [ctb],\n Michael Friendly [ctb],\n Michal Bojanowski [ctb],\n Michel Kuhlmann [ctb],\n Miller Patrick [ctb],\n Nacho Caballero [ctb],\n Nick Salkowski [ctb],\n Niels Richard Hansen [ctb],\n Noam Ross [ctb],\n Obada Mahdi [ctb],\n Pavel N. Krivitsky [ctb] (<https://orcid.org/0000-0002-9101-3362>),\n Pedro Faria [ctb],\n Qiang Li [ctb],\n Ramnath Vaidyanathan [ctb],\n Richard Cotton [ctb],\n Robert Krzyzanowski [ctb],\n Rodrigo Copetti [ctb],\n Romain Francois [ctb],\n Ruaridh Williamson [ctb],\n Sagiru Mati [ctb] (<https://orcid.org/0000-0003-1413-3974>),\n Scott Kostyshak [ctb],\n Sebastian Meyer [ctb],\n Sietse Brouwer [ctb],\n Simon de Bernard [ctb],\n Sylvain Rousseau [ctb],\n Taiyun Wei [ctb],\n Thibaut Assus [ctb],\n Thibaut Lamadon [ctb],\n Thomas Leeper [ctb],\n Tim Mastny [ctb],\n Tom Torsney-Weir [ctb],\n Trevor Davis [ctb],\n Viktoras Veitas [ctb],\n Weicheng Zhu [ctb],\n Wush Wu [ctb],\n Zachary Foster [ctb],\n Zhian N. Kamvar [ctb] (<https://orcid.org/0000-0003-1458-7108>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN",
"Date/Publication": "2023-05-25 09:20:08 UTC",
"Built": "R 4.3.1; ; 2023-07-15 01:20:13 UTC; windows"
}
},
"later": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "later",
"Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops",
"Version": "1.3.1",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"),\n person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\")\n )",
"Description": "Executes arbitrary R or C functions some time after the current\n time, after the R execution stack has emptied. The functions are scheduled\n in an event loop.",
"URL": "https://r-lib.github.io/later/, https://github.com/r-lib/later",
"BugReports": "https://github.com/r-lib/later/issues",
"License": "MIT + file LICENSE",
"Imports": "Rcpp (>= 0.12.9), rlang",
"LinkingTo": "Rcpp",
"RoxygenNote": "7.2.3",
"Suggests": "knitr, rmarkdown, testthat (>= 2.1.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-05-01 21:09:55 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n RStudio [cph],\n Marcus Geelnard [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/),\n Evan Nemerson [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/)",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2023-05-02 18:10:02 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 01:12:21 UTC; windows",
"Archs": "x64"
}
},
"lazyeval": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "lazyeval",
"Version": "0.2.2",
"Title": "Lazy (Non-Standard) Evaluation",
"Description": "An alternative approach to non-standard evaluation using\n formulas. Provides a full implementation of LISP style 'quasiquotation',\n making it easier to generate code with other code.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "GPL-3",
"LazyData": "true",
"Depends": "R (>= 3.1.0)",
"Suggests": "knitr, rmarkdown (>= 0.2.65), testthat, covr",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-03-15 14:18:01 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2019-03-15 17:50:07 UTC",
"Built": "R 4.3.1; x86_64-w64-mingw32; 2023-07-15 00:27:16 UTC; windows",
"Archs": "x64"
}
},
"lifecycle": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "lifecycle",
"Title": "Manage the Life Cycle of your Package Functions",
"Version": "1.0.3",
"Authors@R": "c(\n person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Manage the life cycle of your exported functions with shared\n conventions, documentation badges, and user-friendly deprecation\n warnings.",
"License": "MIT + file LICENSE",
"URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle",
"BugReports": "https://github.com/r-lib/lifecycle/issues",
"Depends": "R (>= 3.4)",
"Imports": "cli (>= 3.4.0), glue, rlang (>= 1.0.6)",