nikcli-remote 1.0.8 → 1.0.9
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/{chunk-FYVPBMXV.js → chunk-3IFHAOGG.js} +588 -231
- package/dist/index.cjs +587 -230
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/{server-OYMSDTRP.js → server-MBJQBTJF.js} +1 -1
- package/package.json +1 -1
- package/src/web-client.ts +593 -236
package/dist/index.d.cts
CHANGED
|
@@ -284,8 +284,8 @@ declare class TerminalManager extends EventEmitter {
|
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
/**
|
|
287
|
-
* @nikcli/remote -
|
|
288
|
-
*
|
|
287
|
+
* @nikcli/remote - Mobile Web Client
|
|
288
|
+
* Touch-friendly terminal interface for mobile devices
|
|
289
289
|
*/
|
|
290
290
|
declare function getWebClient(): string;
|
|
291
291
|
|
package/dist/index.d.ts
CHANGED
|
@@ -284,8 +284,8 @@ declare class TerminalManager extends EventEmitter {
|
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
/**
|
|
287
|
-
* @nikcli/remote -
|
|
288
|
-
*
|
|
287
|
+
* @nikcli/remote - Mobile Web Client
|
|
288
|
+
* Touch-friendly terminal interface for mobile devices
|
|
289
289
|
*/
|
|
290
290
|
declare function getWebClient(): string;
|
|
291
291
|
|
package/dist/index.js
CHANGED
|
@@ -4,12 +4,12 @@ import {
|
|
|
4
4
|
RemoteServer,
|
|
5
5
|
TerminalManager,
|
|
6
6
|
getWebClient
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-3IFHAOGG.js";
|
|
8
8
|
import "./chunk-MCKGQKYU.js";
|
|
9
9
|
|
|
10
10
|
// src/index.ts
|
|
11
11
|
async function createRemoteServer(config = {}) {
|
|
12
|
-
const { RemoteServer: RemoteServer2 } = await import("./server-
|
|
12
|
+
const { RemoteServer: RemoteServer2 } = await import("./server-MBJQBTJF.js");
|
|
13
13
|
const server = new RemoteServer2(config);
|
|
14
14
|
const session = await server.start();
|
|
15
15
|
return { server, session };
|