-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 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
{
"name": "sable-matrix-client-electron",
"productName": "Sable",
"version": "0.0.1",
"description": "Electron wrapper for Sable Client",
"main": "main.js",
"author": "7w1 <hi@sable.moe>",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"pack": "electron-builder --dir"
},
"devDependencies": {
"electron": "^40.6.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "moe.sable.app",
"productName": "Sable",
"directories": {
"output": "dist",
"buildResources": "."
},
"extraResources": [
"favicon.png",
"icon.png",
"tray-icon.png",
"tray-icon@2x.png"
],
"files": [
"main.js",
"preload.js",
"package.json"
],
"win": {
"icon": "favicon.png",
"target": ["nsis", "portable"]
},
"mac": {
"icon": "icon.png",
"target": ["dmg", "zip"]
},
"linux": {
"icon": "favicon.png",
"target": ["AppImage", "deb", "flatpak"],
"category": "Chat"
},
"flatpak": {
"base": "org.electronjs.Electron2.BaseApp",
"baseVersion": "24.08",
"runtime": "org.freedesktop.Platform",
"runtimeVersion": "24.08",
"sdk": "org.freedesktop.Sdk",
"finishArgs": [
"--socket=wayland",
"--socket=x11",
"--share=ipc",
"--device=dri",
"--device=all",
"--socket=pulseaudio",
"--share=network",
"--talk-name=org.freedesktop.Notifications"
]
}
}
}