-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (57 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·58 lines (57 loc) · 2.22 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
{
"name": "quege-card-room",
"version": "1.0.0",
"description": "Real-time multiplayer card room with Doudizhu, Guandan, Mahjong, AI seats, and leaderboards",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test:ai": "node test/ai.test.js",
"test:history": "node test/history.test.js",
"test:sso-auth": "node test/sso-auth.test.js",
"test:chat-regression": "node test/chat-regression.test.js",
"test:site-stats-live": "node test/site-stats-live.test.js",
"test:site-stats-game-breakdown": "node test/site-stats-game-breakdown.test.js",
"test:responsive-ui": "node test/responsive-ui.test.js",
"test:spectator-ui": "node test/spectator-ui.test.js",
"test:reconnect-ui": "node test/reconnect-ui.test.js",
"test:spectator-live": "node test/spectator-live.test.js",
"test:pause-takeover-live": "node test/pause-takeover-live.test.js",
"test:reconnect-live": "node test/reconnect-live.test.js",
"test:startup-failure": "node test/startup-failure.test.js",
"test:room-controls": "node test/room-controls.test.js",
"stats:backfill": "node scripts/backfill-site-stats.js",
"test": "npm run test:ai && npm run test:history && npm run test:sso-auth && npm run test:chat-regression && npm run test:site-stats-live && npm run test:site-stats-game-breakdown && npm run test:responsive-ui && npm run test:spectator-ui && npm run test:reconnect-ui && npm run test:spectator-live && npm run test:pause-takeover-live && npm run test:reconnect-live && npm run test:startup-failure && npm run test:room-controls"
},
"author": "TypeThe0ry",
"license": "MIT",
"homepage": "https://ddz.yutianfu.me/",
"repository": {
"type": "git",
"url": "https://github.com/TypeThe0ry/CardRoomPro.git"
},
"bugs": {
"url": "https://github.com/TypeThe0ry/CardRoomPro/issues"
},
"keywords": [
"card-game",
"online-card-room",
"multiplayer-game",
"doudizhu",
"guandan",
"mahjong",
"mahjong-ai",
"game-ai",
"nodejs",
"socket.io",
"vue2",
"mysql-leaderboard",
"discuz-sso"
],
"dependencies": {
"express": "^4.16.4",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.11.0"
}
}