-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "e-xterm",
"version": "1.0.0",
"description": "e-xterm is cross-platform electron SSH and SFTP program, which aims to be used for commercial/professional users.",
"main": "src/main/main.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "npm run build && electron ./dist/main/main.js"
},
"repository": "https://github.com/ShlomiRex/e-xterm",
"author": "Shlomi Domnenko",
"dependencies": {
"bootstrap": "^5.0.0-beta1",
"electron": "^11.2.0",
"electron-browser": "git+https://github.com/ShlomiRex/electron-browser.git",
"electron-store": "^7.0.0",
"jquery": "^3.5.1",
"node-cmd": "^4.0.0",
"node-pty": "^1.0.0",
"socket.io": "^3.1.0",
"split.js": "^1.6.2",
"ssh2": "^0.8.9",
"typescript": "^4.1.3",
"uuid": "^3.4.0",
"w2ui": "^1.4.3",
"xterm": "^4.9.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.4.0",
"xterm-addon-ligatures": "^0.4.0",
"xterm-addon-search": "^0.8.0",
"xterm-addon-unicode11": "^0.2.0",
"xterm-addon-web-links": "^0.4.0",
"xterm-addon-webgl": "^0.10.0"
},
"devDependencies": {
"@types/ssh2": "^0.5.46",
"@types/uuid": "^8.3.0",
"@types/w2ui": "^1.4.32",
"@types/websocket": "^1.0.1",
"electron-rebuild": "^2.3.4",
"electron-reload": "^1.5.0",
"electron-reloader": "^1.2.0",
"node-gyp": "9.4.0"
}
}