-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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.18.0"
},
"scripts": {
"start": "NODE_ENV=development tsx watch src/index.ts",
"start-ssl": "SSL=true tsx watch src/index.ts",
"loadtest": "tsx loadtest/example.ts --room my_room --numClients 2",
"build": "npm run clean && tsc",
"run-prod": "node build/index.js",
"clean": "rimraf build",
"test": "mocha -r tsx test/**_test.ts --exit --timeout 15000"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/colyseus/create-colyseus/issues"
},
"homepage": "https://github.com/colyseus/create-colyseus#readme",
"devDependencies": {
"@colyseus/cloud": "^1.0.12",
"@colyseus/loadtest": "^0.15.7",
"@colyseus/testing": "^0.15.4",
"@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": {
"@ai-sdk/anthropic": "^1.0.2",
"@ai-sdk/google": "^1.0.4",
"@ai-sdk/groq": "^1.0.5",
"@ai-sdk/openai": "^1.0.5",
"@colyseus/monitor": "^0.15.8",
"@colyseus/playground": "^0.15.15",
"@colyseus/tools": "^0.15.49",
"@coral-xyz/anchor": "^0.30.1",
"@happy-dom/global-registrator": "^15.7.4",
"@metaplex-foundation/js": "^0.20.1",
"@oogg/server-engine": "^1.0.0-alpha-30",
"@privy-io/server-auth": "^1.16.5",
"@solana/spl-token": "^0.4.9",
"ai": "^4.0.9",
"async-mutex": "^0.5.0",
"colyseus": "^0.15.57",
"cors": "^2.8.5",
"ethers": "6.13.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"happy-dom": "^15.7.4",
"openai": "^4.73.1",
"pumpdotfun-sdk": "^1.3.2",
"viem": "^2.23.10",
"zod": "^3.23.8"
}
}