Files
Cue-View/package.json
T
sparks-alec b31e0af2b7 switch to electron-builder
removing electron-forge
2022-01-15 16:09:34 -05:00

49 lines
1.2 KiB
JSON

{
"name": "Cue-View",
"productName": "Cue View",
"version": "0.9.4-pre",
"description": "A dashboard for everything in your show",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"buildAll": "electron-builder -m -w -l"
},
"author": "Cue View",
"license": "CC BY-SA 4.0",
"homepage": "https://github.com/stagehacks/Cue-View",
"repository": "https://github.com/stagehacks/Cue-View",
"devDependencies": {
"electron": "^15.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1"
},
"dependencies": {
"bonjour": "^3.5.0",
"ejs": "^3.1.5",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"netmask": "^1.0.6",
"osc": "^2.4.1",
"uuid": "^8.3.2"
},
"build": {
"appId": "com.electron.cueview",
"icon": "./src/img/",
"artifactName": "${productName} ${os} v${version}.${ext}",
"mac": {
"target": "zip",
"category": "utility",
"icon": "./src/img/icon.icns"
},
"win": {
"target": "zip",
"icon": "./src/img/icon.ico"
},
"linux": {
"target": "zip"
}
}
}