gitextract_yilwcb3i/ ├── .babelrc.js ├── .codesandbox/ │ └── ci.json ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── --bug-report.md │ │ ├── --feature-request.md │ │ └── --support-question.md │ └── workflows/ │ └── test.yml ├── .gitignore ├── .prettierrc.json ├── .yarn/ │ └── releases/ │ └── yarn-4.4.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── package.json ├── scripts/ │ └── writeGitVersion.mts ├── src/ │ ├── index.ts │ └── types.ts ├── test/ │ ├── .eslintrc │ └── index.test.ts ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.test.json ├── tsup.config.ts ├── typescript_test/ │ ├── .eslintrc │ └── index.test-d.ts └── vitest.config.mts