-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.97 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.97 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
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
113
114
115
116
117
118
119
120
121
122
{
"name": "binder-local",
"productName": "Binder",
"version": "0.4.0",
"description": "Backup files to the cloud",
"homepage": "https://binderapp.xyz",
"main": "src/electron-main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder --publish always"
},
"keywords": [],
"private": true,
"author": {
"name": "Victor Olaitan",
"email": "victor@binderapp.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/DeveloperRic/binder-local.git"
},
"build": {
"appId": "xyz.binderapp.binder",
"productName": "Binder",
"directories": {
"output": "out"
},
"extraResources": [
"data",
"data/*"
],
"win": {
"icon": "build/logo.ico",
"publish": [
"github"
]
},
"mac": {
"category": "public.app-category.utilities",
"icon": "build/logo.icns",
"publish": [
"github"
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Office"
}
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"iconUrl": "http://www.iconj.com/ico/h/p/hpwvy4b6kc.ico",
"name": "Binder",
"setupExe": "Binder Setup",
"description": "Installing Binder Cloud Backup",
"setupIcon": "build/logo.ico"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"auto-launch": "^5.0.5",
"backblaze-b2": "^1.3.1",
"chart.js": "^2.9.4",
"check-disk-space": "^2.1.0",
"dotenv": "^8.0.0",
"electron-log": "^3.0.6",
"electron-pug": "^2.0.0",
"electron-updater": "^4.1.2",
"ip": "^1.1.5",
"jwt-decode": "^2.2.0",
"keytar": "^4.9.0",
"mime-types": "^2.1.24",
"mongoose": "^5.7.5",
"path-parse": "^1.0.6",
"path-to-regexp": "^3.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"speedtest-net": "^1.5.1",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.39",
"@electron-forge/maker-deb": "^6.0.0-beta.39",
"@electron-forge/maker-rpm": "^6.0.0-beta.39",
"@electron-forge/maker-squirrel": "^6.0.0-beta.39",
"@electron-forge/maker-zip": "^6.0.0-beta.39",
"electron": "9.4.0",
"electron-builder": "^21.0.15"
}
}