gitextract_g2fqixwd/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── stale.yml │ └── workflows/ │ ├── release.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── .releaserc ├── CHANGELOG.md ├── Contributing.md ├── LICENSE ├── README.md ├── babel.config.json ├── eslint.config.mjs ├── jest.config.mjs ├── package.json ├── renovate.json ├── src/ │ ├── __tests__/ │ │ ├── __snapshots__/ │ │ │ └── index.test.ts.snap │ │ ├── converters.test.ts │ │ ├── index.mocked.test.ts │ │ ├── index.test.ts │ │ └── validators.test.ts │ ├── converters.ts │ ├── index.ts │ ├── types.ts │ └── validators.ts ├── stale.yml └── tsconfig.json