basic network established

This commit is contained in:
geoffsee
2025-06-14 11:21:01 -04:00
commit 9747912595
33 changed files with 8377 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "realscheme",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "wrangler dev",
"ws:client": "bun ./ws_client.ts",
"wscat": "wscat -c ws:///localhost:3004/ws",
"wscat:ping": "echo 'ping' | wscat -c ws:///localhost:3004/ws"
},
"devDependencies": {
"@types/bun": "latest",
"wrangler": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}