remote-dsh 0.4.0 → 0.4.1
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 +2 -7
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* rdsh — secure remote access for DeepSeek Harness.
|
|
3
|
-
*
|
|
4
|
-
* This package is the unified CLI (`rdsh serve` / `rdsh join` / `rdsh hub`).
|
|
5
|
-
* v0.1.0 is a name-reservation skeleton; commands land with the M1 MVP.
|
|
6
|
-
*/
|
|
7
1
|
export declare const NAME = "rdsh";
|
|
8
|
-
|
|
2
|
+
/** 版本单一来源:package.json(发布时 --version 与包版本一致,避免硬编码漏同步)。 */
|
|
3
|
+
export declare const VERSION: string;
|
|
9
4
|
export declare const DESCRIPTION = "Secure remote access for DeepSeek Harness: rdsh serve / rdsh join / rdsh hub";
|
package/dist/index.js
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
* rdsh — secure remote access for DeepSeek Harness.
|
|
3
3
|
*
|
|
4
4
|
* This package is the unified CLI (`rdsh serve` / `rdsh join` / `rdsh hub`).
|
|
5
|
-
* v0.1.0
|
|
5
|
+
* v0.1.0 was a name-reservation skeleton; commands land with M1/M2/M3.
|
|
6
6
|
*/
|
|
7
|
+
import { readFileSync } from "node:fs";
|
|
7
8
|
export const NAME = "rdsh";
|
|
8
|
-
|
|
9
|
+
/** 版本单一来源:package.json(发布时 --version 与包版本一致,避免硬编码漏同步)。 */
|
|
10
|
+
export const VERSION = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8")).version;
|
|
9
11
|
export const DESCRIPTION = "Secure remote access for DeepSeek Harness: rdsh serve / rdsh join / rdsh hub";
|
|
10
12
|
//# sourceMappingURL=index.js.map
|