{"id":48406558,"url":"https://github.com/omnidotdev/template-typescript-library","last_synced_at":"2026-04-06T03:37:20.977Z","repository":{"id":334590154,"uuid":"1098574277","full_name":"omnidotdev/template-typescript-library","owner":"omnidotdev","description":"📘 TypeScript library template","archived":false,"fork":false,"pushed_at":"2026-03-31T17:09:06.000Z","size":47,"stargazers_count":3,"open_issues_count":8,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-06T03:37:18.204Z","etag":null,"topics":["bun","foss","mit","open-source","template","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/omnidotdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["omnidotdev"],"custom":["https://omni.dev"]}},"created_at":"2025-11-17T21:45:21.000Z","updated_at":"2026-03-20T03:48:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/omnidotdev/template-typescript-library","commit_stats":null,"previous_names":["omnidotdev/template-typescript-library"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/omnidotdev/template-typescript-library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnidotdev%2Ftemplate-typescript-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnidotdev%2Ftemplate-typescript-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnidotdev%2Ftemplate-typescript-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnidotdev%2Ftemplate-typescript-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnidotdev","download_url":"https://codeload.github.com/omnidotdev/template-typescript-library/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnidotdev%2Ftemplate-typescript-library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31458838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bun","foss","mit","open-source","template","typescript"],"created_at":"2026-04-06T03:37:19.639Z","updated_at":"2026-04-06T03:37:20.968Z","avatar_url":"https://github.com/omnidotdev.png","language":"TypeScript","funding_links":["https://github.com/sponsors/omnidotdev","https://omni.dev"],"categories":[],"sub_categories":[],"readme":"# 📘 TypeScript Library Template\n\nThis is a template repository for a TypeScript library for Omni projects.\n\n## Features\n\n- 🚀 **Modern Stack**: Built with [Bun](https://bun.sh) and TypeScript for fast development and runtime performance\n- 📦 **ESM Output**: Fast builds via [Bun](https://bun.sh/docs/bundler) bundler with TypeScript declarations\n- 🧪 **Testing**: [Bun test runner](https://bun.sh/docs/cli/test) for fast, native TypeScript testing\n- 🛠️ **Developer Experience**:\n  - Hot reloading during development with watch mode\n  - Code quality with [Biome](https://biomejs.dev) for linting and formatting\n  - Git hooks with [Husky](https://typicode.github.io/husky)\n  - TypeScript strict mode with comprehensive type safety\n  - [Knip](https://knip.dev) for unused dependency detection\n  - Automated updates with [Renovate](https://docs.renovatebot.com)\n  - Easy spin up with [Tilt](https://tilt.dev)\n- 🚢 **Production Ready**:\n  - [Changesets](https://github.com/changesets/changesets) for versioning and changelog generation\n  - GitHub Actions for CI/CD (testing, preview publishing, releases)\n  - Automatic type declaration generation\n\n## Local Development\n\n### Installation\n\n```sh\nbun install\n```\n\n### Building and Running\n\nRun `tilt up`, or:\n\n```sh\nbun dev       # watch mode\nbun build     # build the library\nbun test      # run tests\nbun check     # lint and format check\nbun knip      # check for unused dependencies\n```\n\n### Building\n\n```sh\nbun run build\n```\n\nOutputs to `build/` with ESM format and TypeScript declarations.\n\n### Testing\n\n```sh\nbun test\n```\n\n## Creating a New Library\n\n1. Replace `@omnidotdev/template-typescript-library` with your package name in:\n   - `package.json`\n   - `.changeset/config.json`\n\n2. Update repository URLs in `package.json`\n\n3. Add your source code to `src/`\n\n4. Add tests to `test/`\n\n## Scripts\n\n| Script | Description |\n|--------|-------------|\n| `bun dev` | Watch mode for development |\n| `bun build` | Build the library |\n| `bun test` | Run tests |\n| `bun check` | Run biome check |\n| `bun lint` | Run biome lint with fixes |\n| `bun format` | Run biome format with fixes |\n| `bun knip` | Check for unused dependencies |\n| `bun clean` | Remove build artifacts and node_modules |\n| `bun release` | Build and publish via changesets |\n\n## License\n\nThe code in this repository is licensed under Apache 2.0, \u0026copy; [Omni LLC](https://omni.dev). See [LICENSE.md](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnidotdev%2Ftemplate-typescript-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnidotdev%2Ftemplate-typescript-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnidotdev%2Ftemplate-typescript-library/lists"}