-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "SolidBackup",
"description": "File Backup for Windows. Free and open source.",
"version": "0.5.1",
"license": "GPL-3.0+",
"author": "David Bolton",
"main": "main.js",
"build": {
"appId": "info.davidbolton.solidbackup",
"files": [
"index.html",
"main.js",
"main-process/",
"render-process/",
"style/",
"build/wordmark.png"
],
"extraFiles": [
"Binaries/"
],
"publish": [
{
"provider": "github",
"owner": "dbolton",
"repo": "SolidBackup"
}
],
"win": {
"requestedExecutionLevel": "highestAvailable"
},
"nsis": {
"shortcutName": "Solid Backup"
}
},
"scripts": {
"start": "./node_modules/.bin/electron .",
"dev": "./node_modules/.bin/electron . /dev",
"test": "standard && node my-tests.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder --publish always"
},
"devDependencies": {
"electron": "^9.2.1",
"electron-builder": "^22.8.0",
"standard": "*"
},
"dependencies": {
"electron-log": "^4.2.4",
"electron-updater": "^4.3.4",
"standard": "^14.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/dbolton/SolidBackup.git"
}
}