-
Notifications
You must be signed in to change notification settings - Fork 804
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.95 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
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
112
113
114
115
116
{
"name": "mineradio",
"productName": "Mineradio",
"version": "2.1.0",
"description": "Windows 沉浸式音乐播放器,融合桌面模式、歌词舞台、粒子视觉和 3D 歌单架。",
"author": "Mineradio",
"license": "GPL-3.0-only",
"main": "desktop/main.js",
"private": true,
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win nsis",
"build:win:dir": "electron-builder --win dir",
"build:win:internal-beta": "electron-builder --config electron-builder.internal-beta.json --win nsis --publish never"
},
"build": {
"appId": "com.mineradio.desktop",
"productName": "Mineradio",
"directories": {
"output": "dist",
"buildResources": "build"
},
"afterPack": "build/after-pack.js",
"toolsets": {
"winCodeSign": "1.1.0"
},
"files": [
"desktop/**/*",
"public/**/*",
"build/**/*",
"cuefield/**/*",
"server.js",
"*-api.js",
"qishui-auth-v6.js",
"qishui-qr-login.js",
"qishui-auth-v6/**/*",
"qishui-audio-decryptor/**/*",
"dj-analyzer.js",
"LICENSE",
"NOTICE.md",
"docs/THIRD_PARTY_PORTS.md",
"package.json",
"!desktop/wallpaper-preload.js",
"!public/wallpaper.html",
"!public/index.*.html",
"public/index.html"
],
"asar": false,
"win": {
"executableName": "Mineradio",
"icon": "build/icon.ico",
"signAndEditExecutable": false,
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Mineradio",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerSidebar": "build/installerSidebar.bmp",
"uninstallerSidebar": "build/installerSidebar.bmp",
"installerHeader": "build/installerHeader.bmp",
"include": "build/installer.nsh",
"artifactName": "Mineradio-${version}-Setup.${ext}"
},
"publish": [
{
"provider": "github",
"owner": "XxHuberrr",
"repo": "Mineradio"
}
]
},
"mineradio": {
"update": {
"provider": "github",
"owner": "XxHuberrr",
"repo": "Mineradio",
"preview": false,
"preferMirrors": true,
"mirrors": [
"https://gh.llkk.cc/",
"https://ghfast.top/",
"https://gh-proxy.com/"
]
}
},
"dependencies": {
"gsap": "^3.15.0",
"mpg123-decoder": "^1.0.3",
"music-metadata": "11.14.0",
"NeteaseCloudMusicApi": "^4.32.0",
"qrcode": "^1.5.4"
},
"overrides": {
"axios": "1.18.1",
"body-parser": "1.20.6",
"music-metadata": "11.14.0"
},
"devDependencies": {
"electron": "^42.4.1",
"electron-builder": "^26.15.3",
"rcedit": "^5.0.2"
}
}