-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 764 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 764 Bytes
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
{
"name": "StreamUnity",
"version": "1.0.0",
"description": "Desktop wrapper for Streamingcommunity website with adblocker",
"author": "xSylla",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-linux": "electron-builder --linux"
},
"devDependencies": {
"electron": "^38.1.2",
"electron-builder": "^24.6.4"
},
"dependencies": {
"@ghostery/adblocker-electron": "^2.11.6",
"cross-fetch": "^4.0.0",
"electron-store": "^8.1.0"
},
"build": {
"appId": "com.xsylla.streamunity",
"productName": "StreamUnity",
"linux": {
"target": "AppImage",
"category": "AudioVideo",
"icon": "assets/icon.png"
},
"directories": {
"output": "dist"
}
}
}