{"id":19319130,"url":"https://github.com/selcold/scratch-building","last_synced_at":"2026-02-23T20:39:38.602Z","repository":{"id":219897821,"uuid":"749913462","full_name":"selcold/scratch-building","owner":"selcold","description":"Scratch Building is a game developed on the Scratch platform, and this repository serves as its official website. It provides various features including account authentication, commenting, notifications, and community engagement.","archived":false,"fork":false,"pushed_at":"2025-02-27T12:43:12.000Z","size":2968,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-25T08:37:06.369Z","etag":null,"topics":["ads","auth","game","nextjs","scratch","scratch-auth","typescript","vercel","vercel-hosting","website"],"latest_commit_sha":null,"homepage":"https://scratch-building.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/selcold.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-29T16:38:49.000Z","updated_at":"2024-12-03T11:22:14.000Z","dependencies_parsed_at":"2024-03-06T03:28:00.787Z","dependency_job_id":"061ba900-9a06-4d9e-af3e-fc449ce2948d","html_url":"https://github.com/selcold/scratch-building","commit_stats":null,"previous_names":["selcold/scratch-building"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/selcold/scratch-building","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selcold%2Fscratch-building","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selcold%2Fscratch-building/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selcold%2Fscratch-building/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selcold%2Fscratch-building/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/selcold","download_url":"https://codeload.github.com/selcold/scratch-building/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selcold%2Fscratch-building/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29754532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T19:23:13.917Z","status":"ssl_error","status_checked_at":"2026-02-23T19:23:11.618Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["ads","auth","game","nextjs","scratch","scratch-auth","typescript","vercel","vercel-hosting","website"],"created_at":"2024-11-10T01:22:15.125Z","updated_at":"2026-02-23T20:39:38.570Z","avatar_url":"https://github.com/selcold.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scratch Building\n\nScratch Building is a game developed on the Scratch platform, and this repository serves as its official website. It provides various features including account authentication, commenting, notifications, and community engagement.\n\n## language\n\n[English](https://github.com/selcold/scratch-building/blob/main/README.md) / [日本語](https://github.com/selcold/scratch-building/blob/main/README/ja.md)\n\n\n# Table of Contents\n- [Scratch Building Website](#scratch-building)\n- [Adding New MODs](#adding-new-mods)\n    - [Files](#files)\n    - [Information to Add](#information-to-add)\n    - [Example Addition](#example-addition)\n\n# Adding New MODs\n\nHere are the steps to add a new MOD to this repository.\n\n## Files\n\nPlease place the file for the new MOD in the following location:\n\n- **File Path:** `/contents/mods.ts`\n\n## Information to Add\n\nAdd information for the new MOD to the `contentObj_modsAll` object in the `mods.ts` file.\n\n### Properties\n\n1. **version:** Specify the version number of the MOD.\n2. **project_type:** Specify the type of the project. Example: \"SBMOD\", \"SBAPI\", \"SBAddons\", \"SBaddonAPI\".\n3. **project_id:** Specify the ID of the project.\n4. **creator:** Specify the creator of the MOD.\n5. **title:** Specify the title of the MOD.\n6. **title_en:** Specify the English title of the MOD (optional).\n7. **description:** Specify the description of the MOD.\n8. **description_en:** Specify the English description of the MOD (optional).\n9. **tags:** Specify tags related to the MOD. Each tag has a label and a color.\n\n### Example Addition\n\n```typescript\n{\n    \"version\": 7,\n    \"project_type\": \"SBMOD\",\n    \"project_id\": YOUR_PROJECT_ID,\n    \"creator\": \"YOUR_NAME\",\n    \"title\": \"YOUR_MOD_TITLE\",\n    \"title_en\": \"YOUR_MOD_EN_TITLE\", // Optional\n    \"description\": \"YOUR_MOD_DESCRIPTION\",\n    \"description_en\": \"YOUR_MOD_EN_DESCRIPTION\", // Optional\n    \"tags\": [\n        {\n            \"label\": \"YOUR_TAG_LABEL\",\n            \"color\": \"YOUR_TAG_COLOR\"\n        },\n        // Add additional tags here if needed\n    ]\n}\n```\n\n\u003e [!NOTE]\n\u003e - Choose the color for the tags from the following values: \"dark\", \"blue\", \"red\", \"green\", \"yellow\", \"indigo\", \"purple\", \"pink\", \"\" (empty string).\n\u003e - Don't forget to create a pull request after making changes to the file.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselcold%2Fscratch-building","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fselcold%2Fscratch-building","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselcold%2Fscratch-building/lists"}