forked from listen1/listen1_desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.62 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
110
111
{
"name": "listen1",
"version": "2.32.0",
"description": "One for all free music in China",
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"dist:mac": "CSC_IDENTITY_AUTO_DISCOVERY=false DEBUG=electron-builder electron-builder --mac",
"dist": "electron-builder .",
"dist:linux": "electron-builder --linux --ia32 --x64",
"dist:linux32": "electron-builder --linux --ia32",
"dist:linux64": "electron-builder --linux --x64",
"dist:linuxArm64": "electron-builder --linux --arm64",
"dist:linuxArmv7l": "electron-builder --linux --armv7l",
"dist:win": "electron-builder --win"
},
"repository": {
"type": "git",
"url": "git+https://github.com/listen1/listen1_desktop.git"
},
"keywords": [
"Electron",
"Listen 1"
],
"author": "Listen 1 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/listen1/listen1_desktop/issues"
},
"homepage": "https://github.com/listen1/listen1_desktop#readme",
"build": {
"appId": "com.listen1.listen1",
"productName": "Listen1",
"asar": true,
"artifactName": "${name}_${version}_${os}_${arch}.${ext}",
"dmg": {
"icon": "build/disk.icns",
"contents": [
{
"x": 192,
"y": 344
},
{
"x": 448,
"y": 344,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
],
"category": "public.app-category.music"
},
"linux": {
"target": [
"tar.gz",
"appImage",
"deb"
],
"category": "Audio"
},
"nsis": {
"runAfterFinish": false,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"installerLanguages": "zh_CN",
"language": 2052,
"perMachine": true,
"createDesktopShortcut": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32",
"arm64"
]
},
{
"target": "7z",
"arch": [
"x64",
"ia32",
"arm64"
]
}
],
"icon": "build/icon.ico"
}
},
"devDependencies": {
"electron": "^13.6.9",
"electron-builder": "^23.0.3",
"prettier": "^2.6.2"
}
}