satyr/package.json
knotteye 1f3504f698 Fix a bug where streams would crash upon FFMPEG exceeding maximum child_process buffer
Change scripts to automatically build before serving
Move typescript to dependencies
Check if the stream is ready to transcode to MPEG-DASH programmatically instead of waiting for 5 seconds
Use session.isLocal instead of matching session.ip against some strings
(session.isLocal does that internally but at least this way looks prettier)
2019-11-24 20:25:19 -06:00

36 lines
776 B
JSON

{
"name": "satyr",
"version": "0.4.2",
"description": "A livestreaming server.",
"license": "AGPL-3.0",
"author": "knotteye",
"scripts": {
"start": "tsc && node build/controller.js",
"user": "node build/cli.js",
"setup": "sh install/setup.sh"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/knotteye/satyr.git"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"config": "^3.2.2",
"dirty": "^1.1.0",
"express": "^4.17.1",
"flags": "^0.1.3",
"mysql": "^2.17.1",
"node-media-server": ">=2.1.3 <3.0.0",
"nunjucks": "^3.2.0",
"recursive-readdir": "^2.2.2",
"socket.io": "^2.3.0",
"strftime": "^0.10.0",
"toml": "^3.0.0",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/node": "^12.7.5"
}
}