This repository was archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "mcxosc",
"version": "0.1.0-beta",
"description": "An Electron App as Bridge between Ember+ and OSC dedicated to MCx Lawo consoles/ based on https://github.com/nrkno/tv-automation-emberplus-connection",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder -wl --x64"
},
"author": "dewiweb",
"license": "MIT",
"devDependencies": {
"electron": "15.5.5",
"electron-builder": "^22.7.0"
},
"dependencies": {
"asn1": "evs-broadcast/node-asn1",
"enum": "^2.4.0",
"long": "^3.2.0",
"osc": "^2.4.1",
"smart-buffer": "^3.0.3",
"winston": "^2.1.1",
"winston-color": "^1.0.0"
},
"build": {
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
"buildDependenciesFromSource": true,
"appId": "MCxOSC",
"linux": {
"category": "AudioVideo",
"icon": "./assets/icons",
"target": {
"target": "appimage",
"arch": "x64"
}
},
"win": {
"artifactName": "${productName}-${version}-${os}_x64.${ext}",
"icon": "./assets/icons",
"target": {
"target": "portable",
"arch": "x64"
}
}
}
}