-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathpackage.json
92 lines (92 loc) · 1.96 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
86
87
88
89
90
91
92
{
"name": "AllToMP3",
"version": "0.3.19",
"description": "Download YouTube videos in MP3 with tags and lyrics",
"main": "main.js",
"repository": "git@github.com:AllToMP3/alltomp3-app.git",
"author": "Basile Bruneau <basilebruneau@gmail.com>",
"license": "GPL-2.0",
"homepage": "https://alltomp3.org/",
"dependencies": {
"alltomp3": "^0.4.5",
"electron-updater": "~4.2.0",
"ncp": "~2.0.0",
"nedb-promise": "~2.0.1",
"request": "~2.81.0"
},
"devDependencies": {
"electron": "~4",
"electron-builder": "~22.3.2",
"unzip2": "~0.2.5"
},
"build": {
"appId": "org.alltomp3.app",
"asarUnpack": [
"**/node_modules/sharp/**/*",
"bin",
"bin/**"
],
"mac": {
"category": "public.app-category.music"
},
"linux": {
"target": "deb",
"executableName": "alltomp3",
"category": "AudioVideo",
"packageCategory": "sound"
},
"deb": {
"depends": [
"python-pathlib",
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"ffmpeg",
"libchromaprint-tools"
]
},
"dmg": {
"title": "AllToMP3",
"icon": "build/dmg.icns",
"contents": [
{
"x": 0,
"y": 90
},
{
"x": 220,
"y": 90,
"type": "link",
"path": "/Applications"
}
],
"iconSize": 100,
"window": {
"width": 400,
"height": 180
}
},
"directories": {
"app": "."
},
"files": [
"!**/app/node_modules",
"!**/app/src"
],
"publish": [
{
"provider": "github"
}
]
},
"scripts": {
"start": "ALLTOMP3_DEV=1 electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder",
"postinstall": "electron-builder install-app-deps && node ./install.js"
}
}