{"id":40435881,"url":"https://github.com/chenxing-dev/drink-tier-list","last_synced_at":"2026-01-20T16:31:38.759Z","repository":{"id":304702833,"uuid":"1019657818","full_name":"chenxing-dev/drink-tier-list","owner":"chenxing-dev","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-24T11:47:28.000Z","size":15498,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-24T17:20:24.879Z","etag":null,"topics":["bubbletea","coffee","drinks","html","juice","milktea","tier-list","typescript"],"latest_commit_sha":null,"homepage":"https://chenxing-dev.github.io/drink-tier-list/","language":"TypeScript","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/chenxing-dev.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}},"created_at":"2025-07-14T17:04:03.000Z","updated_at":"2025-08-24T11:47:31.000Z","dependencies_parsed_at":"2025-07-14T22:14:52.688Z","dependency_job_id":"e8482f82-5671-4c32-a348-d0276be1a8fa","html_url":"https://github.com/chenxing-dev/drink-tier-list","commit_stats":null,"previous_names":["chenxing-dev/drink-tier-list"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chenxing-dev/drink-tier-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chenxing-dev%2Fdrink-tier-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chenxing-dev%2Fdrink-tier-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chenxing-dev%2Fdrink-tier-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chenxing-dev%2Fdrink-tier-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chenxing-dev","download_url":"https://codeload.github.com/chenxing-dev/drink-tier-list/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chenxing-dev%2Fdrink-tier-list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":["bubbletea","coffee","drinks","html","juice","milktea","tier-list","typescript"],"created_at":"2026-01-20T16:31:37.992Z","updated_at":"2026-01-20T16:31:38.747Z","avatar_url":"https://github.com/chenxing-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 饮料等级榜 Tier List 🥤\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Vite](https://img.shields.io/badge/Vite-4.0-blue)](https://vitejs.dev/)\n[![Preact](https://img.shields.io/badge/Preact-10.0-purple)](https://preactjs.com/)\n[![TailwindCSS](https://img.shields.io/badge/TailwindCSS-3.0-blueviolet)](https://tailwindcss.com/)\n\n**好喝难喝，一口见真章！** \n\n这是一个采用Neobrutalism风格的饮料测评Tier List网页\n\n![网站截图](preview.gif)\n\n## 特点 ✨\n\n- **Neobrutalism设计**：粗边框、鲜艳色彩、偏移阴影\n- **Tier List布局**：S/A/B/C/D五级直观展示饮料评价\n- **气泡小游戏**：点击气泡赢积分\n\n## 技术栈 💻\n\n- **框架**: [Preact](https://preactjs.com/) (轻量级React替代)\n- **语言**: [TypeScript](https://www.typescriptlang.org/)\n- **样式**: [TailwindCSS](https://tailwindcss.com/)\n- **构建工具**: [Vite](https://vitejs.dev/)\n\n## 安装与运行 🚀\n\n```bash\n# 克隆仓库\ngit clone https://github.com/chenxing-dev/drink-tier-list.git\ncd drink-tier-list\n\n# 安装依赖\nnpm install\n\n# 启动开发服务器\nnpm run dev\n\n# 构建生产版本\nnpm run build\n```\n\n## 项目结构 📁\n\n```\nbeverage-tierlist/\n├── src/\n│   ├── components/     # Preact组件\n│   │   ├── BubbleGameModal.tsx\n│   │   ├── Header.tsx\n│   │   ├── TierList.tsx\n│   │   └── ...\n│   ├── data/\n│   │   └── drinks.ts   # 饮料数据\n│   ├── index.tsx       # 应用入口\n│   └── types.ts        # TypeScript类型定义\n├── public/             # 静态资源\n├── index.html          # 主HTML文件\n├── README.md           # 项目文档\n├── TODO.md             # 待办事项\n└── vite.config.js      # Vite配置\n```\n\n## 贡献指南 🤝\n\n这个饮料测评列表需要你的建议：\n\n**告诉我：**\n\n1. 你想看我测评哪款饮料？（品牌+饮品名）\n2. 你觉得哪款饮料被高估或低估了？\n3. 有什么特别的喝法或隐藏菜单值得尝试？\n\n**提交方式：**\n[点此提交建议](https://github.com/chenxing-dev/drink-tier-list/issues/new?template=suggestion.md)\n\n注意事项：\n- 优先选择可在广州/广东/中国购买的品牌饮品\n- 价格限于0～50元\n\n## 许可证 📄\n\n本项目采用 [MIT 许可证](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchenxing-dev%2Fdrink-tier-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchenxing-dev%2Fdrink-tier-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchenxing-dev%2Fdrink-tier-list/lists"}