-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"private": true,
"name": "my-app",
"version": "1.0.0",
"description": "npm init template for bootstrapping an empty Colyseus project",
"main": "lib/index.js",
"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"
},
"engines": {
"node": "^22.0.0"
},
"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/testing": "^0.16.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/mocha": "^8.2.3",
"copyfiles": "^2.4.1",
"mocha": "^9.0.2",
"rimraf": "^2.7.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@colyseus/monitor": "^0.16.0",
"@colyseus/playground": "^0.16.4",
"@colyseus/tools": "^0.16.0",
"colyseus": "^0.16.0",
"cors": "^2.8.5",
"express": "^4.16.4"
}
}