Initial commit: GunCircle.io multiplayer arena shooter

This commit is contained in:
emil
2026-05-11 15:39:56 +03:00
commit 836441fc2c
45 changed files with 9391 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@guncircle/shared",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@colyseus/schema": "^3.0.0"
},
"devDependencies": {
"typescript": "^5.6.0",
"vitest": "^2.0.0"
}
}