@ebowwa/terminal 0.3.5 → 0.3.7

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +14 -0
  2. package/package.json +4 -2
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebowwa/terminal",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
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",
@@ -19,7 +19,9 @@
19
19
  "default": "./dist/types.d.ts"
20
20
  }
21
21
  },
22
- "scripts": {},
22
+ "scripts": {
23
+ "build": "bun build src/index.ts --outdir dist --target bun --external 'node-ssh' --external 'hono' --external 'zod' --external 'node:*' && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external 'node-ssh' --external 'hono' --external 'zod' --external 'node:*' --external '@modelcontextprotocol/*'"
24
+ },
23
25
  "files": [
24
26
  "dist"
25
27
  ],