Files
whale-town/server/package.json
2025-12-05 19:00:14 +08:00

29 lines
708 B
JSON

{
"name": "ai-town-server",
"version": "1.0.0",
"description": "WebSocket server for AI Town multiplayer game",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:monitor": "node start_with_monitoring.js",
"dev": "ts-node src/server.ts",
"watch": "tsc --watch",
"test:api": "node test_admin_api.js"
},
"keywords": ["websocket", "game", "multiplayer"],
"author": "",
"license": "MIT",
"dependencies": {
"ws": "^8.18.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.2",
"ts-node": "^10.9.2"
}
}