mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-07-26 09:18:39 +00:00
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "cue-view",
|
|
"productName": "Cue View",
|
|
"version": "0.9.8-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",
|
|
"build:mac": "electron-builder -m",
|
|
"build:windows": "electron-builder -w",
|
|
"build:linux": "electron-builder -l",
|
|
"build:arm": "electron-builder -l --arm64",
|
|
"release": "electron-builder"
|
|
},
|
|
"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/notarize": "^1.2.3",
|
|
"electron": "^21.3.0",
|
|
"electron-builder": "^23.6.0",
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"prettier": "^2.7.1"
|
|
},
|
|
"dependencies": {
|
|
"bonjour": "^3.5.0",
|
|
"electron-updater": "^5.3.0",
|
|
"lodash": "^4.17.20",
|
|
"md5": "^2.3.0",
|
|
"netmask": "^2.0.2",
|
|
"osc": "^2.4.3",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.stagehacks.cueview",
|
|
"icon": "./src/img/",
|
|
"artifactName": "${name}.${os}.v${version}.${ext}",
|
|
"afterSign": "notarize.js",
|
|
"mac": {
|
|
"category": "Utilities",
|
|
"icon": "./src/img/icon.icns",
|
|
"hardenedRuntime": true,
|
|
"electronLanguages": [
|
|
"en"
|
|
],
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": "NSIS",
|
|
"icon": "./src/img/icon.ico",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"maintainer": "alec@stagehacks.com",
|
|
"category": "Utility",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
}
|
|
}
|
|
}
|