{"id":21518762,"url":"https://github.com/halo-lab/eleventy-packages","last_synced_at":"2026-02-26T08:38:29.269Z","repository":{"id":46026268,"uuid":"405116660","full_name":"Halo-Lab/eleventy-packages","owner":"Halo-Lab","description":"Monorepo for all Eleventy plugins.","archived":false,"fork":false,"pushed_at":"2025-04-03T10:35:55.000Z","size":1095,"stargazers_count":24,"open_issues_count":9,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T22:06:58.724Z","etag":null,"topics":["eleventy","monorepo","plugin"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Halo-Lab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-09-10T14:54:47.000Z","updated_at":"2025-04-03T10:35:59.000Z","dependencies_parsed_at":"2023-02-16T20:45:37.513Z","dependency_job_id":"a9964942-d12f-4631-ac61-9aafa0a4736b","html_url":"https://github.com/Halo-Lab/eleventy-packages","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Halo-Lab/eleventy-packages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Halo-Lab%2Feleventy-packages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Halo-Lab%2Feleventy-packages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Halo-Lab%2Feleventy-packages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Halo-Lab%2Feleventy-packages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Halo-Lab","download_url":"https://codeload.github.com/Halo-Lab/eleventy-packages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Halo-Lab%2Feleventy-packages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29854020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"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":["eleventy","monorepo","plugin"],"created_at":"2024-11-24T00:53:52.563Z","updated_at":"2026-02-26T08:38:29.253Z","avatar_url":"https://github.com/Halo-Lab.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Eleventy packages\n\nThis monorepository groups several plugins and `kickin` CLI in order to make their development easier. Documentation for every package is in their own folders. Please, refer to them if you search for plugin's behavior.\n\nIt consists of:\n\n1. [eleventy-plugin-compress](./packages/eleventy-plugin-compress)\n2. [eleventy-plugin-pwa-icons](./packages/eleventy-plugin-pwa-icons)\n3. [eleventy-plugin-scripts](./packages/eleventy-plugin-scripts)\n4. [eleventy-plugin-styles](./packages/eleventy-plugin-styles)\n5. [eleventy-plugin-workbox](./packages/eleventy-plugin-workbox)\n6. [eleventy-plugin-cloudflare-image-resizing](./packages/eleventy-plugin-cloudflare-image-resizing)\n7. [eleventy-shortcode-image](./packages/eleventy-shortcode-image)\n8. [kickin](./packages/kickin)\n\n## Prerequisites\n\nThis project relies on [npm workspaces](https://docs.npmjs.com/cli/v7/using-npm/workspaces) feature that is available since npm `v7`. For Node version there aren't any restrictions.\n\n1. `node` - at least last LTS release (preferable).\n2. `npm` - `^7.0.0` (needed for workspaces).\n\n## Development\n\n### Building\n\nFor building packages use command below:\n\n```\nnpm run build\n```\n\n### Publishing\n\nFor publishing a package use `release:*` commands.\n\n\u003e Don't forget to bump a version of the package.\n\n### Commits\n\n\u003e Before committing changes be sure that they are described in `CHANGELOG.md` and `README.md` files under package that have been changed!\n\nThis project uses [Conventional Changelog Specification](https://github.com/conventional-changelog/) for structuring commit messages.\n\nCommit message should have this structure:\n\n```\ntype(scope?): subject\nbody?\nfooter?\n```\n\n\u003e `?` means that section is optional.\n\n- `type` can only be one of this words:\n\n```\n| `build` - changes that affect the build system or external dependencies.\n| `chore` - unimportant small changes.\n| `ci` - changes to our CI configuration files and scripts.\n| `docs` - documentation only changes.\n| `feat` - a new feature.\n| `fix` - a bug fix.\n| `perf` - a code change that improves performance.\n| `refactor` - a code change that neither fixes a bug nor adds a feature.\n| `revert` - a code change that returns back some functionality.\n| `style` - changes that do not affect the meaning of the code.\n| `test` - adding missing tests or correcting existing tests.\n```\n\n- `scope` is a name of the package that was changed.\n- `subject` is a short description of the commit.\n- `body` is a detailed description (reasons of the changes, what is done, how and so on.)\n- `footer` can be used for marking issue ids on GitHub.\n\n\u003e You can refer to [Angular guidelines](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines) for extended information.\n\n## Word from author\n\nHave fun! ✌️\n\n\u003ca href=\"https://www.halo-lab.com/?utm_source=github\"\u003e\n  \u003cimg src=\"https://dgestran.sirv.com/Images/supported-by-halolab.png\" alt=\"Supported by Halo lab\" height=\"60\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhalo-lab%2Feleventy-packages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhalo-lab%2Feleventy-packages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhalo-lab%2Feleventy-packages/lists"}