-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "syncrypt-desktop",
"productName": "Syncrypt",
"version": "0.5.2",
"email": "info@syncrypt.space",
"description": "Syncrypt platform independent desktop client",
"main": "build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make-installer": "electron-forge make",
"lint": "eslint src",
"watch": "chokidar '**/*.elm' 'static/*' -c 'make' --initial"
},
"keywords": [],
"author": "Syncrypt UG",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/syncrypt/elm-desktop/issues"
},
"homepage": "https://github.com/syncrypt/elm-desktop#readme",
"build": {
"artifactName": "Syncrypt-Desktop-${os}.zip",
"appId": "space.syncrypt.desktop",
"asar": false,
"files": [
"build/*.*",
"build/**/*.*",
"build/syncrypt/*"
],
"linux": {
"target": [
"zip",
"AppImage"
],
"category": "FileTransfer"
},
"mac": {
"target": [
"zip",
"dmg"
]
},
"win": {
"target": [
"zip",
"nsis"
]
},
"nsis": {
"artifactName": "Syncrypt-Desktop-Setup.exe"
},
"dmg": {
"artifactName": "Syncrypt-Desktop.dmg"
},
"appImage": {
"artifactName": "Syncrypt-Desktop.AppImage"
}
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"icon": "./icon.ico"
},
"electronWinstallerConfig": {
"name": "Syncrypt",
"setupExe": "Syncrypt Setup.exe",
"description": "Syncrypt Desktop Application",
"setupIcon": "./icon.ico"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "Syncrypt"
}
}
},
"dependencies": {
"auto-launch": "^5.0.5",
"electron-compile": "^6.4.4",
"electron-log": "^3.0.8",
"electron-updater": "^4.1.2",
"expand-home-dir": "^0.0.3",
"file": "^0.2.2"
},
"devDependencies": {
"chokidar-cli": "^2.0.0",
"electron-builder": "^21.2.0",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"elm": "^0.18.0",
"elm-github-install": "^1.6.1",
"node-sass": "^4.12.0"
}
}