gitextract__hdis4zo/ ├── .eslintrc ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── publish-commit.yaml │ ├── publish.yaml │ └── validate.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.MD ├── package.json ├── pull_request_template.md ├── src/ │ ├── hook/ │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── index.ts │ ├── middleware/ │ │ └── index.ts │ └── utilities/ │ ├── index.test.ts │ └── index.ts ├── test-apps/ │ └── react-router/ │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.bun │ ├── Dockerfile.pnpm │ ├── README.md │ ├── app/ │ │ ├── app.css │ │ ├── root.tsx │ │ ├── routes/ │ │ │ └── home.tsx │ │ ├── routes.ts │ │ └── welcome/ │ │ └── welcome.tsx │ ├── package.json │ ├── react-router.config.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tsconfig.json └── vitest.config.ts