mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-03 12:57:46 +00:00
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "cue-view",
|
|
"productName": "Cue View",
|
|
"version": "0.9.6-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",
|
|
"electronLanguages": ["en"]
|
|
},
|
|
"win": {
|
|
"target": "portable",
|
|
"icon": "./src/img/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": "deb",
|
|
"maintainer": "alec@stagehacks.com",
|
|
"category": "Utility"
|
|
}
|
|
}
|
|
}
|