-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.45 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
{
"name": "zvuk-desktop",
"version": "1.1.4",
"description": "Desktop Electron wrapper for Zvuk streaming service",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "Vladimir Kashin <vo.kashin@mail.ru>",
"email": "vo.kashin@mail.ru",
"license": "MIT",
"devDependencies": {
"electron": "^42.3.3",
"electron-builder": "^26.15.0"
},
"dependencies": {
"electron-log": "^5.4.4",
"electron-updater": "^6.3.9",
"electron-window-state": "^5.0.3"
},
"build": {
"appId": "ru.garagesession.zvuk",
"productName": "Zvuk Desktop",
"artifactName": "Zvuk-Desktop-${version}-${os}-${arch}.${ext}",
"mac": {
"identity": null,
"hardenedRuntime": false,
"gatekeeperAssess": false,
"category": "public.app-category.music",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "resources/AppIcon.icns"
},
"linux": {
"category": "AudioVideo",
"target": [
"AppImage",
"deb"
],
"icon": "resources/icons"
},
"win": {
"target": [
"nsis"
],
"icon": "resources/icon.ico"
},
"publish": [
{
"provider": "github",
"owner": "vokash3",
"repo": "zvuk-desktop"
}
],
"files": [
"**/*"
]
}
}