gitextract_vz2xfrmz/ ├── .eslintignore ├── .eslintrc.js ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ └── workflows/ │ ├── ci.yaml │ ├── publish-sandbox.yaml │ └── publish.yaml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .nvmrc ├── .prettierrc ├── ABOUT_READABILITY.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HOW.md ├── LICENSE ├── README.md ├── apps/ │ ├── benchmark/ │ │ ├── index.js │ │ └── package.json │ └── sandbox/ │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── packages/ │ ├── text-vide/ │ │ ├── .versionrc.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── getOptions.test.ts │ │ │ │ └── index.test.ts │ │ │ ├── getFixationLength.ts │ │ │ ├── getHighlightedText.ts │ │ │ ├── getOptions.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── useCheckIsHtmlEntity.ts │ │ │ ├── useCheckIsHtmlTag.ts │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ ├── vite.config.ts │ │ └── vitest.config.ts │ ├── tsconfig/ │ │ ├── base.json │ │ ├── package.json │ │ └── vite.json │ └── utils/ │ ├── __tests__/ │ │ ├── defaults.test.ts │ │ ├── isEmpty.test.ts │ │ └── omitBy.test.ts │ ├── defaults.ts │ ├── isEmpty.ts │ ├── omitBy.ts │ └── package.json ├── pnpm-workspace.yaml └── turbo.json