Files
UnrealEngineUWP/Samples/PixelStreaming/WebServers/SignallingWebServer/package.json
Luke Bermingham a7599949b7 Update Samples/PixelStreaming with early work from 5.1. (Multiple authors)
*************
Features
*************
- Added stat in stats panel to show currently used audio/video codec.
- Added audio bitrate in the stats panel.
- Added toggle in the settings panel to force mono audio.
- Added new info in stats panel to indicate input controlling mode.
- Added Linux platform scripts for the Matchmaker/SFU.
- Added npm commands for signalling server. `npm run $config -- $args` which will work across platforms (`$config` might be `start-signalling-server` and args might be `--debug`)

*************
Bugfixes
*************
- Fix matchmaker taking up to 45 seconds to display a valid server for use.
- Fix regression where all browser audio was mono (default now stereo).
- Fix Linux SFU and Signalling Server scripts not grabbing the public IP correctly.
- Fix linux setup scripts not working when being run from a location that has a space in the path.
- Fix SFU run_cloud.bat tries to call non-existent run.bat.
- Fix being unable to type in console of a streamed application.
- Fix docker scripts running only TURN when we needed both TURN and cirrus.
- Fix docker scripts not starting correctly.

*************
Refactors
*************
- Bash scripts have been refactored for readability.

#rb self
#fyi Mattias.Jansson, Aidan.Possemiers
#preflight https://horde.devtools.epicgames.com/job/628c894f5665463c21effaa9

[CL 20345056 by Luke Bermingham in ue5-main branch]
2022-05-24 03:43:51 -04:00

35 lines
1.8 KiB
JSON

{
"name": "cirrus-webserver",
"version": "0.0.1",
"description": "cirrus web server",
"scripts": {
"store_password": "run-script-os",
"store_password:default": "./platform_scripts/bash/node/bin/node ./modules/authentication/db/store_password.js --usersFile=./modules/authentication/db/users.json",
"store_password:windows": "platform_scripts\\cmd\\node\\node.exe ./modules/authentication/db/store_password.js --usersFile=./modules/authentication/db/users.json",
"start-local": "run-script-os --",
"start-local:default": "./platform_scripts/bash/Start_Local.sh",
"start-local:windows": ".\\platform_scripts\\cmd\\Start_Local.bat",
"start-signalling-server": "run-script-os --",
"start-signalling-server:default": "./platform_scripts/bash/Start_SignallingServer.sh",
"start-signalling-server:windows": ".\\platform_scripts\\cmd\\Start_SignallingServer.bat",
"start-with-turn-signalling-server": "run-script-os --",
"start-with-turn-signalling-server:default": "./platform_scripts/bash/Start_WithTurn_SignallingServer.sh",
"start-wiht-turn-signalling-server:windows": ".\\platform_scripts\\cmd\\Start_WithTurn_SignallingServer.bat",
"start": "run-script-os",
"start:default": "if [ `id -u` -eq 0 ] || [ ! -z $NO_SUDO ]\nthen\n export process=\"./platform_scripts/bash/node/bin/node cirrus.js\"\nelse\n export process=\"sudo ./platform_scripts/bash/node/bin/node cirrus.js\"\nfi\n$process ",
"start:windows": "platform_scripts\\cmd\\node\\node.exe cirrus.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"helmet": "^3.21.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"run-script-os": "^1.1.6",
"ws": "^7.1.2",
"y18n": "^5.0.5",
"yargs": "^15.3.0"
}
}