Files
Cue-View/package.json
T
dependabot[bot] a91c67a323 Bump minimatch and electron-builder
Bumps [minimatch](https://github.com/isaacs/minimatch) to 3.1.2 and updates ancestor dependency [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder). These dependencies need to be updated together.


Updates `minimatch` from 3.0.4 to 3.1.2
- [Release notes](https://github.com/isaacs/minimatch/releases)
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/minimatch/compare/v3.0.4...v3.1.2)

Updates `electron-builder` from 23.6.0 to 24.2.0
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/v24.2.0/packages/electron-builder)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-type: indirect
- dependency-name: electron-builder
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-10 16:10:51 +00:00

78 lines
2.0 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.2.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.7"
},
"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}",
"afterSign": "notarize.js",
"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"
]
}
}
}