forked from az-z31/p-stream-desktop
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.58 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.58 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
{
"name": "p-stream-desktop",
"productName": "P-Stream",
"version": "1.2.6",
"description": "Desktop app for P-Stream",
"author": "P-Stream",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"start:win": "cross-env PLATFORM_OVERRIDE=win32 electron .",
"start:mac": "cross-env PLATFORM_OVERRIDE=darwin electron .",
"start:linux": "cross-env PLATFORM_OVERRIDE=linux electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"dist": "electron-builder --publish=never",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"cross-env": "^7.0.3",
"electron": "^39.3.0",
"electron-builder": "^26.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"prettier": "^3.8.1"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-updater": "^6.7.3"
},
"build": {
"appId": "com.p-stream.desktop",
"productName": "P-Stream",
"directories": {
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "p-stream",
"repo": "p-stream-desktop"
},
"files": [
"**/*",
"!extension/**",
"!dist/**",
"!build/**",
"!*.md",
"!test.js"
],
"mac": {
"category": "public.app-category.entertainment",
"icon": "app.icns",
"target": [
"dmg",
"zip"
],
"strictVerify": false
},
"win": {
"icon": "logo.png",
"target": [
"nsis",
"zip"
],
"requestedExecutionLevel": "asInvoker",
"executableName": "P-Stream"
},
"linux": {
"icon": "logo.png",
"target": "AppImage",
"category": "AudioVideo"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "P-Stream",
"deleteAppDataOnUninstall": false,
"artifactName": "${productName} Setup ${version}.${ext}",
"runAfterFinish": true,
"language": "1033",
"allowElevation": false,
"warningsAsErrors": false,
"differentialPackage": false,
"multiLanguageInstaller": false,
"packElevateHelper": false,
"installerIcon": null,
"uninstallerIcon": null
}
}
}