-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 831 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 831 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
36
37
38
{
"name": "video-squash-pro",
"version": "1.1.9",
"description": "Professional bulk video compressor – desktop edition. Handles files up to 30GB+ with native FFmpeg.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win"
},
"build": {
"appId": "com.videosquash.pro",
"productName": "VideoSquash Pro",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"extraResources": [
{
"from": "assets/ffmpeg.exe",
"to": "ffmpeg.exe"
},
{
"from": "assets/ffprobe.exe",
"to": "ffprobe.exe"
}
]
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.0.0"
},
"dependencies": {
"jszip": "^3.10.1"
}
}