├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── find.R ├── peek.R ├── peeky-package.R ├── quarto-cell-parser.R ├── shinylive-quarto-apps-commands.R ├── shinylive-standalone-app-commands.R ├── utils.R └── writers.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── inst ├── 01-demo-polyglot-shinylive-standalone-and-quarto-apps.R ├── 02-demo-complex-apps.R └── WORDLIST ├── man ├── create_quarto_shinylive_apps.Rd ├── create_standalone_shinylive_app.Rd ├── figures │ └── logo-peeky.png ├── find_shinylive_app_json.Rd ├── find_shinylive_code.Rd ├── padding_width.Rd ├── parse_code_block.Rd ├── parse_yaml_options.Rd ├── peek_quarto_shinylive_app.Rd ├── peek_shinylive_app.Rd ├── peek_standalone_shinylive_app.Rd ├── peeky-package.Rd ├── print.quarto_shinylive_apps.Rd ├── print.standalone_shinylive_app.Rd ├── validate_app_json.Rd ├── write_apps_to_dirs.Rd ├── write_apps_to_quarto.Rd ├── write_file_content.Rd └── write_standalone_shinylive_app.Rd ├── peeky.Rproj ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── test-find.R │ ├── test-peek.R │ ├── test-quarto-cell-parser.R │ ├── test-shinylive-quarto-apps-commands.R │ ├── test-shinylive-standalone-app-commands.R │ ├── test-utils.R │ └── test-writers.R └── vignettes ├── .gitignore └── behind-the-scenes.qmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/find.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/find.R -------------------------------------------------------------------------------- /R/peek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/peek.R -------------------------------------------------------------------------------- /R/peeky-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/peeky-package.R -------------------------------------------------------------------------------- /R/quarto-cell-parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/quarto-cell-parser.R -------------------------------------------------------------------------------- /R/shinylive-quarto-apps-commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/shinylive-quarto-apps-commands.R -------------------------------------------------------------------------------- /R/shinylive-standalone-app-commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/shinylive-standalone-app-commands.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/writers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/R/writers.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/01-demo-polyglot-shinylive-standalone-and-quarto-apps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/inst/01-demo-polyglot-shinylive-standalone-and-quarto-apps.R -------------------------------------------------------------------------------- /inst/02-demo-complex-apps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/inst/02-demo-complex-apps.R -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- 1 | json 2 | Shinylive 3 | -------------------------------------------------------------------------------- /man/create_quarto_shinylive_apps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/create_quarto_shinylive_apps.Rd -------------------------------------------------------------------------------- /man/create_standalone_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/create_standalone_shinylive_app.Rd -------------------------------------------------------------------------------- /man/figures/logo-peeky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/figures/logo-peeky.png -------------------------------------------------------------------------------- /man/find_shinylive_app_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/find_shinylive_app_json.Rd -------------------------------------------------------------------------------- /man/find_shinylive_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/find_shinylive_code.Rd -------------------------------------------------------------------------------- /man/padding_width.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/padding_width.Rd -------------------------------------------------------------------------------- /man/parse_code_block.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/parse_code_block.Rd -------------------------------------------------------------------------------- /man/parse_yaml_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/parse_yaml_options.Rd -------------------------------------------------------------------------------- /man/peek_quarto_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/peek_quarto_shinylive_app.Rd -------------------------------------------------------------------------------- /man/peek_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/peek_shinylive_app.Rd -------------------------------------------------------------------------------- /man/peek_standalone_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/peek_standalone_shinylive_app.Rd -------------------------------------------------------------------------------- /man/peeky-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/peeky-package.Rd -------------------------------------------------------------------------------- /man/print.quarto_shinylive_apps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/print.quarto_shinylive_apps.Rd -------------------------------------------------------------------------------- /man/print.standalone_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/print.standalone_shinylive_app.Rd -------------------------------------------------------------------------------- /man/validate_app_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/validate_app_json.Rd -------------------------------------------------------------------------------- /man/write_apps_to_dirs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/write_apps_to_dirs.Rd -------------------------------------------------------------------------------- /man/write_apps_to_quarto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/write_apps_to_quarto.Rd -------------------------------------------------------------------------------- /man/write_file_content.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/write_file_content.Rd -------------------------------------------------------------------------------- /man/write_standalone_shinylive_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/man/write_standalone_shinylive_app.Rd -------------------------------------------------------------------------------- /peeky.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/peeky.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | converted_shiny_app 2 | -------------------------------------------------------------------------------- /tests/testthat/test-find.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-find.R -------------------------------------------------------------------------------- /tests/testthat/test-peek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-peek.R -------------------------------------------------------------------------------- /tests/testthat/test-quarto-cell-parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-quarto-cell-parser.R -------------------------------------------------------------------------------- /tests/testthat/test-shinylive-quarto-apps-commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-shinylive-quarto-apps-commands.R -------------------------------------------------------------------------------- /tests/testthat/test-shinylive-standalone-app-commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-shinylive-standalone-app-commands.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-writers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/tests/testthat/test-writers.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/behind-the-scenes.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/peeky/HEAD/vignettes/behind-the-scenes.qmd --------------------------------------------------------------------------------