gitextract_9j3z6aks/ ├── .github/ │ └── workflows/ │ ├── claude-code-review.yml │ ├── claude.yml │ ├── npm-publish.yml │ └── test.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── aws_lambda.md ├── package.json ├── s3-zip.js └── test/ ├── fixtures/ │ ├── empty.txt │ ├── file.txt │ └── folder/ │ ├── a/ │ │ └── file.txt │ └── b/ │ └── file.txt ├── test-coverage-missing-lines.js ├── test-password-protected-duplicate.js ├── test-s3-error-on-stream.js ├── test-s3-password-protected.js ├── test-s3-same-file-alt-names.js ├── test-s3-v2-client-error.js ├── test-s3-zip-alt-names.js ├── test-s3-zip-unique-prefix.js └── test-s3-zip.js