├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .stackblitzrc ├── .vscode ├── extensions.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── app.vue ├── assets │ └── css │ │ └── markdown.css ├── components │ ├── AppFooter.vue │ ├── AppHeader.vue │ ├── ReviewImageGenerator.vue │ ├── ReviewResult.vue │ ├── SteamIdInput.vue │ └── ThemeToggle.vue ├── constants │ └── index.ts ├── layouts │ ├── README.md │ └── default.vue ├── pages │ ├── announcement.vue │ ├── export.vue │ ├── index.vue │ ├── review.vue │ └── sponsor.vue └── prompts │ └── v3.ts ├── eslint.config.js ├── netlify.toml ├── nuxt.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public ├── apple-touch-icon.png ├── favicon.ico ├── icon.svg ├── robots.txt ├── sponsor │ ├── alipay.png │ └── wechat.png └── vite.png ├── server └── tsconfig.json ├── tsconfig.json └── uno.config.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.npmrc -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/README.md -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/assets/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/assets/css/markdown.css -------------------------------------------------------------------------------- /app/components/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/AppFooter.vue -------------------------------------------------------------------------------- /app/components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/AppHeader.vue -------------------------------------------------------------------------------- /app/components/ReviewImageGenerator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/ReviewImageGenerator.vue -------------------------------------------------------------------------------- /app/components/ReviewResult.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/ReviewResult.vue -------------------------------------------------------------------------------- /app/components/SteamIdInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/SteamIdInput.vue -------------------------------------------------------------------------------- /app/components/ThemeToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/components/ThemeToggle.vue -------------------------------------------------------------------------------- /app/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/constants/index.ts -------------------------------------------------------------------------------- /app/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/layouts/README.md -------------------------------------------------------------------------------- /app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/layouts/default.vue -------------------------------------------------------------------------------- /app/pages/announcement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/pages/announcement.vue -------------------------------------------------------------------------------- /app/pages/export.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/pages/export.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /app/pages/review.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/pages/review.vue -------------------------------------------------------------------------------- /app/pages/sponsor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/pages/sponsor.vue -------------------------------------------------------------------------------- /app/prompts/v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/app/prompts/v3.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/eslint.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/netlify.toml -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /public/sponsor/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/sponsor/alipay.png -------------------------------------------------------------------------------- /public/sponsor/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/sponsor/wechat.png -------------------------------------------------------------------------------- /public/vite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/public/vite.png -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.nuxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kutius/steam-judger/HEAD/uno.config.ts --------------------------------------------------------------------------------