-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 3.19 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
{
"name": "surround-streamer",
"version": "0.1.2",
"description": "macOS Ogg Opus surround audio streamer for Icecast",
"main": "./out/main/index.js",
"author": {
"name": "Non-REM Studio (t-noami)",
"email": "info@non-rem.com",
"url": "https://github.com/t-noami"
},
"homepage": "https://github.com/t-noami/SurroundStreamer",
"license": "MIT",
"engines": {
"node": ">=20.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/t-noami/SurroundStreamer.git"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"start": "npm run build:worklet && electron-vite preview",
"dev": "npm run build:worklet && electron-vite dev",
"build": "npm run build:worklet && npm run build:hrir && electron-vite build",
"build:worklet": "node scripts/sync-monitor-worklet.mjs",
"build:hrir": "node scripts/generate-ku100-hrir-assets.mjs",
"check:ffmpeg-license": "node scripts/check-ffmpeg-license.mjs",
"check:ffmpeg-license:mac": "node scripts/check-ffmpeg-license.mjs resources/ffmpeg/darwin-arm64/ffmpeg",
"check:ffmpeg-license:win": "node scripts/check-ffmpeg-license.mjs resources/ffmpeg/win32-x64/ffmpeg.exe",
"check:ffmpeg-license:linux": "node scripts/check-ffmpeg-license.mjs resources/ffmpeg/linux-x64/ffmpeg",
"check:package-licenses": "node scripts/check-package-licenses.mjs",
"build:ffmpeg:linux": "bash scripts/build-linux-ffmpeg.sh",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build:audio-helper && npm run check:ffmpeg-license && npm run build && electron-builder --dir",
"build:win": "npm run build:audio-helper:win && npm run check:ffmpeg-license:win && npm run build && electron-builder --win",
"build:mac": "npm run build:audio-helper && npm run check:ffmpeg-license:mac && npm run build && electron-builder --mac",
"build:mac:dir": "npm run build:audio-helper && npm run check:ffmpeg-license:mac && npm run build && electron-builder --dir --config electron-builder.yml",
"build:beta:mac": "npm run build:audio-helper && npm run check:ffmpeg-license:mac && npm run build && electron-builder --dir --config electron-builder.beta.yml",
"build:beta:win": "npm run build:audio-helper:win && npm run check:ffmpeg-license:win && npm run build && electron-builder --win --config electron-builder.beta.yml",
"build:beta:linux": "npm run check:ffmpeg-license:linux && npm run build && electron-builder --linux --config electron-builder.beta.yml",
"build:linux": "npm run check:ffmpeg-license:linux && npm run build && electron-builder --linux",
"build:audio-helper": "bash scripts/build-audio-tap-helper.sh",
"build:audio-helper:win": "powershell -ExecutionPolicy Bypass -File scripts/build-windows-audio-helper.ps1"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"fluent-ffmpeg": "^2.1.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^2.1.0",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"vite": "^7.2.6"
}
}