-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "ssh-agent-secure-ui",
"version": "1.0.3",
"description": "SSH agent secure UI to approve reuse of your SSH socket.",
"main": "./app/index.js",
"scripts": {
"compile-templates": "handlebars ./app/resources/tpl/*.hbs -c handlebars/runtime -f app/resources/tpl/compiled.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder --publish never",
"deploy": "electron-builder --publish always"
},
"author": {
"name": "macskas",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/macskas/SSHAgentSecureProxy.git"
},
"build": {
"appId": "com.macskas.ssh-agent-secure-ui",
"productName": "SSHAgentSecureUI",
"icon": "app/resources/agent-icon-default.png",
"files": [
"!build{,/**/*}",
"!dist{,/**/*}",
"!**/._*",
"!**/.resources/*",
"!**/.github/*",
"!**/.git/*",
"!**/*.md",
"!**/*.yml"
],
"linux": {
"category": "Utility",
"target": [
"AppImage"
]
},
"mac": {
"category": "public.app-category.utilities",
"identity": null,
"target": [
"dmg"
]
}
},
"homepage": "https://github.com/macskas/SSHAgentSecureProxy",
"devDependencies": {
"electron": "^21.4.0",
"electron-builder": "^23.6.0"
},
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap4-notify": "^4.0.3",
"console-stamp": "^3.1.0",
"denque": "^2.0.1",
"electron-is-accelerator": "^0.2.0",
"electron-updater": "^5.3.0",
"handlebars": "^4.7.7",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"strftime": "^0.10.0",
"tether": "^1.4.7"
}
}