mStream/package.json
2019-10-20 01:36:02 -07:00

99 lines
2.1 KiB
JSON

{
"name": "mstream",
"version": "5.0.0",
"description": "music streaming server",
"main": "cli-boot-wrapper.js",
"bin": {
"mstream": "cli-boot-wrapper.js"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node cli-boot-wrapper.js",
"wizard": "node cli-boot-wrapper.js --wizard",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "https://github.com/IrosTheBeggar/mStream"
},
"author": {
"name": "Paul Sori",
"email": "paul@mstream.io"
},
"homepage": "https://mstream.io/",
"license": "GPL-3.0",
"build": {
"appId": "io.mstream.server",
"productName": "mStream Server",
"electronVersion": "6.0.12",
"asar": false,
"files": [
"**/*",
"!docs/*",
"!dist/*",
"!image-cache/*",
"!save/*",
"!frp/*",
"!sync/*",
"!.git/*",
"!.vscode/*",
"frp/readme.md"
],
"publish": [
{
"provider": "github"
}
],
"mac": {
"target":"dmg",
"files": [
"frp/mstream-ddns-osx",
"sync/syncthing-osx"
],
"category": "public.app-category.music",
"binaries": [
"frp/mstream-ddns-osx",
"sync/syncthing-osx"
]
},
"win": {
"files": [
"frp/mstream-ddns-win.exe",
"sync/syncthing.exe"
]
},
"linux": {
"files": [
"frp/mstream-ddns-linux",
"sync/syncthing-linux"
]
}
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"archiver": "^3.1.1",
"auto-launch": "^5.0.5",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"colors": "^1.3.3",
"commander": "^3.0.1",
"electron-updater": "^4.0.14",
"express": "^4.17.1",
"fast-xml-parser": "^3.13.0",
"inquirer": "^7.0.0",
"inquirer-select-directory": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"lokijs": "^1.5.7",
"make-dir": "^3.0.0",
"mime-types": "^2.1.24",
"music-metadata": "^3.8.0",
"nanoid": "^2.1.1",
"winston": "^3.2.1",
"ws": "^7.1.2"
}
}