{"id":26935869,"url":"https://github.com/adammcodes/zombies","last_synced_at":"2026-05-03T16:31:36.750Z","repository":{"id":285660826,"uuid":"958905003","full_name":"adammcodes/zombies","owner":"adammcodes","description":"Phaser + React top down shooter where zombies have taken over. Find all the antidote samples to save the world!","archived":false,"fork":false,"pushed_at":"2025-04-02T01:04:05.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T01:34:32.039Z","etag":null,"topics":["phaser","react"],"latest_commit_sha":null,"homepage":"https://adammcodes-zombies.netlify.app/","language":"TypeScript","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/adammcodes.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}},"created_at":"2025-04-02T00:37:10.000Z","updated_at":"2025-04-02T01:04:10.000Z","dependencies_parsed_at":"2025-04-02T01:34:34.040Z","dependency_job_id":"b20d3a4e-d2b6-493e-a554-147c021e7b38","html_url":"https://github.com/adammcodes/zombies","commit_stats":null,"previous_names":["adammcodes/zombies"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adammcodes/zombies","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adammcodes%2Fzombies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adammcodes%2Fzombies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adammcodes%2Fzombies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adammcodes%2Fzombies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adammcodes","download_url":"https://codeload.github.com/adammcodes/zombies/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adammcodes%2Fzombies/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32577119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["phaser","react"],"created_at":"2025-04-02T12:19:50.580Z","updated_at":"2026-05-03T16:31:36.733Z","avatar_url":"https://github.com/adammcodes.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zombies\n\n[Play the game](https://adammcodes-zombies.netlify.app/).\n\nZombies is a rebuild of a game called Lockdown, which was our web development bootcamp final project. The original repo with all contributors is [here](https://github.com/adamm13/lockdown).\n\n## Rebuild Goals\n\n- Move off react-scripts and build with Vite\n- Migrate from JavaScript to Typescript\n- Use modern css instead of sass\n- Update to modern dependencies and build tools\n\n# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:\n\n```js\nexport default tseslint.config({\n  extends: [\n    // Remove ...tseslint.configs.recommended and replace with this\n    ...tseslint.configs.recommendedTypeChecked,\n    // Alternatively, use this for stricter rules\n    ...tseslint.configs.strictTypeChecked,\n    // Optionally, add this for stylistic rules\n    ...tseslint.configs.stylisticTypeChecked,\n  ],\n  languageOptions: {\n    // other options...\n    parserOptions: {\n      project: [\"./tsconfig.node.json\", \"./tsconfig.app.json\"],\n      tsconfigRootDir: import.meta.dirname,\n    },\n  },\n});\n```\n\nYou can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:\n\n```js\n// eslint.config.js\nimport reactX from \"eslint-plugin-react-x\";\nimport reactDom from \"eslint-plugin-react-dom\";\n\nexport default tseslint.config({\n  plugins: {\n    // Add the react-x and react-dom plugins\n    \"react-x\": reactX,\n    \"react-dom\": reactDom,\n  },\n  rules: {\n    // other rules...\n    // Enable its recommended typescript rules\n    ...reactX.configs[\"recommended-typescript\"].rules,\n    ...reactDom.configs.recommended.rules,\n  },\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadammcodes%2Fzombies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadammcodes%2Fzombies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadammcodes%2Fzombies/lists"}