-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "ssh-manager",
"version": "1.0.0",
"description": "Aplicación para gestionar conexiones SSH",
"main": "main.js",
"scripts": {
"start": "electron .",
"package:mac": "electron-builder build --mac",
"package:win": "electron-builder build --windows",
"package:linux": "electron-builder build --linux"
},
"author": "Carlos Mur",
"license": "MIT",
"dependencies": {
"electron-store": "^8.1.0",
"node-pty": "^1.0.0",
"ssh2": "^1.15.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"electron": "^29.0.0",
"electron-builder": "^25.1.8",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsdoc": "^50.6.8",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3"
},
"build": {
"appId": "com.cmurestudillos.ssh-manager",
"productName": "SSH Manager",
"directories": {
"output": "release/"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icon.icns"
},
"win": {
"icon": "assets/icon.ico"
},
"linux": {
"icon": "assets/icon.png",
"category": "Development"
}
}
}