gitextract_qub3xm2g/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── issue.md │ ├── README.md │ └── workflows/ │ ├── deploy.yml │ ├── node.js.yml │ └── npm_publish.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .npmignore ├── .shellcheckrc ├── LICENSE ├── README.md ├── bin.js ├── docs/ │ ├── .vitepress/ │ │ └── config.mts │ ├── es/ │ │ ├── get-started.md │ │ ├── how-to.md │ │ ├── index.md │ │ ├── migrate-from-v4.md │ │ └── troubleshoot.md │ ├── get-started.md │ ├── how-to.md │ ├── index.md │ ├── migrate-from-v4.md │ ├── package.json │ ├── ru/ │ │ ├── get-started.md │ │ ├── how-to.md │ │ ├── index.md │ │ ├── migrate-from-v4.md │ │ └── troubleshoot.md │ ├── sponsorkit.config.js │ ├── troubleshoot.md │ └── zh/ │ ├── get-started.md │ ├── how-to.md │ ├── index.md │ ├── migrate-from-v4.md │ └── troubleshoot.md ├── husky ├── index.d.ts ├── index.js ├── package.json ├── test/ │ ├── 10_init.sh │ ├── 11_time.sh │ ├── 12_deprecated.sh │ ├── 1_default.sh │ ├── 2_in-sub-dir.sh │ ├── 3_from-sub-dir.sh │ ├── 4_not-git-dir.sh │ ├── 5_git_command_not_found.sh │ ├── 6_command_not_found.sh │ ├── 7_node_modules_path.sh │ ├── 8_set_u.sh │ ├── 9_husky_0.sh │ └── functions.sh └── test.sh