{"id":21311330,"url":"https://github.com/kickstartds/eleventy-plugin-kickstartds","last_synced_at":"2025-09-20T09:50:45.247Z","repository":{"id":191347631,"uuid":"684037195","full_name":"kickstartDS/eleventy-plugin-kickstartDS","owner":"kickstartDS","description":"11ty plugin to render kickstartDS based Design System components","archived":false,"fork":false,"pushed_at":"2024-10-10T09:41:30.000Z","size":1024,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-18T05:55:51.981Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kickstartDS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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}},"created_at":"2023-08-28T10:17:55.000Z","updated_at":"2024-10-10T09:41:36.000Z","dependencies_parsed_at":"2025-07-30T01:40:28.685Z","dependency_job_id":"cfa99e1d-4da2-45b0-87d6-7036a5014fea","html_url":"https://github.com/kickstartDS/eleventy-plugin-kickstartDS","commit_stats":null,"previous_names":["kickstartds/eleventy-plugin-kickstartds"],"tags_count":13,"template":false,"template_full_name":"5t3ph/eleventy-plugin-template","purl":"pkg:github/kickstartDS/eleventy-plugin-kickstartDS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kickstartDS%2Feleventy-plugin-kickstartDS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kickstartDS%2Feleventy-plugin-kickstartDS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kickstartDS%2Feleventy-plugin-kickstartDS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kickstartDS%2Feleventy-plugin-kickstartDS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kickstartDS","download_url":"https://codeload.github.com/kickstartDS/eleventy-plugin-kickstartDS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kickstartDS%2Feleventy-plugin-kickstartDS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276077896,"owners_count":25581305,"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","status":"online","status_checked_at":"2025-09-20T02:00:10.207Z","response_time":63,"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":[],"created_at":"2024-11-21T17:17:32.129Z","updated_at":"2025-09-20T09:50:45.231Z","avatar_url":"https://github.com/kickstartDS.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Eleventy Plugin Template\n\n\u003e A starter environment for creating plugins for Eleventy (11ty).\n\nFork this repo, or select \"Use this template\" to get started.\n\n### Using this template\n\nThis template is setup to run a single page 11ty site for testing your plugin functionality. The build files are excluded from the final plugin package via `.npmignore`.\n\nYour plugin functionality should live in/be exported from `.eleventy.js`. You will find a sample of creating a filter plugin in this template, including setting up a default config and merging user options.\n\n**Be sure to update the `package.json` with your own details!**\n\n### Testing your plugin\n\nYou can test your functionality within this project's local 11ty build by running `npm start`, but you'll also want to test it _as a plugin_.\n\nFrom another local 11ty project, you can set the `require()` path relatively to your plugin's project directory, and then use it just as you would for a plugin coming from a package.\n\nExample, assuming you place all your repositories within the same parent directory:\n\n```js\nconst pluginName = require(\"../plugin-directory\");\n\nmodule.exports = (eleventyConfig) =\u003e {\n  eleventyConfig.addPlugin(pluginName, { optionName: 'if needed' );\n};\n```\n\nThen, run the project to test the plugin's functionality.\n\nNote that making changes in the plugin source will likely require restarting the test project.\n\n### Resources for creating an 11ty plugin\n\n- Bryan Robinson's [\"Create a Plugin with 11ty\"](https://www.youtube.com/watch?v=aO-NFFKjnnE) demonstration on \"Learn With Jason\"\n\n---\n\n**The following is a boilerplate for your final plugin README**.\n\n## Usage\n\nDescribe how to install your plugin, such as:\n\n```bash\nnpm install @scope/plugin-name\n```\n\nThen, include it in your `.eleventy.js` config file:\n\n```js\nconst pluginName = require(\"@scope/plugin-name\");\n\nmodule.exports = (eleventyConfig) =\u003e {\n  eleventyConfig.addPlugin(pluginName);\n};\n```\n\n## Config Options\n\n| Option      | Type | Default       |\n| ----------- | ---- | ------------- |\n| option name | type | default value |\n\n## Config Examples\n\nShow examples of likely configurations.\n\n## Contributing\n\nContributions are welcome. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as below, without any additional terms or conditions.\n\n## License\n\nThis project is licensed under either of\n\n- [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) ([LICENSE-APACHE](LICENSE-APACHE))\n- [MIT license](https://opensource.org/license/mit/) ([LICENSE-MIT](LICENSE-MIT))\n\nat your option.\n\nThe SPDX license identifier for this project is MIT OR Apache-2.0.\n\n---\n\nFor more information and updates, please visit the project's GitHub repository.\n\n## Support\n\nJoin our [Discord community](https://discord.gg/mwKzD5gejY) for support, or leave an issue on this repository!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkickstartds%2Feleventy-plugin-kickstartds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkickstartds%2Feleventy-plugin-kickstartds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkickstartds%2Feleventy-plugin-kickstartds/lists"}