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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "9remote",
3
- "version": "0.1.46",
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
- "dev": "node index.js --auto",
13
- "build": "node ../scripts/buildPkg.js",
14
- "postinstall": "node scripts/install.js || true"
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
- "qrcode-terminal": "^0.12.0",
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
- "http-proxy": "^1.18.1"
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
- "sharp": "^0.33.5",
29
- "node-datachannel": "^0.32.1"
49
+ "node-pty": "^1.2.0-beta.7"
30
50
  },
31
- "files": [
32
- "dist/",
33
- "utils/",
34
- "scripts/"
35
- ],
36
- "keywords": [
37
- "remote",
38
- "terminal",
39
- "ssh",
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