-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "memex-backup-helper",
"description": "Local app to make your Memex backups to any folder.",
"version": "0.5.4",
"main": "folder-select.html",
"window": {
"show": false,
"icon": "./img/appIcon.icns",
"resizable": false,
"always-on-top": true,
"show_in_taskbar": false,
"frame": false,
"title": "Memex Backup Helper",
"width": 370,
"height": 360
},
"author": "Eike Mücksch",
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.17.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mkdirp": "^0.5.1"
},
"build": {
"nwVersion": "0.46.2",
"targets": [
"zip"
]
},
"scripts": {
"dist": "build --tasks win-x86,win-x64,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ . --concurrent",
"mac": "build --tasks mac-x64 --mirror https://dl.nwjs.io/ . --concurrent"
},
"devDependencies": {
"nwjs-builder-phoenix": "^1.15.0"
}
}