-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 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
{
"name": "convertapi-document-converter",
"version": "1.0.3",
"description": "File conversion workflow desktop app",
"main": "src/main.js",
"author": "UAB Baltsoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ConvertAPI/convertapi-automator/GUI"
},
"scripts": {
"start": "electron .",
"scss": "sass --style=compressed --watch assets/css/scss:assets/css",
"pack": "electron-builder --dir",
"dist": "electron-builder -p onTag",
"publish": "electron-builder --win -p always"
},
"build": {
"productName": "ConvertAPI Document Converter",
"appId": "convertapi-document-converter",
"files": [
"src/**/*",
"node_modules/**/*",
"package.json",
"build"
],
"directories": {
"buildResources": "build"
},
"mac": {
"category": "public.app-category.utilities",
"target": "dmg"
},
"linux": {
"target": "AppImage"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icons/win/icon.ico",
"publish": [
"github"
]
},
"nsis": {
"installerIcon": "build/icons/win/icon.ico",
"installerHeaderIcon": "build/icons/win/icon.ico",
"deleteAppDataOnUninstall": true
},
"extends": null,
"publish": [{
"provider": "github",
"owner": "iffy",
"repo": "electron-updater-example"
}]
},
"dependencies": {
"electron-log": "^4.3.2",
"electron-updater": "^4.3.9"
},
"devDependencies": {
"electron": "^13.6.6",
"electron-builder": "^22.13.1",
"sass": "^1.32.8"
}
}