gitextract_ix7hbcop/ ├── .checkov.yaml ├── .dictionary.txt ├── .editorconfig ├── .eslintrc.yaml ├── .gitattributes ├── .github/ │ ├── renovate.json │ └── workflows/ │ ├── notify-assignee.yaml │ ├── notify-reviewers.yaml │ └── test.yaml ├── .gitignore ├── .jscpd.json ├── .mailmap ├── .markdownlint.yaml ├── .mega-linter.yaml ├── .npmpackagejsonlintignore ├── .pre-commit-config.yaml ├── .tool-versions ├── .trivyignore.yaml ├── .vim/ │ └── coc-settings.json ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── .yarn/ │ ├── plugins/ │ │ └── @yarnpkg/ │ │ └── plugin-licenses.cjs │ ├── releases/ │ │ └── yarn-4.1.1.cjs │ └── sdks/ │ ├── eslint/ │ │ ├── bin/ │ │ │ └── eslint.js │ │ ├── lib/ │ │ │ ├── api.js │ │ │ └── unsupported-api.js │ │ └── package.json │ ├── integrations.yml │ ├── prettier/ │ │ ├── bin/ │ │ │ └── prettier.cjs │ │ ├── index.cjs │ │ └── package.json │ └── typescript/ │ ├── bin/ │ │ ├── tsc │ │ └── tsserver │ ├── lib/ │ │ ├── tsc.js │ │ ├── tsserver.js │ │ ├── tsserverlibrary.js │ │ └── typescript.js │ └── package.json ├── .yarnrc.yml ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.windows ├── LICENSE ├── README.md ├── action.yaml ├── cspell.config.yaml ├── dist/ │ ├── main/ │ │ ├── index.js │ │ └── package.json │ └── post/ │ ├── index.js │ └── package.json ├── doc/ │ └── dependency_decisions.yml ├── jest.config.ts ├── lychee.toml ├── package.json ├── poetry.toml ├── pyproject.toml ├── src/ │ ├── arbitraries/ │ │ └── util.ts │ ├── docker.test.ts │ ├── docker.ts │ ├── integration.test.ts │ ├── main.test.ts │ ├── main.ts │ ├── mocks/ │ │ └── util.ts │ ├── post.test.ts │ ├── post.ts │ ├── util.test.ts │ └── util.ts ├── tsconfig.json └── types/ └── aliases.ts