gitextract_s5o6o3m1/ ├── .eslintignore ├── .eslintrc.js ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── docs.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .lintstagedrc.json ├── .prettierrc ├── .releaserc.json ├── LICENSE ├── README.md ├── jest.config.ts ├── lib/ │ ├── const.ts │ ├── features/ │ │ ├── default-tags.ts │ │ ├── feature.ts │ │ ├── fix-tags.ts │ │ ├── index.ts │ │ ├── interpolater.ts │ │ ├── load-headers/ │ │ │ ├── impl.ts │ │ │ ├── index.ts │ │ │ └── loaders.ts │ │ ├── proxy-script.ts │ │ ├── render-headers.ts │ │ ├── resolve-base-urls.ts │ │ ├── ssri.ts │ │ └── validate-headers/ │ │ ├── headers.ts │ │ ├── impl.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── fs.ts │ ├── index.ts │ ├── plugin.ts │ ├── types.ts │ └── utils.ts ├── package.json ├── test/ │ ├── integration/ │ │ ├── default-tags/ │ │ │ ├── fixtures.ts │ │ │ └── index.test.ts │ │ ├── fix-tags/ │ │ │ ├── fixtures.ts │ │ │ ├── headers.txt │ │ │ └── index.test.ts │ │ ├── fixtures/ │ │ │ ├── entry.js.txt │ │ │ ├── entry.min.js.txt │ │ │ ├── headers.txt │ │ │ └── package.json.txt │ │ ├── fixtures.ts │ │ ├── general/ │ │ │ ├── fixtures.ts │ │ │ └── index.test.ts │ │ ├── headers/ │ │ │ ├── fixtures.ts │ │ │ ├── index.test.ts │ │ │ ├── pretty-headers.txt │ │ │ └── tag-order-headers.txt │ │ ├── i18n/ │ │ │ ├── fixtures.ts │ │ │ ├── i18n.headers.txt │ │ │ ├── index.test.ts │ │ │ └── non-strict-i18n.headers.txt │ │ ├── interpolater/ │ │ │ ├── fixtures.ts │ │ │ └── index.test.ts │ │ ├── load-headers/ │ │ │ ├── fixtures.ts │ │ │ ├── index.test.ts │ │ │ └── load-headers.headers.txt │ │ ├── multi-entry/ │ │ │ ├── entry1.headers.txt │ │ │ ├── entry2.headers.txt │ │ │ ├── entry3.headers.txt │ │ │ ├── fixtures.ts │ │ │ └── index.test.ts │ │ ├── package-json/ │ │ │ ├── bugs.headers.txt │ │ │ ├── fixtures.ts │ │ │ ├── index.test.ts │ │ │ └── root-option.headers.txt │ │ ├── proxy-script/ │ │ │ ├── base-url-proxy-script.headers.txt │ │ │ ├── base-url-proxy-script.proxy-headers.txt │ │ │ ├── fixtures.ts │ │ │ ├── index.test.ts │ │ │ ├── proxy-script.headers.txt │ │ │ └── proxy-script.proxy-headers.txt │ │ ├── resolve-base-urls/ │ │ │ ├── fixtures.ts │ │ │ └── index.test.ts │ │ ├── ssri/ │ │ │ ├── algorithms-ssri-headers.txt │ │ │ ├── algorithms-ssri-lock.json.txt │ │ │ ├── filters-ssri-headers.txt │ │ │ ├── filters-ssri-lock.json.txt │ │ │ ├── fixtures.ts │ │ │ ├── index.test.ts │ │ │ ├── multi-algo-ssri-lock.json.txt │ │ │ ├── ssri-headers.txt │ │ │ ├── ssri-lock.json.txt │ │ │ ├── static/ │ │ │ │ └── .eslintignore │ │ │ └── unsupported-protocols.headers.txt │ │ ├── util.ts │ │ └── volume.ts │ └── setup.ts ├── tsconfig.build.json ├── tsconfig.json └── typedoc.json