-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.41 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
{
"name": "soil",
"version": "1.0.0",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux"
},
"keywords": [
"latex",
"overleaf",
"editor",
"sync"
],
"author": "Soil Contributors",
"license": "MIT",
"description": "Open-source desktop LaTeX editor and offline two-way synchronization client for Overleaf Premium projects.",
"dependencies": {
"chokidar": "^5.0.0",
"simple-git": "^3.32.3"
},
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.soil.editor",
"productName": "Soil",
"directories": {
"output": "release"
},
"files": [
"src/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "resources/",
"to": "resources/",
"filter": [
"**/*"
]
}
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico"
}
}
}