-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
122 lines (122 loc) · 2.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mstream",
"version": "5.12.2",
"description": "music streaming server",
"main": "cli-boot-wrapper.js",
"bin": {
"mstream": "cli-boot-wrapper.js"
},
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"start": "node cli-boot-wrapper.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"wizard": "npm install --only=prod && node cli-boot-wrapper.js"
},
"repository": {
"type": "git",
"url": "https://github.com/IrosTheBeggar/mStream"
},
"author": {
"name": "Paul Sori",
"email": "[email protected]"
},
"homepage": "https://mstream.io/",
"license": "GPL-3.0",
"build": {
"appId": "io.mstream.server",
"productName": "mStream Server",
"electronVersion": "29.1.4",
"asar": false,
"files": [
"**/*",
"!docs/*",
"!dist/*",
"!image-cache/*",
"!save/*",
"!bin/*",
"!.git/*",
"!.vscode/*",
"!package-lock.json"
],
"mac": {
"files": [
"bin/rpn/rpn-osx",
"bin/syncthing/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"
],
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"files": [
"bin/rpn/rpn-linux",
"bin/syncthng/syncthing-linux"
],
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64",
"armv7l"
]
}
]
},
"publish": {
"provider": "github",
"repo": "mStream",
"owner": "IrosTheBeggar"
}
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.6.8",
"busboy": "^1.6.0",
"commander": "^9.5.0",
"cookie-parser": "^1.4.6",
"electron-updater": "^6.1.4",
"escape-string-regexp": "^4.0.0",
"express": "^4.19.2",
"fast-xml-parser": "^4.3.6",
"ffbinaries": "^1.1.6",
"fluent-ffmpeg": "^2.1.2",
"http-proxy": "^1.18.1",
"jimp": "^0.22.12",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"lokijs": "^1.5.12",
"m3u8-parser": "^7.1.0",
"make-dir": "^3.1.0",
"mime-types": "^2.1.35",
"music-metadata": "^7.14.0",
"nanoid": "^3.3.6",
"tree-kill": "^1.2.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.17.0"
},
"devDependencies": {
"electron-builder": "24.13.3"
}
}