├── .gitignore ├── .serena ├── memories │ ├── architecture_details.md │ ├── code_style_conventions.md │ ├── project_overview.md │ ├── suggested_commands.md │ ├── task_completion_workflow.md │ └── tech_stack.md └── project.yml ├── CLAUDE.md ├── LICENSE.md ├── Makefile ├── README.md ├── package.json ├── pnpm-lock.yaml ├── public ├── home.css ├── home.js └── room.css ├── src ├── gpsync-durable-object.ts ├── templates.ts ├── validators.ts └── worker.ts ├── tsconfig.client.json ├── tsconfig.json ├── tsconfig.worker.json ├── web └── room.ts ├── webpack.config.js └── wrangler.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.serena/memories/architecture_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/architecture_details.md -------------------------------------------------------------------------------- /.serena/memories/code_style_conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/code_style_conventions.md -------------------------------------------------------------------------------- /.serena/memories/project_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/project_overview.md -------------------------------------------------------------------------------- /.serena/memories/suggested_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/suggested_commands.md -------------------------------------------------------------------------------- /.serena/memories/task_completion_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/task_completion_workflow.md -------------------------------------------------------------------------------- /.serena/memories/tech_stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/memories/tech_stack.md -------------------------------------------------------------------------------- /.serena/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/.serena/project.yml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/public/home.css -------------------------------------------------------------------------------- /public/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/public/home.js -------------------------------------------------------------------------------- /public/room.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/public/room.css -------------------------------------------------------------------------------- /src/gpsync-durable-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/src/gpsync-durable-object.ts -------------------------------------------------------------------------------- /src/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/src/templates.ts -------------------------------------------------------------------------------- /src/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/src/validators.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/tsconfig.client.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/tsconfig.worker.json -------------------------------------------------------------------------------- /web/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/web/room.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syumai/gpsync/HEAD/wrangler.toml --------------------------------------------------------------------------------