forked from XxHuberrr/Mineradio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.36 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
{
"name": "mineradio",
"productName": "Mineradio",
"version": "1.2.0",
"description": "沉浸式音乐播放器,融合天气电台、歌词舞台、粒子视觉和 3D 歌单架。",
"author": "Mineradio",
"main": "desktop/main.js",
"private": true,
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win nsis",
"build:win:dir": "electron-builder --win dir"
},
"build": {
"appId": "com.mineradio.desktop",
"productName": "Mineradio",
"directories": {
"output": "dist",
"buildResources": "build"
},
"afterPack": "build/after-pack.js",
"toolsets": {
"winCodeSign": "1.1.0"
},
"files": [
"desktop/**/*",
"lib/**/*",
"public/**/*",
"build/**/*",
"server.js",
"dj-analyzer.js",
"package.json",
"!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": true,
"preferMirrors": true,
"mirrors": [
"https://gh.llkk.cc/",
"https://ghfast.top/",
"https://gh-proxy.com/"
]
}
},
"dependencies": {
"gsap": "^3.15.0",
"mpg123-decoder": "^1.0.3",
"NeteaseCloudMusicApi": "^4.32.0"
},
"devDependencies": {
"electron": "^42.4.1",
"electron-builder": "^26.15.3",
"rcedit": "^5.0.2"
}
}