-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "online-web-ssh",
"version": "1.0.0",
"description": "A powerful web-based SSH client that runs directly in your browser",
"main": "index.html",
"scripts": {
"start": "http-server -p 8080 -o",
"dev": "http-server -p 8080 -c-1",
"download-libs": "node scripts/download-libs.js",
"build": "echo 'Build completed'",
"test": "echo 'No tests configured'"
},
"keywords": [
"ssh",
"web",
"terminal",
"xterm",
"websocket",
"client",
"remote",
"shell"
],
"author": "Seyyed Ali Mohammadiyeh (MAX BASE) <maxbasecode@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BaseMax/online-web-ssh.git"
},
"homepage": "https://github.com/BaseMax/online-web-ssh",
"bugs": {
"url": "https://github.com/BaseMax/online-web-ssh/issues"
},
"devDependencies": {
"http-server": "^14.1.1"
},
"dependencies": {
"bootstrap": "^5.3.0",
"jquery": "^3.6.0",
"xterm": "^5.2.1",
"xterm-addon-fit": "^0.8.0"
}
}