-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.72 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
{
"name": "streammatrix",
"version": "1.0.6",
"private": true,
"author": "StreamMatrix",
"description": "Watch Twitch, Kick, and YouTube live streams in one responsive dashboard.",
"desktopName": "streammatrix.desktop",
"type": "module",
"main": "desktop/main.js",
"scripts": {
"start": "node server.js",
"desktop": "electron .",
"dev": "node --watch server.js",
"test": "node --test",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win nsis portable --x64 --publish never",
"dist:win:installer": "electron-builder --win nsis --x64 --publish never",
"dist:win:portable": "electron-builder --win portable --x64 --publish never",
"dist:mac": "electron-builder --mac dmg --universal --publish never",
"dist:linux": "electron-builder --linux AppImage --x64 --publish never"
},
"engines": {
"node": ">=20"
},
"build": {
"appId": "com.streammatrix.app",
"productName": "StreamMatrix",
"copyright": "Copyright (c) 2026 StreamMatrix",
"asar": true,
"directories": {
"output": "dist"
},
"files": [
"assets/**/*",
"desktop/**/*",
"public/**/*",
"src/**/*",
"server.js",
"package.json"
],
"win": {
"icon": "assets/streammatrix-icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"artifactName": "StreamMatrix-${version}-installer.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"portable": {
"artifactName": "StreamMatrix-${version}-portable.${ext}"
},
"mac": {
"icon": "assets/streammatrix-icon.icns",
"category": "public.app-category.entertainment",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
],
"artifactName": "StreamMatrix-${version}-mac-universal.${ext}"
},
"linux": {
"icon": "assets/linux",
"category": "AudioVideo",
"executableName": "streammatrix",
"syncDesktopName": true,
"synopsis": "Watch multiple live streams in one dashboard",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"artifactName": "StreamMatrix-${version}-${arch}.${ext}"
},
"appImage": {
"artifactName": "StreamMatrix-${version}-${arch}.AppImage"
}
},
"devDependencies": {
"electron": "^42.4.0",
"electron-builder": "^26.15.2"
}
}