-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "magtorrent",
"productName": "MagTorrent",
"version": "1.0.11",
"description": "A torrent app for Desktop, powered by WebTorrent and Electron.",
"main": "src/app.js",
"scripts": {
"start": "electron .",
"pack-all": "npm run pack-mac && npm run pack-windows && npm run pack-linux && open dist/",
"pack-mac": "npx electron-builder -m --x64 --arm64",
"pack-linux": "npx electron-builder -l deb tar.xz --x64",
"pack-windows": "npx electron-builder -w nsis zip --x64"
},
"keywords": [
"magnet",
"torrent",
"webtorrent"
],
"author": "Yuh Apps <yuhapps@gmail.com>",
"license": "ISC",
"build": {
"appId": "dev.yuhapps.magtorrent",
"afterSign": "./notarize.js",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"asar": false,
"mac": {
"notarize": false
},
"win": {
"artifactName": "${productName}-${version}-windows-${arch}.${ext}"
},
"protocols": [
{
"name": "Magnet URL",
"schemes": [
"magnet"
]
}
]
},
"dependencies": {
"electron-updater": "^6.3.9",
"sound-play": "^1.1.0",
"trash": "^9.0.0",
"webtorrent": "^2.5.10"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8"
},
"postinstall": "electron-builder install-app-deps"
}