-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 786 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 786 Bytes
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
{
"name": "video-watching-en-learn",
"version": "0.1.0",
"description": "Electron GUI to segment video audio by speaker (Option A) and cut clips on Windows",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder -w",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"electron-is-dev": "^3.0.1"
},
"devDependencies": {
"electron": "^28.2.0",
"electron-builder": "^24.10.2"
},
"build": {
"appId": "com.vw.enlearn",
"productName": "Video Watching En Learn",
"asar": false,
"files": [
"app/**/*",
"scripts/**/*",
"ffmpeg/**/*",
"samples/**/*"
],
"win": {
"target": {
"target": "nsis",
"arch": ["x64"]
}
}
}
}