{ "name": "steam-chat", "version": "1.0.0", "description": "Steam account based realtime chat service with a built-in Web UI.", "type": "commonjs", "main": "dist/src/index.js", "scripts": { "build": "tsc -p tsconfig.json && tsc -p tsconfig.web.json && mkdir -p dist/web && cp web/index.html web/style.css dist/web/", "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.web.json --noEmit", "start": "npm run build && node dist/src/index.js", "test": "npm run build && STEAM_CHAT_DISABLE_AUTOSTART=1 node --test dist/test/*.test.js" }, "keywords": [ "steam", "chat", "websocket" ], "author": "", "license": "GPL-3.0", "dependencies": { "steam-user": "^5.0.8", "steamcommunity": "^3.48.2", "winston": "^3.12.0", "ws": "^8.18.1" }, "devDependencies": { "@types/node": "^26.0.0", "@types/ws": "^8.18.1", "typescript": "^6.0.3" } }