rterm-backend 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +35 -0
- package/README.md +122 -0
- package/bin/gybackend.js +367260 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rterm-backend",
|
|
3
|
+
"version": "1.9.0",
|
|
4
|
+
"description": "RTerm headless backend — run RTerm-as-a-service (AI agent, SSH/WinRM/Serial/local terminals, fleet orchestration, scheduled automation) and drive it over a WebSocket JSON-RPC gateway. No desktop UI required.",
|
|
5
|
+
"license": "CC-BY-NC-4.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"gybackend": "bin/gybackend.js"
|
|
9
|
+
},
|
|
10
|
+
"main": "bin/gybackend.js",
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE.md"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
},
|
|
19
|
+
"os": [
|
|
20
|
+
"darwin",
|
|
21
|
+
"linux",
|
|
22
|
+
"win32"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"better-sqlite3": "^12.11.1",
|
|
26
|
+
"cpu-features": "^0.0.10",
|
|
27
|
+
"node-pty": "^1.2.0-beta.3",
|
|
28
|
+
"ssh2": "^1.17.0",
|
|
29
|
+
"tree-sitter-bash": "^0.25.1",
|
|
30
|
+
"web-tree-sitter": "^0.26.3"
|
|
31
|
+
},
|
|
32
|
+
"optionalDependencies": {
|
|
33
|
+
"serialport": "^13.0.0"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"rterm",
|
|
37
|
+
"terminal",
|
|
38
|
+
"ssh",
|
|
39
|
+
"winrm",
|
|
40
|
+
"serial",
|
|
41
|
+
"ai-agent",
|
|
42
|
+
"llm",
|
|
43
|
+
"devops",
|
|
44
|
+
"fleet",
|
|
45
|
+
"automation",
|
|
46
|
+
"headless",
|
|
47
|
+
"backend",
|
|
48
|
+
"websocket",
|
|
49
|
+
"rpc",
|
|
50
|
+
"rundeck",
|
|
51
|
+
"ansible"
|
|
52
|
+
],
|
|
53
|
+
"author": "Hyperspace Technologies <rterm@hyperspace.ng>",
|
|
54
|
+
"homepage": "https://github.com/DrOlu/RTerm",
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "git+https://github.com/DrOlu/RTerm.git"
|
|
58
|
+
},
|
|
59
|
+
"bugs": "https://github.com/DrOlu/RTerm/issues"
|
|
60
|
+
}
|