├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── CI.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── .node-version ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── github-action.png ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── index.ts └── math │ ├── math.test.ts │ └── math.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.mts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.17.0 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/README.md -------------------------------------------------------------------------------- /assets/github-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/assets/github-action.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/math/math.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/src/math/math.test.ts -------------------------------------------------------------------------------- /src/math/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/src/math/math.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashRajpurohit/ts-npm-template/HEAD/vitest.config.mts --------------------------------------------------------------------------------