@natewilcox/tic-tac-toe-shared
Version:
A shared library for a multiplayer Tic Tac Toe game, providing common components and utilities used by both the client-side and server-side applications.
34 lines (33 loc) • 864 B
JSON
{
"name": "@natewilcox/tic-tac-toe-shared",
"version": "0.0.58",
"description": "A shared library for a multiplayer Tic Tac Toe game, providing common components and utilities used by both the client-side and server-side applications.",
"author": "Nathan Wilcox",
"repository": {
"type": "git",
"url": "https://github.com/natewilcox/tic-tac-toe.git"
},
"license": "GPL-3.0",
"keywords": [
"phaser",
"game",
"multiplayer",
"tic-tac-toe",
"shared-library"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "npx rimraf dist && npx rimraf tsconfig.tsbuildinfo",
"build": "tsc",
"build:watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"colyseus": "^0.15.13",
"phaser": "^3.55.2"
}
}