{"id":21769644,"url":"https://github.com/haiilo/catalyst-icons","last_synced_at":"2025-03-21T06:14:07.995Z","repository":{"id":37534838,"uuid":"484745699","full_name":"haiilo/catalyst-icons","owner":"haiilo","description":"The official Haiilo SVG icon set.","archived":false,"fork":false,"pushed_at":"2024-09-11T12:43:42.000Z","size":4963,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-10-15T08:32:34.789Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://haiilo.github.io/catalyst-icons/","language":"HTML","has_issues":false,"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/haiilo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2022-04-23T12:48:51.000Z","updated_at":"2024-09-11T12:44:03.000Z","dependencies_parsed_at":"2023-12-05T16:40:58.627Z","dependency_job_id":"3e8afa91-f966-415c-af63-767b8fd40d95","html_url":"https://github.com/haiilo/catalyst-icons","commit_stats":{"total_commits":405,"total_committers":10,"mean_commits":40.5,"dds":0.7703703703703704,"last_synced_commit":"613bc58778a8f7a7b11834b2a3ad1505ad0e1842"},"previous_names":[],"tags_count":95,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haiilo%2Fcatalyst-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haiilo%2Fcatalyst-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haiilo%2Fcatalyst-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haiilo%2Fcatalyst-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haiilo","download_url":"https://codeload.github.com/haiilo/catalyst-icons/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244745751,"owners_count":20503050,"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":[],"created_at":"2024-11-26T14:09:27.722Z","updated_at":"2025-03-21T06:14:07.973Z","avatar_url":"https://github.com/haiilo.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Haiilo SVG Icons\n\n[![Build](https://github.com/haiilo/catalyst-icons/actions/workflows/build.yml/badge.svg)](https://github.com/haiilo/catalyst-icons/actions/workflows/build.yml)\n[![Release](https://github.com/haiilo/catalyst-icons/actions/workflows/release.yml/badge.svg)](https://github.com/haiilo/catalyst-icons/actions/workflows/release.yml)\n[![Deploy](https://github.com/haiilo/catalyst-icons/actions/workflows/pages.yml/badge.svg)](https://github.com/haiilo/catalyst-icons/actions/workflows/pages.yml)\n\nThis project contains all icons for the Catalyst design system custom SVG icon\nset.\n\n## Getting started\n\nInstall `@haiilo/catalyst-icons` in your Node.js powered apps with the\n[npm package](https://www.npmjs.com/package/@haiilo/catalyst-icons):\n\n```shell\nnpm install @haiilo/catalyst-icons\n```\n\n## Add new icons via web\n\n1. Go to [Code \u003e src](https://github.com/haiilo/catalyst-icons/tree/main/src)\nand upload your new icon to the `src` directory. This can be done via the menu\non the top right or simply by dragging your icon into the web browser.\n2. Stick to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) for your commit message, e.g. _feat: add new RTE icons_.\n3. Navigate to [Actions \u003e Release](https://github.com/haiilo/catalyst-icons/actions/workflows/release.yml) and trigger a manual CI release by clicking the `Run workflow`\nbutton (Branch: `main` / Release level: `patch`).\n\n## Contributing\n\nIf you want to add a new icon to this repository, please make sure that your SVG\nicon conforms with the overall structure of the other SVG icons:\n\n```svg\n\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"\u003e\n  \u003cpath d=\"{{ICON_PATH}}\"/\u003e\n\u003c/svg\u003e\n```\n\n### Package management\n\nThis project is using [npm](https://www.npmjs.com/) as a package manager. This\nis especially important if you want to add new dependencies to a project and\nfail to provide an updated `package-lock.json`. This will cause the CI build to\nfail. If dependencies in the package lock do not match those in `package.json`,\nnpm will exit with an error in the CI build, instead of updating the package\nlock.\n\n### Build\n\nRun `npm run build` to build the project. The build artifacts will be stored in\nthe `dist` directory. SVG sprites and style definitions for different\npreprocessors will automatically be generated in `dist/style` and `dist/svg`\nrespectively. Also, standalone HTML previews will become available in the `dist`\ndirectory.\n\n### Publishing\n\nThe preferred way to publish a new release is via the corresponding GitHub\nActions CI workflow. Navigate to [Actions \u003e Release](https://github.com/haiilo/catalyst-icons/actions/workflows/release.yml)\nand trigger a manual CI release by clicking the `Run workflow` button\n(Branch: `main` / Release level: `patch`).\n\nThe library can also be published locally by running `npm publish`. To simplyfy\nthe manual release process, you can use the following npm commands:\n\n * **npm run release:major** releases a new *major* version\n * **npm run release:minor** releases a new *minor* version\n * **npm run release:patch** releases a new *patch* version\n\n## Code Contributors\n\nThis project exists thanks to all the people who contribute.\n\n\u003ca href=\"https://github.com/haiilo/catalyst-icons/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=haiilo/catalyst-icons\" /\u003e\n\u003c/a\u003e\n\n## License\n\nThe license is available within the main repository in the\n[LICENSE](https://github.com/haiilo/catalyst/blob/main/LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaiilo%2Fcatalyst-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaiilo%2Fcatalyst-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaiilo%2Fcatalyst-icons/lists"}