{"id":49850152,"url":"https://github.com/tmdlrg/worldgame","last_synced_at":"2026-05-14T15:05:27.625Z","repository":{"id":356080102,"uuid":"1230802752","full_name":"TMDLRG/WorldGame","owner":"TMDLRG","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-06T13:35:25.000Z","size":306,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-06T15:40:13.009Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/TMDLRG.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-05-06T10:35:46.000Z","updated_at":"2026-05-06T13:35:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/TMDLRG/WorldGame","commit_stats":null,"previous_names":["tmdlrg/worldgame"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/TMDLRG/WorldGame","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMDLRG%2FWorldGame","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMDLRG%2FWorldGame/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMDLRG%2FWorldGame/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMDLRG%2FWorldGame/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TMDLRG","download_url":"https://codeload.github.com/TMDLRG/WorldGame/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMDLRG%2FWorldGame/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33030385,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-05-14T15:05:25.606Z","updated_at":"2026-05-14T15:05:27.620Z","avatar_url":"https://github.com/TMDLRG.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XSWU\n\nA static, kid-safe educational SPA (Vite + React + TypeScript) deployed to Vercel.\n\n**Repository:** [github.com/TMDLRG/WorldGame](https://github.com/TMDLRG/WorldGame)\n\n## Deployment (Vercel)\n\n- **Linked CLI project:** team **michael-polzins-projects**, project **`worldgame`** (from `app/`: `npx vercel link --yes --project worldgame`). Inspect deployments in the [worldgame project](https://vercel.com/michael-polzins-projects/worldgame).\n- **Import** this repo in the [Vercel dashboard](https://vercel.com) if you prefer dashboard-first setup, and set **Root Directory** to `app` (the Vite app and [app/vercel.json](app/vercel.json) live there). For Git-triggered builds, connect **GitHub → TMDLRG/WorldGame** on that project (CLI `vercel git connect` may fail until the Vercel GitHub integration has access to the org/repo).\n- **Production build**: `npm run build` → static output in `app/dist`; SPA rewrites and security headers are defined in `app/vercel.json`.\n- **CLI**: from `app/`, `npx vercel --prod` deploys using the linked team/project. After GitHub is connected, pushes to `main` should trigger Preview / Production per your project settings.\n- If unauthenticated requests return **401**, turn off **Deployment Protection** for this project (Vercel → Project → Settings → Deployment Protection), or open the URL while signed into the same Vercel team.\n\n## Layout\n\n```\n.\n+-- app/                    # Vite app (run npm scripts here)\n+-- .github/workflows/ci.yml\n+-- vercel.json             # in app/, governs CSP + caching\n+-- .cursor/                # ORC MCP rules\n```\n\n## Local development\n\nRequires Node 20+ (see [app/.nvmrc](app/.nvmrc)).\n\n```bash\ncd app\nnpm ci\nnpm run dev      # http://localhost:5173\nnpm test         # vitest\nnpm run lint\nnpm run typecheck\nnpm run build    # emits app/dist with hashed assets\n```\n\n## CI / branch protection\n\n[.github/workflows/ci.yml](.github/workflows/ci.yml) runs on every push and pull request to `main`:\n\n1. `npm ci`\n2. `npm run lint`\n3. `npm run i18n:parity`\n4. `npm run typecheck`\n5. `npm test` (vitest)\n6. `npm run build`\n\n`main` is protected. Required status checks before merge:\n\n- `CI / lint / i18n:parity / typecheck / build / unit`\n- 1 reviewer approval\n\nCI runtime budget: under 4 minutes for a clean repo (typical: ~2 minutes).\n\n## Trust posture (NFR-SEC-01)\n\n- Strict CSP, HSTS preload, immutable hashed assets configured in [app/vercel.json](app/vercel.json).\n- Zero third-party runtime hosts; zero PII collection.\n- See `.cursor/rules/orc-mcp-agent-alignment.mdc` for ORC MCP delivery rules.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmdlrg%2Fworldgame","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmdlrg%2Fworldgame","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmdlrg%2Fworldgame/lists"}