{"id":30853595,"url":"https://github.com/cyevgeniy/open-checklist-catalog","last_synced_at":"2026-02-12T12:48:26.581Z","repository":{"id":312398631,"uuid":"1033274823","full_name":"cyevgeniy/open-checklist-catalog","owner":"cyevgeniy","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-07T13:14:33.000Z","size":777,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-07T22:08:12.770Z","etag":null,"topics":["checklist","checklists","open-checklists"],"latest_commit_sha":null,"homepage":"https://open-checklists.netlify.app/","language":"Vue","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/cyevgeniy.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-06T15:02:06.000Z","updated_at":"2026-02-07T13:14:36.000Z","dependencies_parsed_at":"2025-08-30T11:21:00.157Z","dependency_job_id":"58e79041-d8ac-4640-8a97-c9f41fba0c6e","html_url":"https://github.com/cyevgeniy/open-checklist-catalog","commit_stats":null,"previous_names":["cyevgeniy/open-checklist-catalog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cyevgeniy/open-checklist-catalog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyevgeniy%2Fopen-checklist-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyevgeniy%2Fopen-checklist-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyevgeniy%2Fopen-checklist-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyevgeniy%2Fopen-checklist-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cyevgeniy","download_url":"https://codeload.github.com/cyevgeniy/open-checklist-catalog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyevgeniy%2Fopen-checklist-catalog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29366370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["checklist","checklists","open-checklists"],"created_at":"2025-09-07T09:37:34.363Z","updated_at":"2026-02-12T12:48:26.553Z","avatar_url":"https://github.com/cyevgeniy.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Checklists catalog\n\nA web interface for working with open-checklists.\n\n## Running locally\n\n1. `npm i`\n2. `npm run dev`\n\n## How it works\n\nChecklists catalog uses [Nuxt Content](https://content.nuxt.com/) for \nworking with checklists.\n\nJust create a `.json` file in the `content` directory.\n\nTo create an open-checklists json file you can use [the constructor](https://github.com/cyevgeniy/open-checklist-constructor).\n\n## Customization\n\nTo customize appearance of the catalog, the `catalog.ts` file is used.\nConfiguration example:\n\n```ts\nexport const config = defineConfig({\n    githubUrl: 'https://github.com/cyevgeniy',\n    title: 'Open Checklists',\n    nav: [\n        {text: 'What is it?', link: 'https://github.com', target: \"_blank\"},\n        {text: 'Want my own!', link: '/list-own'}\n    ],\n    footer: {\n        text: 'Open Checklists, 2025'\n    }\n})\n```\n\n`defineConfig` function accepts `Config` object:\n\n\n```ts\ninterface Config {\n    /**\n     * Link to a github repo\n     */\n    githubUrl?: string\n\n    /**\n     * The title of the site.\n     * Will be shown in the header\n     */\n    title: string\n\n    nav?: NavLink[]\n\n    footer?: Footer\n}\n```\n\n### `NavLink`\n\n```ts\ninterface NavLink {\n    /**\n     * Link text\n     * @example 'My projects'\n     */\n    text: string\n\n    /**\n     * URL of the link\n     * @example 'https://example.com'\n     * @example '/list-own'\n     */\n    link: string\n\n    /**\n     * target attribute\n     * @example '_blank'\n     */\n    target?: string\n}\n```\n\n### `Footer`\n\n```ts\ninterface Footer {\n    /**\n     * Text to display in the footer\n     * @example 'Made with Nuxt by John Doe'\n     */\n    text?: string\n}\n```\n\n### Icons\n\nYou can add an icon to the checklist card by extending your checklists with\n`_icon` field. It should contain an icon name from Iconify: \n\n```json\n{\n  \"title\": \"Create own checklists catalog\",\n  \"description\": \"\",\n  \"created_at\": \"2025-08-15\",\n  \"_icon\": \"carbon:carbon\",\n  \"items\": [\n    ...\n  ]\n}\n```\n\n![card with icon example](screenshots/card.png)\n\n### tags\n\nYou can add a tags list to each checklist with the `_tags` field:\n\n```json\n{\n  \"title\": \"Signup and login forms\",\n  \"_tags\": [\"form\", \"example\"],\n  \"items\": [\n    ...\n  ]\n}\n```\n\n## Misc\n\nIcon for the logo: `icon-park-outline:check-one`.\n\nColor: #12a627;","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyevgeniy%2Fopen-checklist-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcyevgeniy%2Fopen-checklist-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyevgeniy%2Fopen-checklist-catalog/lists"}