mirror of
https://github.com/IrosTheBeggar/mStream.git
synced 2025-10-27 07:31:02 +00:00
107 lines
2.3 KiB
JSON
107 lines
2.3 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",
|
|
"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": "12.0.0",
|
|
"asar": false,
|
|
"files": [
|
|
"**/*",
|
|
"!docs/*",
|
|
"!dist/*",
|
|
"!image-cache/*",
|
|
"!save/*",
|
|
"!frp/*",
|
|
"!sync/*",
|
|
"!.git/*",
|
|
"!.vscode/*",
|
|
"frp/readme.md",
|
|
"!package-lock.json"
|
|
],
|
|
"mac": {
|
|
"files": [
|
|
"frp/mstream-ddns-osx",
|
|
"sync/syncthing-osx"
|
|
],
|
|
"category": "public.app-category.music",
|
|
"binaries": [
|
|
"frp/mstream-ddns-osx",
|
|
"sync/syncthing-osx"
|
|
]
|
|
},
|
|
"win": {
|
|
"files": [
|
|
"bin/rpn/rpn-win.exe",
|
|
"bin/syncthing/syncthing.exe"
|
|
],
|
|
"certificateSubjectName": "Iros Software LLC",
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64",
|
|
"ia32"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"files": [
|
|
"frp/mstream-ddns-linux",
|
|
"sync/syncthing-linux"
|
|
]
|
|
},
|
|
"publish": {
|
|
"provider": "github",
|
|
"repo": "mStream",
|
|
"owner": "IrosTheBeggar"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"archiver": "^5.2.0",
|
|
"axios": "^0.21.1",
|
|
"body-parser": "^1.19.0",
|
|
"busboy": "^0.3.1",
|
|
"commander": "^6.2.1",
|
|
"express": "^4.17.1",
|
|
"fast-xml-parser": "^3.17.6",
|
|
"ffbinaries": "^1.1.4",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"joi": "^17.3.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lokijs": "^1.5.11",
|
|
"m3u8-parser": "^4.5.2",
|
|
"make-dir": "^3.1.0",
|
|
"mime-types": "^2.1.28",
|
|
"music-metadata": "^7.6.4",
|
|
"nanoid": "^3.1.20",
|
|
"winston": "^3.3.3",
|
|
"winston-daily-rotate-file": "^4.5.0",
|
|
"ws": "^7.4.2"
|
|
}
|
|
}
|