-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "offline-pdf-toolkit",
"version": "1.0.0",
"private": true,
"description": "Offline PDF Toolkit (OPTK): offline-first PDF merge/split/preview tool for Web, Windows, and Linux.",
"main": "tools/electron/main.cjs",
"scripts": {
"start:electron:win": "node tools/electron/launch-electron.cjs windows-exe",
"start:electron:linux": "node tools/electron/launch-electron.cjs linux-client",
"build:win:portable": "node tools/electron/build-electron.cjs windows-exe portable",
"build:win:installer": "node tools/electron/build-electron.cjs windows-exe nsis",
"build:linux:client": "node tools/electron/build-electron.cjs linux-client AppImage",
"serve:linux:lan": "node tools/server/lan-server.cjs",
"sync:win:unpacked": "node tools/electron/sync-unpacked.cjs",
"build:linux:dir": "node tools/electron/build-electron.cjs linux-client dir"
},
"build": {
"appId": "local.offline-pdf-toolkit",
"productName": "Offline PDF Toolkit",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"fileAssociations": [
{
"ext": "pdf",
"name": "PDF Document",
"description": "Open PDF files with Offline PDF Toolkit",
"role": "Viewer"
}
],
"files": [
"index.html",
"assets/**/*",
"tools/electron/**/*",
"package.json",
"README.md"
],
"directories": {
"output": "dist-electron"
},
"asar": false,
"win": {
"signAndEditExecutable": false
},
"linux": {
"category": "Office"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"electron": "^37.2.0",
"electron-builder": "^26.0.12"
}
}