gitextract_30m5bkoi/ ├── .github/ │ ├── actionlint.yml │ ├── dependabot.yml │ └── workflows/ │ ├── draft-release.yml │ ├── integration.yml │ ├── publish.yml │ ├── release.yml │ └── unit.yml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── action.yml ├── dist/ │ └── main/ │ └── index.js ├── eslint.config.mjs ├── package.json ├── src/ │ ├── client.ts │ ├── headers.ts │ ├── main.ts │ └── util.ts ├── tests/ │ ├── client.int.test.ts │ ├── client.test.ts │ ├── headers.test.ts │ ├── helpers.test.ts │ ├── main.int.test.ts │ ├── main.test.ts │ ├── testdata/ │ │ ├── nested1/ │ │ │ ├── nested2/ │ │ │ │ └── test3.txt │ │ │ └── test1.txt │ │ ├── test.css │ │ ├── test.js │ │ ├── test.json │ │ ├── test1.txt │ │ ├── test2.txt │ │ └── testfile │ ├── testdata-unicode/ │ │ └── 🚀 │ └── util.test.ts └── tsconfig.json