9remote 0.1.46 → 0.1.49
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/cli/index.js +848 -0
- package/dist/cli.cjs +57 -56
- package/dist/server.cjs +53 -50
- package/dist/ui/assets/index-CWkDNGlQ.js +8 -0
- package/dist/ui/assets/index-dbQMrYNp.css +1 -0
- package/dist/ui/index.html +17 -0
- package/index.js +374 -618
- package/package.json +39 -22
- /package/{scripts → cli/scripts}/install.js +0 -0
- /package/{utils → cli/utils}/apiKey.js +0 -0
- /package/{utils → cli/utils}/cloudflared.js +0 -0
- /package/{utils → cli/utils}/machineId.js +0 -0
- /package/{utils → cli/utils}/state.js +0 -0
- /package/{utils → cli/utils}/token.js +0 -0
- /package/{utils → cli/utils}/updateChecker.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "9remote",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Remote terminal access from anywhere",
|
|
6
6
|
"main": "index.js",
|
|
@@ -8,36 +8,53 @@
|
|
|
8
8
|
"9remote": "./dist/cli.cjs"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "node index.js",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
11
|
+
"start": "node cli/index.js",
|
|
12
|
+
"ui": "node cli/index.js ui",
|
|
13
|
+
"dev": "NODE_ENV=development nodemon cli/index.js",
|
|
14
|
+
"dev:ui": "npm-run-all --parallel dev:vite dev:ui:run",
|
|
15
|
+
"dev:vite": "vite",
|
|
16
|
+
"dev:ui:run": "node cli/index.js ui",
|
|
17
|
+
"build:ui": "vite build",
|
|
18
|
+
"postinstall": "node cli/scripts/install.js || true"
|
|
15
19
|
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist/",
|
|
22
|
+
"cli/"
|
|
23
|
+
],
|
|
24
|
+
"keywords": [
|
|
25
|
+
"remote",
|
|
26
|
+
"terminal",
|
|
27
|
+
"ssh",
|
|
28
|
+
"cli"
|
|
29
|
+
],
|
|
30
|
+
"license": "MIT",
|
|
16
31
|
"dependencies": {
|
|
32
|
+
"bufferutil": "^4.1.0",
|
|
17
33
|
"chalk": "^5.4.1",
|
|
34
|
+
"http-proxy": "^1.18.1",
|
|
18
35
|
"inquirer": "^9.3.8",
|
|
19
|
-
"
|
|
36
|
+
"node-datachannel": "^0.32.1",
|
|
20
37
|
"node-machine-id": "^1.1.12",
|
|
21
38
|
"ora": "^8.1.1",
|
|
39
|
+
"preact": "^10.26.2",
|
|
40
|
+
"qrcode": "^1.5.4",
|
|
41
|
+
"qrcode-terminal": "^0.12.0",
|
|
42
|
+
"sharp": "^0.33.5",
|
|
22
43
|
"socket.io": "^4.8.3",
|
|
23
|
-
"
|
|
44
|
+
"utf-8-validate": "^6.0.6",
|
|
45
|
+
"web-push": "^3.6.7"
|
|
24
46
|
},
|
|
25
47
|
"optionalDependencies": {
|
|
26
|
-
"node-pty": "^1.2.0-beta.7",
|
|
27
48
|
"@hurdlegroup/robotjs": "^0.12.1",
|
|
28
|
-
"
|
|
29
|
-
"node-datachannel": "^0.32.1"
|
|
49
|
+
"node-pty": "^1.2.0-beta.7"
|
|
30
50
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
"cli"
|
|
41
|
-
],
|
|
42
|
-
"license": "MIT"
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@preact/preset-vite": "^2.9.5",
|
|
53
|
+
"autoprefixer": "^10.4.21",
|
|
54
|
+
"nodemon": "^3.1.11",
|
|
55
|
+
"npm-run-all": "^4.1.5",
|
|
56
|
+
"postcss": "^8.5.3",
|
|
57
|
+
"tailwindcss": "^3.4.17",
|
|
58
|
+
"vite": "^6.2.2"
|
|
59
|
+
}
|
|
43
60
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|