forked from IrosTheBeggar/mStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.33 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
{
"name": "mstream",
"version": "6.22.0",
"description": "music streaming server",
"type": "module",
"main": "cli-boot-wrapper.js",
"bin": {
"mstream": "cli-boot-wrapper.js"
},
"engines": {
"node": ">=22.5.0"
},
"scripts": {
"start": "node cli-boot-wrapper.js",
"wizard": "npm install --only=prod && node cli-boot-wrapper.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build-rust": "cd rust-parser && cargo build --release",
"build:bun": "bun scripts/build-bun.mjs",
"build:bun:win": "bun scripts/build-bun.mjs --target=win-x64",
"build:bun:linux": "bun scripts/build-bun.mjs --target=linux-x64",
"build:bun:linux-arm64": "bun scripts/build-bun.mjs --target=linux-arm64",
"build:bun:mac": "bun scripts/build-bun.mjs --target=darwin-x64",
"build:bun:mac-arm64": "bun scripts/build-bun.mjs --target=darwin-arm64",
"bundle:bun": "bun scripts/build-bun.mjs --bundle",
"docs:api": "redocly build-docs docs/openapi.yaml -o docs/api.html",
"docs:api:validate": "redocly lint docs/openapi.yaml",
"test:discovery": "node --test --test-reporter=spec test/mdns.test.mjs",
"pretest": "node test/helpers/ensure-prereqs.mjs",
"test": "node --test --test-reporter=spec \"test/**/*.test.mjs\"",
"test:unit": "node --test --test-reporter=spec \"test/unit/**/*.test.mjs\"",
"test:db": "node --test --test-reporter=spec \"test/db/**/*.test.mjs\"",
"test:scanner": "node --test --test-reporter=spec \"test/scanner/**/*.test.mjs\"",
"test:torrent": "node --test --test-reporter=spec \"test/torrent/**/*.test.mjs\"",
"test:subsonic": "node --test --test-reporter=spec \"test/subsonic/**/*.test.mjs\"",
"test:integration": "node --test --test-reporter=spec \"test/integration/**/*.test.mjs\"",
"test:dlna": "node --test --test-reporter=spec \"test/**/dlna.test.mjs\"",
"test:cli-audio": "docker build -f test/cli-audio/Dockerfile -t mstream-cli-audio-smoke . && docker run --rm mstream-cli-audio-smoke",
"test:smoke:docker": "node test/smoke/docker/run-docker-stack-smoke.mjs",
"test:smoke:windows": "node test/smoke/windows-native-daemons.mjs",
"fetch-p2p-sidecar": "node scripts/fetch-p2p-sidecar.mjs",
"fetch-mstream-player": "node scripts/fetch-mstream-player.mjs",
"test:smoke:sidecar-volume": "bash test/smoke/docker/p2p-sidecar-volume-smoke.sh"
},
"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",
"dependencies": {
"archiver": "^8.0.0",
"busboy": "^1.6.0",
"chokidar": "^5.0.0",
"command-exists": "^1.2.9",
"cookie-parser": "^1.4.7",
"essentia.js": "^0.1.3",
"express": "^5.0.1",
"jimp": "^1.6.0",
"joi": "^18.2.5",
"jsonwebtoken": "^9.0.3",
"m3u8-parser": "^7.2.0",
"mime-types": "^3.0.2",
"music-metadata": "^11.15.0",
"nanoid": "^6.0.1",
"tree-kill": "^1.2.2",
"winston": "^3.19.0",
"ws": "^8.21.3"
},
"optionalDependencies": {
"@number0/iroh": "^1.1.0",
"onnxruntime-node": "^1.24.3"
},
"overrides": {
"adm-zip": "^0.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@redocly/cli": "^2.47.0",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"resedit": "3.0.2"
}
}