mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-07-26 09:18:39 +00:00
5503ac9888
Bumps [eslint](https://github.com/eslint/eslint) from 8.40.0 to 8.41.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.40.0...v8.41.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "cue-view",
|
|
"productName": "Cue View",
|
|
"version": "0.9.9-pre",
|
|
"description": "A dashboard for everything in your show",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"pretty": "prettier --write **/*",
|
|
"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": "^22.2.0",
|
|
"electron-builder": "^24.4.0",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"prettier": "^2.8.8"
|
|
},
|
|
"dependencies": {
|
|
"atem-connection": "^3.1.3",
|
|
"bonjour": "^3.5.0",
|
|
"electron-updater": "^5.3.0",
|
|
"lodash": "^4.17.21",
|
|
"md5": "^2.3.0",
|
|
"netmask": "^2.0.2",
|
|
"osc": "^2.4.4",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.stagehacks.cueview",
|
|
"icon": "src/assets/img/",
|
|
"artifactName": "${name}.${os}.v${version}.${ext}",
|
|
"mac": {
|
|
"category": "Utilities",
|
|
"icon": "src/assets/img/icon.icns",
|
|
"hardenedRuntime": true,
|
|
"electronLanguages": [
|
|
"en"
|
|
],
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": "NSIS",
|
|
"icon": "src/assets/img/icon.ico",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"maintainer": "alec@stagehacks.com",
|
|
"category": "Utility",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
}
|
|
}
|
|
}
|