-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 889 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 889 Bytes
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
{
"name": "colyseus-examples",
"version": "0.17.0",
"type": "module",
"description": "Basic examples demonstrating Colyseus features",
"main": "lib/index.js",
"scripts": {
"start": "tsx watch src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.x"
},
"author": "Endel Dreyer",
"license": "MIT",
"devDependencies": {
"@colyseus/uwebsockets-transport": "^0.17.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.14",
"tsx": "^3.14.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@colyseus/auth": "^0.17.0",
"@colyseus/core": "^0.17.0",
"@colyseus/monitor": "^0.17.0",
"@colyseus/playground": "^0.17.0",
"@colyseus/tools": "^0.17.0",
"colyseus": "^0.17.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"serve-index": "^1.8.0"
}
}