gitextract_9t3pworc/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── code_of_conduct.md │ ├── contributing.md │ ├── pull_request_template.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── changelog.md ├── eslint.config.js ├── governance.md ├── package.json ├── readme.md ├── src/ │ ├── help/ │ │ └── index.js │ ├── index.js │ ├── startup/ │ │ ├── banner.js │ │ ├── env.js │ │ └── index.js │ └── version.js └── test/ ├── integration/ │ └── integration-test.js └── unit/ └── src/ ├── commands-present-test.js ├── dependency-version-test.js └── index-test.js