-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
118 lines (118 loc) · 2.91 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
113
114
115
116
117
118
{
"name": "filen-desktop-client",
"version": "1.6.2",
"description": "Filen Desktop Client",
"main": "index.js",
"dependencies": {
"auto-launch": "^5.0.5",
"await-semaphore": "^0.1.3",
"check-disk-space": "^2.1.0",
"chokidar": "^3.5.2",
"chokidar-fs-extra": "git+https://github.com/FilenCloudDienste/chokidar-fs-extra.git",
"node-watch-fs-extra": "git+https://github.com/FilenCloudDienste/node-watch-fs-extra.git",
"crypto-js": "^4.0.0",
"electron-is": "^3.0.0",
"electron-log": "^4.2.4",
"electron-positioner": "^4.1.0",
"electron-traywindow-positioner": "^1.1.0",
"electron-updater": "^4.3.5",
"fs-extra": "^10.0.0",
"jquery": "^3.5.1",
"js-md2": "^0.2.2",
"js-md4": "^0.3.2",
"js-md5": "^0.7.3",
"js-sha1": "^0.6.0",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"klaw": "^3.0.0",
"level": "^6.0.1",
"mime-types": "^2.1.27",
"mv": "^2.1.1",
"node-semaphore": "0.0.2",
"read-chunk": "^3.2.0",
"readdirp": "^3.6.0",
"recursive-copy": "^2.0.11",
"rimraf": "^3.0.2",
"socket.io-client": "^2.3.1",
"toastify-js": "^1.9.3",
"windows": "0.0.9"
},
"devDependencies": {
"electron": "^13.5.1",
"electron-builder": "^22.9.1",
"electron-installer-windows": "^3.0.0",
"electron-notarize": "^1.0.0",
"electron-packager": "^15.1.0",
"electron-rebuild": "^2.2.0"
},
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"rebuild": "./node_modules/.bin/electron-rebuild.cmd",
"dist": "electron-builder -wlm",
"build-linux": "electron-builder -l",
"build-mac": "electron-builder -m",
"build-win": "electron-builder -w",
"misc": "-c.mac.identity=null"
},
"build": {
"appId": "io.filen.sync",
"productName": "Filen Sync",
"asar": false,
"npmRebuild": true,
"nodeGypRebuild": false,
"artifactName": "filen-setup.${ext}",
"afterSign": "build/notarize.js",
"directories": {
"output": "./build/bin/"
},
"publish": [
{
"provider": "generic",
"url": "https://cdn.filen.io/sync/updates/"
}
],
"win": {
"icon": "./icons/win/icon.ico",
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": true,
"createDesktopShortcut": false,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": false
},
"linux": {
"icon": "./icons/png/256x256.png",
"target": [
"AppImage",
"zip"
]
},
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"LSUIElement": 1
},
"icon": "./icons/png/512x512.png"
},
"dmg": {
"sign": false
}
},
"author": "Filen Cloud Dienste UG (haftungsbeschränkt)",
"license": "https://github.com/FilenCloudDienste/filen-desktop/blob/master/LICENSE.md"
}