{"id":17147816,"url":"https://github.com/alexanderwe/conventionalcommitskit","last_synced_at":"2025-10-04T11:17:16.113Z","repository":{"id":39894230,"uuid":"325055147","full_name":"alexanderwe/ConventionalCommitsKit","owner":"alexanderwe","description":"A small library to create and parse Conventional Commit conforming representations.","archived":false,"fork":false,"pushed_at":"2022-07-17T22:05:13.000Z","size":239,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-27T16:54:06.122Z","etag":null,"topics":["conventional-commits","parser","swift","swift5"],"latest_commit_sha":null,"homepage":"https://alexanderwe.github.io/ConventionalCommitsKit/documentation/conventionalcommitskit","language":"Swift","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/alexanderwe.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}},"created_at":"2020-12-28T16:02:43.000Z","updated_at":"2023-06-05T12:17:23.000Z","dependencies_parsed_at":"2022-09-16T16:45:05.831Z","dependency_job_id":null,"html_url":"https://github.com/alexanderwe/ConventionalCommitsKit","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/alexanderwe/ConventionalCommitsKit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderwe%2FConventionalCommitsKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderwe%2FConventionalCommitsKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderwe%2FConventionalCommitsKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderwe%2FConventionalCommitsKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexanderwe","download_url":"https://codeload.github.com/alexanderwe/ConventionalCommitsKit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderwe%2FConventionalCommitsKit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278302593,"owners_count":25964533,"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-10-04T02:00:05.491Z","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":["conventional-commits","parser","swift","swift5"],"created_at":"2024-10-14T21:26:09.067Z","updated_at":"2025-10-04T11:17:16.079Z","avatar_url":"https://github.com/alexanderwe.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ConventionalCommitsKit\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://developer.apple.com/swift/\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/Swift-5.0-orange.svg?style=flat\" alt=\"Swift 5.0\"\u003e\n   \u003c/a\u003e\n   \u003ca href=\"https://github.com/apple/swift-package-manager\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg\" alt=\"SPM\"\u003e\n   \u003c/a\u003e\n\n   \u003ca href=\"https://github.com/alexanderwe/ConventionalCommitsKit\"\u003e\n      \u003cimg src=\"https://github.com/alexanderwe/ConventionalCommitsKit/workflows/Main%20Branch%20CI/badge.svg\" alt=\"CI\"\u003e\n   \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n   ConventionalCommitsKit is a small library to create and parse \u003ca href=\"https://www.conventionalcommits.org/en/v1.0.0/\"\u003eConventional Commit\u003c/a\u003e conforming representations.\n\u003c/p\u003e\n\n## Installation\n\n### Swift Package Manager\n\nTo integrate using Apple's [Swift Package Manager](https://swift.org/package-manager/), add the following as a dependency to your `Package.swift`:\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/alexanderwe/ConventionalCommitsKit.git\", from: \"1.0.0\")\n]\n```\n\nAlternatively navigate to your Xcode project, select `Swift Packages` and click the `+` icon to search for `ConventionalCommitsKit`.\n\n### Manually\n\nIf you prefer not to use any of the aforementioned dependency managers, you can integrate `ConventionalCommitsKit` into your project manually. Simply drag the `Sources` Folder into your Xcode project.\n\n## Usage\n\nAt first import `ConventionalCommitsKit`\n\n```swift\nimport ConventionalCommitsKit\n```\n\nDefine a `ConventionalCommit` based on a commit message. Be aware that the parsing can fail and throw an appropriate error.\n\n```swift\nlet commitMessage = \"\"\"\nfix: correct minor typos in code\n\nsee the issue for details\n\non typos fixed.\n\nReviewed-by #Z\nRefs #133\n\"\"\"\n\nlet commit = try ConventionalCommit(input: commitMessage)\n```\n\n## Contributing\n\nContributions are very welcome 🙌\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexanderwe%2Fconventionalcommitskit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexanderwe%2Fconventionalcommitskit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexanderwe%2Fconventionalcommitskit/lists"}