{"id":14062804,"url":"https://github.com/sliit-foss/npm-catalogue","last_synced_at":"2025-10-27T14:31:17.795Z","repository":{"id":65708886,"uuid":"597688931","full_name":"sliit-foss/npm-catalogue","owner":"sliit-foss","description":"A curated list of NPM packages developed by the SLIIT FOSS community. Additionally, it houses the core libraries of the Timekeeper ecosystem","archived":false,"fork":false,"pushed_at":"2024-07-27T19:08:09.000Z","size":2004,"stargazers_count":5,"open_issues_count":18,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-30T08:18:20.269Z","etag":null,"topics":["bashaway","hacktoberfest","npm-packages","timekeeper","turborepo"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/~sliit.foss","language":"JavaScript","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/sliit-foss.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2023-02-05T10:37:43.000Z","updated_at":"2024-10-25T17:30:15.000Z","dependencies_parsed_at":"2023-12-16T08:35:00.837Z","dependency_job_id":"17a7effa-10b4-4c96-8e5b-b8115effd18d","html_url":"https://github.com/sliit-foss/npm-catalogue","commit_stats":{"total_commits":128,"total_committers":2,"mean_commits":64.0,"dds":0.375,"last_synced_commit":"0399547619d013d21efc50e3e1ea7be0043f210d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sliit-foss%2Fnpm-catalogue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sliit-foss%2Fnpm-catalogue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sliit-foss%2Fnpm-catalogue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sliit-foss%2Fnpm-catalogue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sliit-foss","download_url":"https://codeload.github.com/sliit-foss/npm-catalogue/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238508827,"owners_count":19484213,"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":["bashaway","hacktoberfest","npm-packages","timekeeper","turborepo"],"created_at":"2024-08-13T07:02:29.368Z","updated_at":"2025-10-27T14:31:12.419Z","avatar_url":"https://github.com/sliit-foss.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"![Banner](https://github.com/sliit-foss/npm-catalogue/assets/73662613/328f6449-69ec-40b0-a988-4e7875f49afb)\n\n\u003cp align=\"left\"\u003e\n  \u003ca aria-label=\"CI Release\" href=\"https://github.com/sliit-foss/npm-catalogue/actions/workflows/release.yml\"\u003e\n    \u003cimg alt=\"\" src=\"https://github.com/sliit-foss/npm-catalogue/actions/workflows/release.yml/badge.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"CI Prerelease\" href=\"https://github.com/sliit-foss/npm-catalogue/actions/workflows/prerelease.yml\"\u003e\n    \u003cimg alt=\"\" src=\"https://github.com/sliit-foss/npm-catalogue/actions/workflows/prerelease.yml/badge.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# Catalogue\n\n### A curated list of NPM packages developed by the SLIIT FOSS community\n\n\u003cbr/\u003e\n\n## Getting started\n\n- Run `pnpm install` to install all dependencies\n\n\u003cbr/\u003e\n\n## Test and Deploy\n\n- Run `pnpm test` to run all test suites in all packages\n- Run `pnpm build` to build all packages\n- Run `pnpm --filter \u003cpackage\u003e test` to run test suites for a particular package\n\n- Deployment is handled automatically by [GitHub Actions](.github\\workflows\\release.yml) when a commit is pushed to the `main` branch\n\n\u003cbr/\u003e\n\n## Git commit messages\n\n- We follow conventional commits during our development workflow as it helps us automate our release process. More information can be found at their official [documentation](https://www.conventionalcommits.org/en/v1.0.0-beta.4/#examples)\n\n- Primary commit message prefixes for version bumping are as follows:\n\n  ```js\n  - Feat! - bump major version\n  ```\n\n  ```js\n  - Feat  - bump minor version\n  ```\n\n  ```js\n  - Fix   - bump patch version\n  ```\n\n- Refer the [commitlint.config.js](https://github.com/sliit-foss/npm-catalogue/blob/main/commitlint.config.js) file for a full list of supported commit message prefixes\n\n\u003cbr/\u003e\n\n## Disable version bumping for specific commit\u003cbr/\u003e\u003cbr/\u003e\n\n- Add the following to a commit message as follows: \"--no-bump\"\u003cbr/\u003e\n\n```bash\n  git commit -m \"Feat: some feature --no-bump\"\n```\n\n\u003cbr/\u003e\n\n## Linting and Formatting\n\n- Run `pnpm lint` to lint all packages\n- Run `pnpm format` to format all packages\n\n\u003cbr/\u003e\n\n## Remote Caching\n\nTurborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.\n\nBy default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:\n\n```bash\npnpm dlx turbo login\n```\n\nThis will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).\n\nNext, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:\n\n```bash\npnpm dlx turbo link\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsliit-foss%2Fnpm-catalogue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsliit-foss%2Fnpm-catalogue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsliit-foss%2Fnpm-catalogue/lists"}