-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"main": "src/main/main.js",
"name": "hyperdeckctl",
"version": "0.3.0",
"description": "Blackmagic hyperdeck UI",
"homepage": "https://github.com/jcalado/hyperdeckctl",
"author": {
"name": "Joel Calado",
"email": "[email protected]"
},
"license": "GPL-3.0-only",
"repository": {
"type" : "git",
"url" : "https://github.com/jcalado/hyperdeckctl.git"
},
"keywords": ["Blackmagic", "Hyperdeck"],
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"build": {
"appId": "com.joelcalado.hyperdeckctl",
"productName": "hyperdeckctl",
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage",
"category": "Utility"
},
"mac": {
"target": "dmg",
"category": "public.app-category.utilities"
}
},
"dependencies": {
"electron-context-menu": "^2.3.0",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"hyperdeck-js-lib": "^1.6.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "10.1.1",
"electron-builder": "^22.8.1",
"electron-webpack": "^2.8.2",
"webpack": "~4.42.1",
"yarn": "^1.22.5"
}
}