-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.8 KB
/
package.json
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
{
"name": "texpaste",
"version": "1.2.0",
"description": "Live TeX rendering.",
"author": "Jonas Musall",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jonasmusall/texpaste.git"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder -p never",
"build-selfupdate-true": "electron-builder -w nsis -l AppImage -p never -c.extraMetadata.selfUpdate=true",
"build-selfupdate-false": "electron-builder -w portable zip -l deb tar.gz -p never -c.extraMetadata.selfUpdate=false"
},
"devDependencies": {
"electron": "17.0.0",
"electron-builder": "^22.14.13"
},
"dependencies": {
"electron-store": "^8.0.1",
"electron-updater": "^4.6.5",
"human-format": "^1.0.0",
"katex": "^0.15.2",
"semver": "^7.3.5"
},
"engines": {
"npm": ">=7.0.0"
},
"build": {
"appId": "jonasmusall.texpaste",
"artifactName": "${productName}_${version}_${os}.${ext}",
"files": [
"!.github",
"!docs",
"!dev-app-update.yml",
"!README.md"
],
"extraResources": [
{
"from": "build/app-update.yml",
"to": "app-update.yml"
}
],
"win": {
"target": [
"nsis",
"portable",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz"
],
"icon": "build/icons",
"maintainer": "Jonas Musall",
"category": "Utility"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"createDesktopShortcut": false,
"artifactName": "${productName}_${version}_${os}_setup.${ext}"
},
"portable": {
"artifactName": "${productName}_${version}_${os}_portable.${ext}"
}
},
"selfUpdate": true
}