-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
109 lines (109 loc) · 4.42 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "saturn",
"private": true,
"version": "1.1.2",
"description": "Saturn PC",
"scripts": {
"canary-dist": "electron-builder --config canary.json",
"canary-cross-dist": "electron-builder -wl --config canary.json",
"canary-build": "cd app && npm i && cd client && npm i && cross-env NODE_ENV=canary npm run build && cd .. && cd .. && npm run canary-dist",
"canary-lbuild": "cd app && npm i && cd client && npm i && export NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run canary-dist",
"canary-cross-build": "cd app && npm i && cd client && npm i && set NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run canary-cross-dist",
"canary-lcross-build": "cd app && npm i && cd client && npm i && export NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run canary-cross-dist",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"cross-dist": "electron-builder -wl",
"postinstall": "electron-builder install-app-deps",
"lbuild": "cd app && npm i && cd client && npm i && export NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run dist",
"build": "cd app && npm i && cd client && npm i && set NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run dist",
"cross-build": "cd app && npm i && cd client && npm i && set NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run cross-dist",
"lcross-build": "cd app && npm i && cd client && npm i && export NODE_OPTIONS=--openssl-legacy-provider && npm run build && cd .. && cd .. && npm run cross-dist"
},
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/SaturnMusic",
"devDependencies": {
"electron": "19.1.9",
"electron-builder": "^24.12.0"
},
"build": {
"appId": "dev.arachnid.saturn",
"productName": "Saturn",
"extraResources": [
{
"from": "app/assets/**",
"to": "assets/"
}
],
"files": [
"**/*",
"!app/client/",
"app/client/dist/**"
],
"win": {
"target": [
"portable",
"nsis"
],
"icon": "build/icon.ico",
"asarUnpack": [
"app/node_modules/nodeezcryptor/**"
]
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": false
},
"linux": {
"appId": "s.s.saturn",
"category": "AudioVideo;Network;Audio;FileTransfer;Player",
"description": "Electron-based Deezer client",
"desktop": {
"Version": "1.1",
"Type": "Application",
"Name": "Saturn",
"GenericName": "Electron-based Deezer client",
"Comment": "Desktop application for the Deezer audio streaming service",
"Icon": "saturn",
"Categories": "AudioVideo;Network;Audio;FileTransfer;Player;",
"MimeType": "application/http;",
"Keywords": "audio;download;flac;lyrics;mp3;music;spotify;stream;",
"StartupNotify": "true",
"StartupWMClass": "saturn",
"DBusActivatable": "false",
"Terminal": "false",
"NoDisplay": "false",
"Hidden": "false"
},
"executableName": "saturn",
"icon": "build/iconset",
"maintainer": "github.com/SaturnMusic",
"mimeTypes": [
"application/http"
],
"synopsis": "Electron-based Deezer client",
"target": [
"AppImage",
"deb",
"tar.xz"
]
},
"appImage": {
"desktop": {
"X-AppImage-Name": "Saturn"
}
},
"deb": {
"packageCategory": "sound",
"priority": "optional",
"depends": [
"libflac8",
"libnotify4",
"libnss3",
"libssl1.1 | libssl1.0.0",
"libxtst6"
]
}
}
}