remote-dsh 0.1.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 +21 -0
- package/README.md +14 -0
- package/dist/bin.js +11 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +10 -0
- package/package.json +28 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Liming Xie
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# rdsh
|
|
2
|
+
|
|
3
|
+
Secure remote access for [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness).
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g rdsh
|
|
7
|
+
rdsh serve # LAN auth gateway in front of dsh web (M1 MVP)
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
> **v0.1.0** is a name-reservation skeleton. Commands land with the M1 MVP.
|
|
11
|
+
|
|
12
|
+
## License
|
|
13
|
+
|
|
14
|
+
MIT — see [LICENSE](LICENSE). Brand assets are excluded (see project NOTICE).
|
package/dist/bin.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* rdsh CLI entry.
|
|
4
|
+
*
|
|
5
|
+
* Command tree (MVP → M2):
|
|
6
|
+
* rdsh serve # LAN auth gateway mode (spawns dsh web)
|
|
7
|
+
* rdsh join <hub> # public mode: pair + outbound tunnel (M2)
|
|
8
|
+
* rdsh hub ... # hub server commands (prototype phase, TS)
|
|
9
|
+
* rdsh status # local gateway status
|
|
10
|
+
*/
|
|
11
|
+
console.log("rdsh 0.1.0 (skeleton) — commands land with M1 MVP");
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* rdsh — secure remote access for DeepSeek Harness.
|
|
3
|
+
*
|
|
4
|
+
* v0.1.0 is a name-reservation skeleton; commands land with the M1 MVP.
|
|
5
|
+
* (Hand-built dist for the reservation release; replaced by tsc output from M1.)
|
|
6
|
+
*/
|
|
7
|
+
export const NAME = "rdsh";
|
|
8
|
+
export const VERSION = "0.1.0";
|
|
9
|
+
export const DESCRIPTION =
|
|
10
|
+
"Secure remote access for DeepSeek Harness: rdsh serve / rdsh join / rdsh hub";
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "remote-dsh",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Secure remote access for DeepSeek Harness: rdsh serve / rdsh join / rdsh hub",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"rdsh": "dist/bin.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=22"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc -p tsconfig.json",
|
|
26
|
+
"test": "node --test test/"
|
|
27
|
+
}
|
|
28
|
+
}
|