gitextract_ntyujz1q/ ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── build.yml │ ├── release.yml │ └── tag-v2.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE.md ├── README.md ├── action.yml ├── dist/ │ ├── main/ │ │ ├── index.js │ │ └── sourcemap-register.js │ ├── post/ │ │ ├── index.js │ │ └── sourcemap-register.js │ ├── proc-tracer/ │ │ ├── proc_tracer_ubuntu-20 │ │ └── proc_tracer_ubuntu-22 │ ├── sc/ │ │ ├── index.js │ │ └── sourcemap-register.js │ └── scw/ │ ├── index.js │ └── sourcemap-register.js ├── package.json ├── src/ │ ├── interfaces/ │ │ └── index.ts │ ├── logger.ts │ ├── main.ts │ ├── post.ts │ ├── procTraceParser.ts │ ├── processTracer.ts │ ├── statCollector.ts │ ├── statCollectorWorker.ts │ └── stepTracer.ts ├── tests/ │ └── verify-no-unstaged-changes.sh └── tsconfig.json