-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "obs-voicemeeter-integration",
"version": "1.2.0",
"description": "A server to integrate OBS and Voicemeeter using your voice, keyboard shortcuts and more!",
"main": "index.js",
"homepage": "https://github.com/ZoBro23/obs-voicemeeter-integration",
"scripts": {
"start": "electron .",
"test": "electron --trace-warnings .",
"build": "electron-builder",
"update-config": "node update-config.js",
"one-time-config": "node one-time-config.js"
},
"author": {
"name": "ZoBro23",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"auto-launch": "^5.0.5",
"axios": "^0.21.1",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"easy-voicemeeter-remote": "0.0.3",
"express": "^4.17.1",
"fs": "0.0.1-security",
"jsonschema": "^1.4.0",
"obs-websocket-js": "^4.0.2",
"path": "^0.12.7"
},
"build": {
"nsis": {
"uninstallDisplayName": "OBS Voicemeeter Integration Server"
},
"appId": "obs.voicemeeter.integration",
"productName": "OBS Voicemeeter Integration Server",
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "icon.ico"
},
"win": {
"publisherName": "ZoBro23",
"target": "NSIS"
}
},
"devDependencies": {
"electron": "^12.0.9",
"electron-builder": "^22.10.5"
},
"repository": {
"url": "https://github.com/ZoBro23/obs-voicemeeter-integration.git"
}
}