34 lines
791 B
JSON
34 lines
791 B
JSON
{
|
|
"name": "snatchgame-server",
|
|
"version": "0.0.5-alpha",
|
|
"description": "SnatchGame multiplayer server using Colyseus",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"start": "node lib/index.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"colyseus",
|
|
"multiplayer",
|
|
"game",
|
|
"typescript"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@colyseus/schema": "^3.0.42",
|
|
"@colyseus/tools": "^0.16.0",
|
|
"colyseus": "^0.16.0",
|
|
"express": "^4.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.0",
|
|
"@types/node": "^20.0.0",
|
|
"nodemon": "^3.1.10",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|