├── .gitignore ├── media ├── favicon.ico ├── icon.svg ├── logo.svg └── puppeteer-logo.png ├── package.json ├── readme.md ├── saasify.json ├── src ├── lib │ ├── options.ts │ ├── page.ts │ └── types.ts ├── pdf.ts └── screenshot.ts ├── todo.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/.gitignore -------------------------------------------------------------------------------- /media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/media/favicon.ico -------------------------------------------------------------------------------- /media/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/media/icon.svg -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/puppeteer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/media/puppeteer-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/readme.md -------------------------------------------------------------------------------- /saasify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/saasify.json -------------------------------------------------------------------------------- /src/lib/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/src/lib/options.ts -------------------------------------------------------------------------------- /src/lib/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/src/lib/page.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/src/pdf.ts -------------------------------------------------------------------------------- /src/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/src/screenshot.ts -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/todo.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasify-sh/puppet-master/HEAD/yarn.lock --------------------------------------------------------------------------------