├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── post-checkout ├── post-commit ├── post-merge └── pre-push ├── Dockerfile ├── README.md ├── ghostscript.zip ├── license ├── publish.sh └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/README.md -------------------------------------------------------------------------------- /ghostscript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/ghostscript.zip -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/license -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/publish.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/ghostscript-lambda-layer/HEAD/renovate.json --------------------------------------------------------------------------------