-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.98 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
{
"name": "audiovisual",
"version": "1.0.8",
"description": "The key to unlock all streams.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"dist:all": "electron-builder --win --mac --linux"
},
"author": {
"name": "AudioVisual",
"email": "fenghaoran60@gmail.com"
},
"license": "UNLICENSED",
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"electron-updater": "^6.6.2"
},
"dependencies": {
"axios": "^1.4.0",
"electron-updater": "^6.6.2"
},
"build": {
"appId": "com.void.player",
"publish": {
"provider": "github",
"owner": "RemotePinee",
"repo": "AudioVisual"
},
"productName": "AudioVisual",
"files": [
"main.js",
"index.html",
"assets/**/*"
],
"win": {
"target": {
"target": "nsis",
"arch": ["x64"]
},
"icon": "assets/images/icon-512.png",
"requestedExecutionLevel": "asInvoker",
"verifyUpdateCodeSignature": false,
"publisherName": "AudioVisual",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/images/icon-512.png",
"category": "public.app-category.entertainment"
},
"linux": {
"target": [
{
"target": "deb",
"arch": ["x64"]
}
],
"icon": "assets/images/icon-512.png",
"category": "AudioVideo"
},
"compression": "maximum",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"differentialPackage": true
},
"electronDownload": {
"mirror": "https://npmmirror.com/mirrors/electron/"
},
"directories": {
"output": "dist"
}
}
}