gitextract_g61cbamu/ ├── .config/ │ └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── binding.gyp ├── eslint.config.js ├── examples/ │ ├── electron/ │ │ ├── README.md │ │ ├── index.html │ │ ├── main.js │ │ ├── npm_install.bat │ │ ├── npm_install.sh │ │ ├── package.json │ │ ├── preload.js │ │ └── renderer.js │ ├── fork/ │ │ ├── index.js │ │ └── package.json │ └── killDeepTree/ │ ├── README.md │ ├── entry.js │ ├── index.js │ ├── package.json │ └── webpack.config.js ├── fixtures/ │ └── utf8-character.txt ├── package.json ├── pipelines/ │ ├── build.yml │ └── prebuilds.yml ├── publish.yml ├── scripts/ │ ├── gen-compile-commands.js │ ├── increment-version.js │ ├── linux/ │ │ ├── checksums.txt │ │ ├── install-sysroot.js │ │ └── verify-glibc-requirements.sh │ ├── post-install.js │ └── prebuild.js ├── src/ │ ├── conpty_console_list_agent.ts │ ├── eventEmitter2.test.ts │ ├── eventEmitter2.ts │ ├── index.ts │ ├── interfaces.ts │ ├── native.d.ts │ ├── shared/ │ │ └── conout.ts │ ├── terminal.test.ts │ ├── terminal.ts │ ├── testUtils.test.ts │ ├── tsconfig.json │ ├── types.ts │ ├── unix/ │ │ ├── pty.cc │ │ └── spawn-helper.cc │ ├── unixTerminal.test.ts │ ├── unixTerminal.ts │ ├── utils.ts │ ├── win/ │ │ ├── conpty.cc │ │ ├── conpty.h │ │ ├── conpty_console_list.cc │ │ ├── path_util.cc │ │ └── path_util.h │ ├── windowsConoutConnection.ts │ ├── windowsPtyAgent.test.ts │ ├── windowsPtyAgent.ts │ ├── windowsTerminal.test.ts │ ├── windowsTerminal.ts │ └── worker/ │ └── conoutSocketWorker.ts ├── test/ │ └── spam-close.js └── typings/ └── node-pty.d.ts