gitextract_n5f9u2wq/ ├── .commitlintrc ├── .editorconfig ├── .eslintrc ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── card-labeler.yml │ ├── config.yml │ ├── labeler.yml │ ├── no-response.yml │ ├── pr-labeler.yml │ ├── pull_request_template.md │ ├── release-drafter.yml │ ├── stale.yml │ ├── workflow-details.json │ ├── workflow-settings.json │ └── workflows/ │ ├── add-release-tag.yml │ ├── add-test-tag.yml │ ├── check-warnings.yml │ ├── ci.yml │ ├── issue-opened.yml │ ├── pr-opened.yml │ ├── pr-updated.yml │ ├── project-card-moved.yml │ ├── sync-workflows.yml │ ├── toc.yml │ └── update-dependencies.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ ├── commit-msg │ └── pre-commit ├── .lintstagedrc ├── .releasegarc ├── LICENSE ├── README.ja.md ├── README.md ├── _config.yml ├── action.yml ├── package.json ├── rollup.config.mjs ├── src/ │ ├── constant.ts │ ├── fixtures/ │ │ ├── actions.list.jobs1.json │ │ ├── actions.list.jobs2.json │ │ ├── actions.list.jobs3.json │ │ └── actions.list.jobs4.json │ ├── main.ts │ ├── process.test.ts │ ├── process.ts │ └── setup.ts ├── tsconfig.json └── vite.config.ts