forked from steveseguin/electroncapture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "VDON.Electron.Capture.App",
"version": "2.6.2",
"description": "A simple tool to aid with frameless window video capture and VDON publishing",
"author": "Steve Seguin <[email protected]>",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "run-os",
"build:win32": "electron-builder --win",
"build:darwin": "electron-builder --mac --universal",
"build:linux": "electron-builder --linux",
"build:rpi": "USE_SYSTEM_FPM=true electron-builder --armv7l --linux deb",
"clean": "rimraf ./dist",
"release": "electron-builder --publish always"
},
"build": {
"appId": "capture.electron",
"productName": "ElectronCapture",
"files": [
"**/*",
"build/Release/*",
"assets/icons/*.*",
"assets/icons/mac/*.*",
"assets/icons/png/*.*",
"assets/icons/win/*.*"
],
"mac": {
"category": "public.build.automation",
"icon": "assets/icons/mac/icon.ico",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"entitlements": "./build/entitlements.mac.inherit.plist",
"extendInfo": {
"NSCameraUsageDescription": "This app requires camera access to record video.",
"NSMicrophoneUsageDescription": "This app requires microphone access to record audio."
}
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 440,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"artifactName": "elecap-${version}.${ext}",
"writeUpdateInfo":false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"ia32",
"x64"
]
}
],
"icon": "assets/icons/win/icon.ico"
},
"linux": {
"category": "public.build.automation",
"icon": "assets/icons/png/256x256.png",
"target": "AppImage"
},
"nsis": {
"runAfterFinish": true,
"installerIcon": "assets/icons/win/icon.ico",
"artifactName": "elecap-${version}.${ext}",
"differentialPackage": false
},
"portable": {
"artifactName": "elecap.exe"
},
"appx": {
"applicationId": "elecap",
"backgroundColor": "#464646",
"identityName": "elecap",
"publisherDisplayName": "Steve Seguin",
"artifactName": "elecap-${version}.${ext}"
},
"publish": [
{
"provider": "github",
"releaseType": "release"
}
],
"afterSign": "./afterSign.js"
},
"devDependencies": {
"electron": "^16.0.2",
"electron-builder": "^22.11.7",
"electron-notarize": "^1.0.0",
"rimraf": "^2.6.3",
"run-script-os-fix": "^1.0.4"
},
"dependencies": {
"electron-context-menu": "^2.5.2",
"electron-is-dev": "^1.0.1",
"electron-prompt": "^1.6.2",
"yargs": "^15.4.1"
},
"engines": {
"node": "v14.17.1",
"npm": "8.3.0"
}
}