{"id":16264457,"url":"https://github.com/blankparticle/typescript-lib-starter","last_synced_at":"2025-04-08T14:18:26.581Z","repository":{"id":232622500,"uuid":"755899743","full_name":"BlankParticle/typescript-lib-starter","owner":"BlankParticle","description":"A template repo for starting a typescript library.","archived":false,"fork":false,"pushed_at":"2024-02-11T12:34:53.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-14T10:36:55.114Z","etag":null,"topics":["biomejs","changesets","starter","template","tsup","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BlankParticle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"BlankParticle"}},"created_at":"2024-02-11T12:29:27.000Z","updated_at":"2024-02-11T12:52:41.000Z","dependencies_parsed_at":"2024-04-10T18:55:53.202Z","dependency_job_id":"5ccffd91-8a7b-48d6-ac96-2a323d75f5ae","html_url":"https://github.com/BlankParticle/typescript-lib-starter","commit_stats":null,"previous_names":["blankparticle/typescript-lib-starter"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlankParticle%2Ftypescript-lib-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlankParticle%2Ftypescript-lib-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlankParticle%2Ftypescript-lib-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlankParticle%2Ftypescript-lib-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlankParticle","download_url":"https://codeload.github.com/BlankParticle/typescript-lib-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247856543,"owners_count":21007621,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["biomejs","changesets","starter","template","tsup","typescript"],"created_at":"2024-10-10T17:01:20.234Z","updated_at":"2025-04-08T14:18:26.552Z","avatar_url":"https://github.com/BlankParticle.png","language":"TypeScript","funding_links":["https://github.com/sponsors/BlankParticle"],"categories":[],"sub_categories":[],"readme":"# ✨ Typescript Lib Starter\n\nA template for creating TypeScript libraries with ease.\n\n---\n\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://github.com/BlankParticle/typescript-lib-starter/stargazers\"\u003e\n        \u003cimg alt=\"GitHub Repo stars\" src=\"https://img.shields.io/github/stars/BlankParticle/typescript-lib-starter?style=for-the-badge\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/BlankParticle/typescript-lib-starter/graphs/contributors\"\u003e\n        \u003cimg alt=\"GitHub contributors\" src=\"https://img.shields.io/github/contributors/BlankParticle/typescript-lib-starter?style=for-the-badge\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/BlankParticle/typescript-lib-starter/blob/main/LICENSE\"\u003e\n        \u003cimg alt=\"License\" src=\"https://img.shields.io/github/license/BlankParticle/typescript-lib-starter?style=for-the-badge\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/typescript-lib-starter\"\u003e\n        \u003cimg alt=\"Npm Downloads\" src=\"https://img.shields.io/npm/dm/typescript-lib-starter?style=for-the-badge\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/sponsors/BlankParticle\"\u003e\n        \u003cimg alt=\"GitHub Sponsors\" src=\"https://img.shields.io/github/sponsors/BlankParticle?style=for-the-badge\"/\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\u003cbr/\u003e\n\n## ❄️ Installation\n\nFirst install the package using a package manager of your choice.\n\n```bash\n# using npm\nnpm install \u003clib-name\u003e\n# or pnpm\npnpm install \u003clib-name\u003e\n# or bun\nbun add \u003clib-name\u003e\n```\n\n## 🚀 Usage\n\u003c!-- Usage instructions here --\u003e\n\n### 🐛 Reporting Bugs\n\nIf you encounter any bugs, please report them in the [Issues](https://github.com/BlankParticle/typescript-lib-starter/issues).\n\n### 🎋 Adding new features\n\nYou need to first [fork](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#about-forking) this repository and then [clone](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#cloning-a-fork) it to your local machine.\n\n```bash\ngit clone https://github.com/[your-username]/typescript-lib-starter\ncd typescript-lib-starter\n```\n\nNow you need to create a new branch for your changes. For features, you may want to use `feat/[feature-name]` as the branch name.\n\n```bash\ngit checkout -b feat/[feature-name]\n```\n\nNow you can make your changes. After you are done, you need to commit your changes.\n\n```bash\ngit add .\ngit commit -m \"feat: ✨ My Awesome feature\"\n```\n\nNow you need to push the changes to your forked repository.\n\n```bash\ngit push origin feat/[feature-name]\n```\n\nNow you need to create a [Pull Request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request) to the original repository. And you are done!\n\nWe will review your changes and merge them if everything looks good.\n\n### 💸 Sponsorship\n\nIf you find this plugin useful, please consider [sponsoring me](https://github.com/sponsors/BlankParticle). This will help me spend more time on these projects.\n\n# 📜 License\n\nThis project is licensed under the [MIT License](https://github.com/BlankParticle/typescript-lib-starter/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblankparticle%2Ftypescript-lib-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblankparticle%2Ftypescript-lib-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblankparticle%2Ftypescript-lib-starter/lists"}