-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (78 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (78 loc) · 1.8 KB
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
{
"name": "VidWerk",
"version": "2.1.5",
"description": "Local Video Downloader (yt-dlp + ffmpeg) for MP4/MP3 with live progress.",
"author": "sishanhewa",
"main": "main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sishanhewa/VidWerk-Local-Video-Downloader.git"
},
"scripts": {
"dev": "electron .",
"dist": "electron-builder",
"dist:mac:arm": "electron-builder --mac dmg --arm64",
"dist:mac:intel": "electron-builder --mac dmg --x64",
"dist:win": "electron-builder --win nsis"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"express": "^4.19.2"
},
"build": {
"appId": "com.sonny.localvideodownloader",
"productName": "VidWerk",
"asar": true,
"asarUnpack": [
"bin/**"
],
"files": [
"main.js",
"server/**",
"public/**",
"assets/**",
"package.json"
],
"extraResources": [
{
"from": "bin/",
"to": "bin/"
}
],
"mac": {
"target": ["dmg"],
"artifactName": "VidWerk-${version}-${arch}.dmg",
"icon": "assets/icon.icns",
"extendInfo": {
"CFBundleDisplayName": "VidWerk",
"CFBundleName": "VidWerk"
}
},
"dmg": {
"writeUpdateInfo": false
},
"win": {
"target": ["nsis"],
"artifactName": "VidWerk-Setup-${version}.exe",
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"differentialPackage": false
},
"publish": [
{
"provider": "github",
"owner": "sishanhewa",
"repo": "VidWerk-Local-Video-Downloader",
"publishAutoUpdate": false
}
]
}
}