This repository was archived by the owner on Jan 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.13 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.13 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
{
"name": "overleaf",
"version": "3.0.0",
"description": "A dedicated, **unofficial** desktop application for Overleaf, the online LaTeX editor. Written in electron and built in electron-builder.",
"main": "./js/app.js",
"scripts": {
"dev": "tsc && electron ./js/app",
"build": "tsc",
"clean": "rm -r node_modules && rm -r js",
"dist": "sh ./scripts/build.sh",
"dist:mac": "electron-builder --mac",
"dist:allother": "$SHELL ./scripts/docker.sh",
"dist:snapcraft": "snapcraft push --release=stable ./dist/Overleaf\\ Desktop-*.snap",
"dist:all": "npm run dist:allother; npm run dist:mac; npm run dist:snapcraft"
},
"keywords": [
"Overleaf",
"LaTex"
],
"author": "oitsjustjose",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^9.3.1",
"electron-builder": "^22.7.0"
},
"dependencies": {
"@types/electron": "^1.6.10",
"electron-context-menu": "^2.0.1",
"electron-dl": "^3.0.1",
"typescript": "^3.9.6"
},
"build": {
"appId": "com.oitsjustjose.overleafdesktop",
"productName": "Overleaf Desktop",
"artifactName": "Overleaf Desktop-${version}.${ext}",
"appImage": {
"category": "Office"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icons/macOS/overleaf.icns",
"darkModeSupport": true,
"hardenedRuntime": true
},
"win": {
"icon": "assets/icons/win/overleaf.ico"
},
"linux": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"deb": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"snap": {
"category": "Office"
},
"pacman": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"rpm": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"freebsd": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"p5p": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
},
"apk": {
"icon": "assets/icons/png/overleaf.png",
"category": "Office"
}
}
}