-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "sftp-browser",
"version": "1.0.0",
"description": "A web-based SFTP file browser that makes managing your server files easy!",
"main": "server.js",
"scripts": {
"startserver": "node server.js",
"startapp": "electron app.js",
"package": "electron-builder -lw"
},
"build": {
"appId": "org.simplecyber.sftp-browser",
"productName": "SFTP-Browser",
"files": [
"web/**/*",
"*.js",
"*.json"
],
"linux": {
"target": [
"deb"
],
"category": "Network",
"icon": "web/icon.png"
},
"win": {
"target": [
"zip"
],
"icon": "web/icon.png"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyberGen49/sftp-browser.git"
},
"author": "Kayla <kayla@cybah.me> (https://cybah.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/CyberGen49/sftp-browser/issues"
},
"homepage": "https://github.com/CyberGen49/sftp-browser#readme",
"dependencies": {
"archiver": "^6.0.1",
"body-parser": "^1.20.2",
"cyber-express-logger": "^1.0.5",
"dayjs": "^1.11.10",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-ws": "^5.0.2",
"mime": "^3.0.0",
"ssh2-sftp-client": "^9.1.0",
"web-resources": "^2.3.0"
},
"devDependencies": {
"electron": "^26.2.4"
}
}