gitextract_vj1rdvvc/ ├── .editorconfig ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── node.js.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── cli.js ├── mise.toml ├── package.json ├── scripts/ │ └── bump.js └── src/ ├── commands/ │ ├── download.js │ ├── login.js │ └── query.js ├── modules/ │ ├── DestinationDirectory.js │ ├── Download.js │ ├── DownloadLogger.js │ ├── FilterResult.js │ └── Search.js └── services/ ├── CredentialsService.js ├── DownloadService.js └── SearchService.js