@ebowwa/terminal 0.3.5 → 0.3.6
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/dist/index.d.ts +14 -0
- package/package.json +19 -53
package/dist/index.d.ts
CHANGED
|
@@ -19,3 +19,17 @@ export { generateLocalSessionName, isLocalTmuxInstalled, listLocalSessions, hasL
|
|
|
19
19
|
export { RESOURCE_COMMANDS } from "./resources.js";
|
|
20
20
|
export type { ResourceCommand } from "./resources.js";
|
|
21
21
|
export { detectNetworkError, formatNetworkError, type NetworkErrorDetails, } from "./network-error-detector.js";
|
|
22
|
+
|
|
23
|
+
// SSH Config management
|
|
24
|
+
export {
|
|
25
|
+
addSSHConfigEntry,
|
|
26
|
+
removeSSHConfigEntry,
|
|
27
|
+
updateSSHConfigHost,
|
|
28
|
+
listSSHConfigEntries,
|
|
29
|
+
validateSSHConnection,
|
|
30
|
+
ensureCorrectSSHKey,
|
|
31
|
+
waitForSSHReady,
|
|
32
|
+
syncNodesToSSHConfig,
|
|
33
|
+
type SSHConfigEntry,
|
|
34
|
+
type SyncResult,
|
|
35
|
+
} from "./config.js";
|
package/package.json
CHANGED
|
@@ -1,63 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebowwa/terminal",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "Terminal session management with tmux integration, SSH client, WebSocket support, and MCP interface",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
"./mcp": {
|
|
14
|
-
"types": "./dist/mcp/index.d.ts",
|
|
15
|
-
"default": "./dist/mcp/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./types": {
|
|
18
|
-
"types": "./dist/types.d.ts",
|
|
19
|
-
"default": "./dist/types.d.ts"
|
|
20
|
-
}
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
21
12
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"license": "MIT",
|
|
39
|
-
"homepage": "https://github.com/ebowwa/terminal#readme",
|
|
40
|
-
"repository": {
|
|
41
|
-
"type": "git",
|
|
42
|
-
"url": "git+https://github.com/ebowwa/terminal.git",
|
|
43
|
-
"directory": "/"
|
|
44
|
-
},
|
|
45
|
-
"bugs": {
|
|
46
|
-
"url": "https://github.com/ebowwa/terminal/issues"
|
|
47
|
-
},
|
|
48
|
-
"engines": {
|
|
49
|
-
"node": ">=18.0.0"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@ebowwa/codespaces-types": "^1.4.0",
|
|
53
|
-
"@ebowwa/ssh": "^0.2.1",
|
|
54
|
-
"node-ssh": "^13.2.1",
|
|
55
|
-
"hono": "^4.11.3",
|
|
56
|
-
"zod": "^3.24.1"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@types/bun": "latest",
|
|
60
|
-
"@types/node-ssh": "^11.0.0",
|
|
61
|
-
"typescript": "^5.9.3"
|
|
62
|
-
}
|
|
13
|
+
"./mcp": {
|
|
14
|
+
"types": "./dist/mcp/index.d.ts",
|
|
15
|
+
"default": "./dist/mcp/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./types": {
|
|
18
|
+
"types": "./dist/types.d.ts",
|
|
19
|
+
"default": "./dist/types.d.ts"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": ["dist"],
|
|
23
|
+
"keywords": ["terminal", "tmux", "ssh", "mcp"],
|
|
24
|
+
"author": "Ebowwa Labs <labs@ebowwa.com>",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"zod": "^3.24.1"
|
|
28
|
+
}
|
|
63
29
|
}
|