-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "reverse-shell-listener",
"version": "2.0.0",
"description": "Multi-transport reverse-shell listener with a qrp + xterm.js dashboard (Dracula theme)",
"type": "module",
"main": "server.js",
"scripts": {
"build": "node build.js",
"watch": "node build.js --watch",
"start": "node build.js && node server.js",
"dev": "node build.js && node --watch server.js",
"cli": "node cli.js",
"test": "AUTH_USER=test AUTH_PASS=test API_TOKEN=test-api-token node --test tests/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemanjan00/reverse-shell-listener.git"
},
"author": "Nemanja Nedeljković <nemanjan00@gmail.com> (https://nemanja.top/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nemanjan00/reverse-shell-listener/issues"
},
"homepage": "https://github.com/nemanjan00/reverse-shell-listener#readme",
"dependencies": {
"blessed": "^0.1.81",
"express": "^5.2.1",
"express-ws": "^5.0.2",
"node-notifier": "^10.0.1",
"protobufjs": "^8.7.2",
"proxinator": "^0.0.7",
"term.js": "^0.0.7",
"ws": "^8.21.3"
},
"devDependencies": {
"@nemanjan00/qrp": "^0.9.3",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"esbuild": "^0.28.2"
}
}