57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"private": true,
|
|
"name": "my-app",
|
|
"version": "1.0.0",
|
|
"description": "npm init template for bootstrapping an empty Colyseus project",
|
|
"main": "build/index.js",
|
|
"engines": {
|
|
"node": ">= 20.9.0"
|
|
},
|
|
"scripts": {
|
|
"start": "tsx watch src/index.ts",
|
|
"loadtest": "tsx loadtest/example.ts --room my_room --numClients 2",
|
|
"build": "npm run clean && tsc",
|
|
"clean": "rimraf build",
|
|
"test": "mocha -r tsx test/**_test.ts --exit --timeout 15000",
|
|
"nexe": "next --build"
|
|
},
|
|
"author": "",
|
|
"license": "UNLICENSED",
|
|
"bugs": {
|
|
"url": "https://github.com/colyseus/create-colyseus/issues"
|
|
},
|
|
"homepage": "https://github.com/colyseus/create-colyseus#readme",
|
|
"devDependencies": {
|
|
"@colyseus/loadtest": "^0.16.1",
|
|
"@colyseus/proxy": "^0.12.11",
|
|
"@colyseus/testing": "^0.16.3",
|
|
"@types/express": "^4.17.1",
|
|
"@types/mocha": "^10.0.1",
|
|
"mocha": "^10.2.0",
|
|
"rimraf": "^5.0.0",
|
|
"tsx": "^4.10.2",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@colyseus/h3-transport": "^0.16.3",
|
|
"@colyseus/mongoose-driver": "^0.16.1",
|
|
"@colyseus/monitor": "^0.16.7",
|
|
"@colyseus/playground": "^0.16.4",
|
|
"@colyseus/redis-driver": "^0.16.1",
|
|
"@colyseus/redis-presence": "^0.16.4",
|
|
"@colyseus/tools": "^0.16.14",
|
|
"@colyseus/uwebsockets-transport": "^0.16.10",
|
|
"@msgpack/msgpack": "^3.1.2",
|
|
"@types/node": "^22.15.3",
|
|
"babylonjs": "^8.34.0",
|
|
"colyseus": "^0.16.5",
|
|
"cors": "^2.8.5",
|
|
"express": "^5.1.0",
|
|
"express-basic-auth": "^1.2.1",
|
|
"minimist": "^1.2.8",
|
|
"mongoose": "^8.19.2",
|
|
"nanoid-cjs": "^0.0.7",
|
|
"recast-detour": "^1.6.4"
|
|
}
|
|
}
|