-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.66 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.66 KB
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
{
"name": "mediamonkeyserver",
"version": "0.4.3",
"description": "MediaMonkey Server",
"main": "api.js",
"license": "GPL-2.0+",
"bin": {
"mms": "claccess"
},
"dependencies": {
"async": "^3.2.0",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^7.4.4",
"body-parser": "^1.19.0",
"check-disk-space": "^3.1.0",
"commander": "^8.3.0",
"daemonize-process": "^3.0.0",
"debug": "^4.2.0",
"exif": "^0.6.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fast-xml-parser": "^3.17.4",
"follow-redirects": "^1.13.0",
"gm": "^1.21.1",
"ip": "^1.1.5",
"ipaddr.js": "^2.0.1",
"jstoxml": "^2.2.7",
"mime": "^3.0.0",
"mkdirp": "^1.0.4",
"music-metadata": "^7.11.7",
"needle": "^3.0.0",
"node-ssdp": "^4.0.0",
"opn": "^6.0.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"passport-unique-token": "^3.0.0",
"pubsub-js": "^1.9.0",
"pwd": "^1.1.0",
"range-parser": "^1.2.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sax": "^1.2.4",
"selfsigned": "^2.0.0",
"send": "^0.17.1",
"socket.io": "^2.3.0",
"sprintf-js": "^1.1.2",
"sqlstring": "^2.3.2",
"table-parser": "^1.0.0",
"uuid": "^8.3.2",
"windows-trayicon": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"mocha": "^9.1.4",
"node-abi-version": "^1.2.9",
"node-fetch": "^2.6.5",
"pkg": "^5.4.0",
"shelljs": "^0.8.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mediamonkeyserver/mms.git"
},
"keywords": [
"Node.js",
"upnp",
"mediamonkey",
"server"
],
"pkg": {
"scripts": [
"node_modules/node-ssdp/lib/*.js",
"lib/**/*.js",
"server.js"
],
"assets": [
"default-config.json",
"icon",
"build-webui"
]
},
"scripts": {
"start": "node server.js",
"startapp": "electron server.js",
"xx_postinstall": "electron-builder install-app-deps",
"postinstall": "npm run buildUI",
"test": "./node_modules/.bin/eslint lib/",
"webpack": "webpack --config webpack.config.js",
"packWin": "node scripts/packWin.js",
"buildUI": "node scripts/buildUI.js",
"build-arm": "npm run buildUI && node scripts/build-arm.js",
"build-arm64": "npm run buildUI && node scripts/build-arm64.js",
"build-all": "npm run buildUI && node scripts/build-all.js",
"build-armv7-synology": "node scripts/build-armv7-synology",
"build-armv8-synology": "node scripts/build-rtd1296-synology",
"build-nodepkg-rtd1296": "node scripts/build-nodepkg-rtd1296.js"
}
}