Files
Cue-View/package.json
T
2022-02-14 03:28:12 -05:00

53 lines
1.3 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 .",
"build": "electron-builder -m -w -l",
"buildARM": "electron-builder -l --arm64"
},
"author": "alec@stagehacks.com",
"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.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1"
},
"dependencies": {
"bonjour": "^3.5.0",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"netmask": "^2.0.2",
"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": "Utilities",
"icon": "./src/img/icon.icns"
},
"win": {
"target": "portable",
"icon": "./src/img/icon.ico"
},
"linux": {
"target": "deb",
"maintainer": "alec@stagehacks.com",
"category": "Utility"
}
}
}