├── .editorconfig ├── .gitattributes ├── .github ├── funding.yml └── workflows │ ├── ci.yml │ ├── demo.yml │ ├── esm-lint.yml │ └── npm-publish.yml ├── .gitignore ├── collector.ts ├── demo ├── Detections.svelte ├── Index.svelte ├── detections.html ├── detections.js ├── global.css ├── index.html ├── index.js ├── parse-url.js └── vite.config.ts ├── global.d.ts ├── index.test.ts ├── index.ts ├── license ├── package.json ├── readme.md └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.github/workflows/demo.yml -------------------------------------------------------------------------------- /.github/workflows/esm-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.github/workflows/esm-lint.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/collector.ts -------------------------------------------------------------------------------- /demo/Detections.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/Detections.svelte -------------------------------------------------------------------------------- /demo/Index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/Index.svelte -------------------------------------------------------------------------------- /demo/detections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/detections.html -------------------------------------------------------------------------------- /demo/detections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/detections.js -------------------------------------------------------------------------------- /demo/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/global.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/parse-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/parse-url.js -------------------------------------------------------------------------------- /demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/demo/vite.config.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/index.test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/index.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refined-github/github-url-detection/HEAD/tsconfig.json --------------------------------------------------------------------------------