gitextract_5_ahotyn/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── build-docker.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── docs/ │ ├── plugin.md │ ├── tips.md │ └── using.md ├── global.d.ts ├── jest.config.js ├── package.json ├── src/ │ ├── lambda-handler.ts │ ├── lib.ts │ └── server.ts ├── template.yaml ├── tests/ │ ├── events/ │ │ ├── animated-gif.json │ │ ├── original.json │ │ └── signed-url.json │ ├── setup.ts │ ├── test-animated-files.ts │ ├── test-filesize/ │ │ ├── fixtures.json │ │ └── test-filesize.ts │ ├── test-lambda.ts │ └── test-private-upload.ts ├── tsconfig.json └── tsconfig.test.json