-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.66 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
{
"productName": "YT Downloader",
"homepage": "https://software-city.org/",
"bugs": {
"url": "https://github.com/Davis-Software/YTDownloader/issues",
"email": "[email protected]"
},
"author": {
"name": "Software City Team",
"email": "[email protected]",
"url": "https://github.com/Davis-Software/YTDownloader"
},
"name": "swc_ytdownloader",
"version": "0.1.35",
"description": "Download and convert Videos from YouTube",
"repository": "https://github.com/Davis-Software/YTDownloader",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "electron --trace-warnings .",
"pack": "electron-builder --dir",
"dist": "electron-builder --x64 --win",
"distlinux": "electron-builder --x64 --linux",
"distmacOS": "electron-builder --x64 --mac",
"publish": "electron-builder --x64 --win -p always",
"publishlinux": "electron-builder --x64 --linux -p always",
"publishmacOS": "electron-builder --x64 --mac -p always"
},
"devDependencies": {
"electron": "^28.1.4",
"electron-builder": "^24.9.1"
},
"dependencies": {
"axios": "^1.6.5",
"electron-updater": "^6.1.7",
"js-yaml": "^4.1.0",
"jsdom": "^24.0.0",
"node-stream-zip": "^1.15.0",
"compare-versions": "^6.1.0"
},
"build": {
"appId": "org.software-city.projects.ytdownloader",
"afterPack": "./afterPackHook.js",
"extraFiles": [],
"nsis": {
"oneClick": false,
"perMachine": false
},
"win": {
"target": "nsis",
"icon": "./static/logo/512x512.ico",
"publish": {
"provider": "github",
"publishAutoUpdate": true,
"releaseType": "release"
}
},
"linux": {
"target": ["deb", "rpm", "AppImage"],
"icon": "./static/logo/512x512.png",
"category": "Utility",
"publish": {
"provider": "github",
"publishAutoUpdate": true,
"releaseType": "release"
}
},
"mac": {
"target": ["dmg", "pkg", "zip"],
"icon": "./static/logo/512x512.icns",
"darkModeSupport": true,
"publish": {
"provider": "github",
"publishAutoUpdate": true,
"releaseType": "release"
}
},
"protocols": {
"name": "YT Downloader",
"schemes": [
"swc_ytdownloader"
]
}
}
}