-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 924 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
34
35
36
37
38
39
40
41
42
{
"name": "signal-lm",
"version": "1.0.8",
"private": true,
"description": "Signal LM desktop wrapper",
"main": "desktop-main.js",
"scripts": {
"desktop": "electron .",
"start": "electron .",
"tel": "node tel-server.js",
"pack": "electron-builder --dir",
"dist": "electron-builder --win nsis --publish never"
},
"build": {
"appId": "com.signallm.desktop",
"productName": "Signal LM",
"buildVersion": "1.0.6.2",
"files": [
"desktop-main.js",
"tel-server.js",
"index.html",
"folders.html",
"*.css",
"*.js",
"*.md",
".nojekyll",
"libs/**/*"
],
"directories": {
"output": "dist_new"
},
"artifactName": "Signal-LM-Setup.exe",
"win": {
"target": "nsis",
"signAndEditExecutable": false
}
},
"devDependencies": {
"electron": "^42.3.0",
"electron-builder": "^26.8.1"
}
}