gitextract_070mo1hj/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ └── pr.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .npmignore ├── LICENSE ├── README-zh.md ├── README.md ├── dist/ │ ├── compatibility-test.html │ ├── hotkeys-js.js │ ├── hotkeys-js.umd.cjs │ └── index.d.ts ├── eslint.config.js ├── package.json ├── src/ │ ├── index.ts │ ├── types.ts │ ├── utils.ts │ └── var.ts ├── test/ │ ├── index.html │ └── run.test.js ├── tsconfig.json ├── vite.config.ts └── website/ ├── App.tsx ├── components/ │ ├── Footer.module.css │ └── Footer.tsx ├── index.html ├── index.tsx ├── styles/ │ ├── index.module.css │ └── reset.css ├── tsconfig.json ├── vite-env.d.ts └── vite.config.ts