-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
2136 lines (2136 loc) · 171 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_GB",
"platform": "4.4.0",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"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 = \"[email protected]\")",
"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 <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Encoding": "UTF-8",
"Built": "R 4.4.0; ; 2024-04-25 19:39:56 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.12",
"Date": "2024-01-08",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"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": "[email protected]",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-01-08 12:50:16 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-01-09 08:20:35 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:42:57 UTC; windows",
"Archs": "x64"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Password Entry Utilities for R, Git, and SSH",
"Version": "1.2.0",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/askpass",
"BugReports": "https://github.com/r-lib/askpass/issues",
"Encoding": "UTF-8",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "7.2.3",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2023-09-03 19:16:12 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-09-03 20:00:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:28:09 UTC; windows",
"Archs": "x64"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare \n the pre and post conditions that you code should satisfy, while also \n producing friendly error messages so that your users know what's gone\n wrong.",
"License": "GPL-3",
"Imports": "tools",
"Suggests": "testthat, covr",
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Packaged": "2019-03-21 13:11:01 UTC; hadley",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Built": "R 4.4.0; ; 2024-05-14 00:34:35 UTC; windows"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"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.4.0; x86_64-w64-mingw32; 2024-04-23 00:24:00 UTC; windows",
"Archs": "x64"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.5",
"Date": "2022-11-13",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "yes",
"Packaged": "2022-11-13 21:22:09 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2022-11-15 21:20:16 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:43:24 UTC; windows",
"Archs": "x64"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:28:20 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.7.0",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"),\n person(\"Garrick\", \"Aden-Buie\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(, \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(, \"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(, \"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, fastmap (>= 1.1.1), grDevices, htmltools\n(>= 0.5.8), jquerylib (>= 0.1.3), jsonlite, lifecycle, memoise\n(>= 2.0.1), mime, rlang, sass (>= 0.4.9)",
"Suggests": "bsicons, curl, fontawesome, future, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.8.1), testthat,\nthematic, withr",
"Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11,\ncpsievert/chiflights22, cpsievert/histoslider, dplyr, DT,\nggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets,\nlattice, leaflet, lubridate, modelr, plotly, reactable,\nreshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler,\ntibble",
"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/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile,\ntheme-*, rmd-*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R'\n'bs-dependencies.R' 'bs-global.R' 'bs-remove.R'\n'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R'\n'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R'\n'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R'\n'layout.R' 'nav-items.R' 'nav-update.R' 'navs-legacy.R'\n'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R'\n'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R'\n'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R'\n'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no",
"Packaged": "2024-03-28 21:43:16 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-29 01:00:03 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:54:26 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\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:28:12 UTC; windows",
"Archs": "x64"
}
},
"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\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-03-23 12:52:05 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-10 06:34:24 UTC; windows",
"Archs": "x64"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\n person(\"Matthew\", \"Lincoln\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(\"Louis\", \"Maddox\", role = \"ctb\"),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\")\n )",
"Description": "Simple utility functions to read from and write to\n the Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr,\nhttp://matthewlincoln.net/clipr/",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": "utils",
"Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard, or wl-clipboard\n(https://github.com/bugaevc/wl-clipboard) for systems using\nWayland.",
"NeedsCompilation": "no",
"Packaged": "2022-02-19 02:20:21 UTC; mlincoln",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.4.0; ; 2024-05-11 00:43:23 UTC; windows"
}
},
"codetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "codetools",
"Version": "0.2-20",
"Priority": "recommended",
"Author": "Luke Tierney <[email protected]>",
"Description": "Code analysis tools for R.",
"Title": "Code Analysis Tools for R",
"Depends": "R (>= 2.1)",
"Maintainer": "Luke Tierney <[email protected]>",
"URL": "https://gitlab.com/luke-tierney/codetools",
"License": "GPL",
"NeedsCompilation": "no",
"Packaged": "2024-03-31 18:18:09 UTC; luke",
"Repository": "CRAN",
"Date/Publication": "2024-03-31 20:10:06 UTC",
"Built": "R 4.4.0; ; 2024-04-24 08:34:07 UTC; windows"
}
},
"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.1",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"[email protected]\", 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": "2024-01-30 11:29:56 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-01-30 12:40:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:43:01 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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-12-02 13:20:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 00:43:00 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\", , \"[email protected]\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"[email protected]\",\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-09-29 16:20:24 UTC",
"Built": "R 4.4.0; ; 2024-05-11 00:42:58 UTC; windows"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "5.2.1",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other 'libcurl' goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://jeroen.r-universe.dev/curl https://curl.se/libcurl/",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, later,\nrmarkdown, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.3.0",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2024-02-26 21:12:31 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-01 23:22:46 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:43:09 UTC; windows",
"Archs": "x64"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> 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, Dean Attali, and Michael Chirico.",
"Version": "0.6.35",
"Date": "2024-03-10",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"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', 'crc32c', 'xxh3_64', and 'xxh3_128'\n algorithms) permitting easy comparison of R language objects, as well as functions\n such as'hmac()' to create hash-based message authentication code. Please note that\n this package is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be 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": "2024-03-10 19:40:54 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-03-11 14:10:06 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:43:00 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.23",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", 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-11-01 13:28:50 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-11-01 14:10:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 00:42:58 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=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"[email protected]\", 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 <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-01-22 19:20:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-12 10:29:21 UTC; windows",
"Archs": "x64"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.2.0",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", 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": "2024-05-14 17:54:13 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-05-15 09:00:07 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-17 23:51:38 UTC; windows",
"Archs": "x64"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.5.2",
"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\", , \"[email protected]\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"[email protected]\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"[email protected]\", 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-08-19 02:32:12 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-19 04:52:40 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:40:43 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.4",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", 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(\"Posit Software, PBC\", 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",
"BugReports": "https://github.com/r-lib/fs/issues",
"Depends": "R (>= 3.6)",
"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",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"SystemRequirements": "GNU make",
"NeedsCompilation": "yes",
"Packaged": "2024-04-25 11:57:22 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 Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-25 12:50:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:43:00 UTC; windows",
"Archs": "x64"
}
},
"future": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "future",
"Version": "1.33.2",
"Title": "Unified Parallel and Distributed Processing in R for Everyone",
"Imports": "digest, globals (>= 0.16.1), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.34.0), utils",
"Suggests": "methods, RhpcBLASctl, R.rsp, markdown",
"VignetteBuilder": "R.rsp",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-7579-5165\")))",
"Description": "The purpose of this package is to provide a lightweight and\n unified Future API for sequential and parallel processing of R\n expression via futures. The simplest way to evaluate an expression\n in parallel is to use `x %<-% { expression }` with `plan(multisession)`.\n This package implements sequential, multicore, multisession, and\n cluster futures. With these, R expressions can be evaluated on the\n local machine, in parallel a set of local machines, or distributed\n on a mix of local and remote machines.\n Extensions to this package implement additional backends for\n processing futures via compute cluster schedulers, etc.\n Because of its unified API, there is no need to modify any code in order\n switch from sequential on the local machine to, say, distributed\n processing on a remote compute cluster.\n Another strength of this package is that global variables and functions\n are automatically identified and exported as needed, making it\n straightforward to tweak existing code to make use of futures.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"ByteCompile": "TRUE",
"URL": "https://future.futureverse.org,\nhttps://github.com/HenrikBengtsson/future",
"BugReports": "https://github.com/HenrikBengtsson/future/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Packaged": "2024-03-24 15:06:26 UTC; henrik",
"Author": "Henrik Bengtsson [aut, cre, cph]\n (<https://orcid.org/0000-0002-7579-5165>)",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-26 18:00:02 UTC",
"Built": "R 4.4.0; ; 2024-05-14 01:14:01 UTC; windows"
}
},
"globals": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "globals",
"Version": "0.16.3",
"Depends": "R (>= 3.1.2)",
"Imports": "codetools",
"Title": "Identify Global Objects in R Expressions",
"Authors@R": "c(\n person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email=\"[email protected]\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\",\n email=\"[email protected]\"))",
"Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions\n by code inspection using various strategies (ordered, liberal, or\n conservative). The objective of this package is to make it as simple as\n possible to identify global objects for the purpose of exporting them in\n parallel, distributed compute environments.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"ByteCompile": "TRUE",
"URL": "https://globals.futureverse.org,\nhttps://github.com/HenrikBengtsson/globals",
"BugReports": "https://github.com/HenrikBengtsson/globals/issues",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Packaged": "2024-03-07 23:38:30 UTC; henrik",
"Author": "Henrik Bengtsson [aut, cre, cph],\n Davis Vaughan [ctb]",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-08 00:00:03 UTC",
"Built": "R 4.4.0; ; 2024-04-23 00:24:09 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\", , \"[email protected]\", 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 <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-02-24 07:50:20 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-09 18:57:57 UTC; windows",
"Archs": "x64"
}
},
"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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-12-22 07:00:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:28:13 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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-03-21 18:10:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:54:24 UTC; windows"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "htmltools",
"Title": "Tools for HTML",
"Version": "0.5.8.1",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"),\n person(\"Carson\", \"Sievert\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Winston\", \"Chang\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Yihui\", \"Xie\", , \"[email protected]\", role = \"aut\"),\n person(\"Jeff\", \"Allen\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Tools for HTML generation and output.",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools,\nhttps://rstudio.github.io/htmltools/",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"Depends": "R (>= 2.14.1)",
"Imports": "base64enc, digest, fastmap (>= 1.1.0), grDevices, rlang (>=\n1.0.0), utils",
"Suggests": "Cairo, markdown, ragg, shiny, testthat, withr",
"Enhances": "knitr",
"Config/Needs/check": "knitr",
"Config/Needs/website": "rstudio/quillt, bench",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R'\n'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R'\n'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R'\n'template.R'",
"NeedsCompilation": "yes",
"Packaged": "2024-04-02 14:26:15 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 Posit Software, PBC [cph, fnd]",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-04 05:03:00 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:28:11 UTC; windows",
"Archs": "x64"
}
},
"httpuv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "httpuv",
"Title": "HTTP and WebSocket Server Library",
"Version": "1.6.15",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"),\n person(\"Winston\", \"Chang\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Posit, PBC\", \"fnd\", role = \"cph\"),\n person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Andrzej\", \"Krzemienski\", role = \"cph\",\n 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\",\n 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\",\n 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\",\n comment = \"SHA-1 implementation\"),\n person(\"James\", \"Brown\", role = \"aut\",\n comment = \"SHA-1 implementation\"),\n person(\"Bob\", \"Trower\", role = \"aut\",\n comment = \"base64 implementation\"),\n person(\"Alexander\", \"Peslyak\", role = \"aut\",\n comment = \"MD5 implementation\"),\n person(\"Trantor Standard Systems\", role = \"cph\",\n comment = \"base64 implementation\"),\n person(\"Igor\", \"Sysoev\", role = \"cph\",\n 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\n alone. httpuv is built on top of the libuv and http-parser C\n libraries, both of which were developed by Joyent, Inc. (See LICENSE\n file for libuv and http-parser license information.)",
"License": "GPL (>= 2) | file LICENSE",
"URL": "https://github.com/rstudio/httpuv",
"BugReports": "https://github.com/rstudio/httpuv/issues",
"Depends": "R (>= 2.15.1)",
"Imports": "later (>= 0.8.0), promises, R6, Rcpp (>= 1.0.7), utils",
"Suggests": "callr, curl, testthat, websocket",
"LinkingTo": "later, Rcpp",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"SystemRequirements": "GNU make, zlib",
"Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'staticServer.R' 'static_paths.R' 'utils.R'",
"NeedsCompilation": "yes",
"Packaged": "2024-03-25 21:06:08 UTC; cpsievert",
"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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-26 05:50:06 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:54:24 UTC; windows",
"Archs": "x64"
}
},
"httr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "httr",
"Title": "Tools for Working with URLs and HTTP",
"Version": "1.4.7",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Useful tools for working with HTTP organised by HTTP verbs\n (GET(), POST(), etc). Configuration functions make it easy to control\n additional request components (authenticate(), add_headers() and so\n on).",
"License": "MIT + file LICENSE",
"URL": "https://httr.r-lib.org/, https://github.com/r-lib/httr",
"BugReports": "https://github.com/r-lib/httr/issues",
"Depends": "R (>= 3.5)",
"Imports": "curl (>= 5.0.2), jsonlite, mime, openssl (>= 0.8), R6",
"Suggests": "covr, httpuv, jpeg, knitr, png, readr, rmarkdown, testthat\n(>= 0.8.0), xml2",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-08-15 02:56:56 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\n Posit, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-15 09:00:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:54:23 UTC; windows"
}
},
"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 = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-26 17:10:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:40:43 UTC; windows"
}
},
"jsonlite": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "jsonlite",
"Version": "1.8.8",
"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 = \"[email protected]\",\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 <[email protected]>",
"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-12-04 12:57:12 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-12-04 15:20:02 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 00:42:59 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.46",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", 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.43),\nyaml (>= 2.1.19)",
"Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), jpeg, JuliaCall (>= 0.11.1),\nmagick, markdown (>= 1.3), png, ragg, reticulate (>= 1.4), rgl\n(>= 0.95.1201), rlang, rmarkdown, sass, showtext, styler (>=\n1.2.0), targets (>= 0.6.0), testit, tibble, tikzDevice (>=\n0.10), tinytex (>= 0.46), webshot, rstudioapi, svglite",
"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.3.1",
"NeedsCompilation": "no",
"Packaged": "2024-04-05 19:54:27 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-06 18:13:00 UTC",
"Built": "R 4.4.0; ; 2024-05-11 01:40:46 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.2",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"[email protected]\"),\n person(family = \"Posit Software, PBC\", 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-12-06 00:38:14 UTC; cpsievert",
"Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Posit Software, PBC [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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-12-06 09:10:05 UTC",
"Built": "R 4.4.0; x86_64-w64-mingw32; 2024-05-11 01:28:11 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\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", 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)",
"Suggests": "covr, crayon, knitr, lintr, rmarkdown, testthat (>= 3.0.1),\ntibble, tidyverse, tools, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"NeedsCompilation": "no",
"Packaged": "2022-10-07 08:50:55 UTC; lionel",
"Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>),\n RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-10-07 09:50:02 UTC",
"Built": "R 4.4.0; ; 2024-05-11 19:34:38 UTC; windows"
}
},
"listenv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "listenv",
"Version": "0.9.1",
"Depends": "R (>= 3.1.2)",
"Suggests": "R.utils, R.rsp, markdown",
"VignetteBuilder": "R.rsp",