├── .github ├── FUNDING.yaml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── release.yml ├── renovate.json └── workflows │ ├── ci.yaml │ ├── release.yaml │ └── update.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── deno.jsonc ├── deno.lock └── mod.ts /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: ryoppippi 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "deno.enable": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/README.md -------------------------------------------------------------------------------- /deno.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/deno.jsonc -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/deno.lock -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoppippi/mirror-jsr-to-npm/HEAD/mod.ts --------------------------------------------------------------------------------