-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (79 loc) · 1.76 KB
/
package.json
File metadata and controls
80 lines (79 loc) · 1.76 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
{
"name": "neonkat",
"version": "0.3.4",
"description": "A simple yet not music player with visualizer and miniplayer",
"author": "PaleCache",
"homepage": "https://github.com/palecache/neonkat",
"main": "main.js",
"scripts": {
"start": "GTK_USE_PORTAL=0 GDK_BACKEND=wayland electron .",
"build": "electron-builder",
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --win"
},
"build": {
"appId": "com.palecache.NeonKat",
"productName": "NeonKat",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"index.html",
"renderer/**/*",
"build/**/*",
"jsmediatags.min.js",
"hls.js@latest",
"build/NeonKat.desktop",
"build/com.palecache.NeonKat.metainfo.xml"
],
"asar": true,
"publish": [
{
"provider": "github",
"owner": "palecache",
"repo": "neonkat"
}
],
"win": {
"target": [
"nsis"
],
"artifactName": "${productName}-Setup-${version}.${ext}",
"icon": "build/kat.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/kat.png",
"category": "Audio",
"maintainer": "PaleCache",
"desktop": {
"StartupWMClass": "NeonKat"
},
"artifactName": "${productName}-${version}-x86_64.${ext}"
},
"deb": {
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0"
]
}
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^24.13.3"
},
"dependencies": {
"electron-log": "^5.4.3",
"electron-updater": "^6.7.3"
}
}