9remote 2.1.21 → 2.2.4

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.
@@ -1330,8 +1330,8 @@ button {
1330
1330
  .w-\[10px\]{
1331
1331
  width: 10px;
1332
1332
  }
1333
- .w-\[264px\]{
1334
- width: 264px;
1333
+ .w-\[232px\]{
1334
+ width: 232px;
1335
1335
  }
1336
1336
  .w-\[46px\]{
1337
1337
  width: 46px;
@@ -2636,9 +2636,6 @@ button {
2636
2636
  .md\:hidden{
2637
2637
  display: none;
2638
2638
  }
2639
- .md\:grid-cols-\[1fr_1\.7fr\]{
2640
- grid-template-columns: 1fr 1.7fr;
2641
- }
2642
2639
  }
2643
2640
  @media (min-width: 1024px){
2644
2641
  .lg\:block{
@@ -2647,6 +2644,9 @@ button {
2647
2644
  .lg\:grid-cols-4{
2648
2645
  grid-template-columns: repeat(4, minmax(0, 1fr));
2649
2646
  }
2647
+ .lg\:grid-cols-\[minmax\(300px\2c 1fr\)_1\.7fr\]{
2648
+ grid-template-columns: minmax(300px,1fr) 1.7fr;
2649
+ }
2650
2650
  .lg\:px-10{
2651
2651
  padding-left: 2.5rem;
2652
2652
  padding-right: 2.5rem;
@@ -2660,6 +2660,9 @@ button {
2660
2660
  }
2661
2661
  }
2662
2662
  @media (min-width: 1280px){
2663
+ .xl\:w-\[264px\]{
2664
+ width: 264px;
2665
+ }
2663
2666
  .xl\:grid-cols-5{
2664
2667
  grid-template-columns: repeat(5, minmax(0, 1fr));
2665
2668
  }
@@ -14,8 +14,8 @@
14
14
  const savedTheme = localStorage.getItem("9remote-theme") || "dark";
15
15
  document.documentElement.setAttribute("data-theme", savedTheme);
16
16
  </script>
17
- <script type="module" crossorigin src="/assets/index-BRA8JHNZ.js"></script>
18
- <link rel="stylesheet" crossorigin href="/assets/index-Cq9ojg5L.css">
17
+ <script type="module" crossorigin src="/assets/index-DviNN66Q.js"></script>
18
+ <link rel="stylesheet" crossorigin href="/assets/index-ulRsGAYR.css">
19
19
  </head>
20
20
  <body>
21
21
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "9remote",
3
- "version": "2.1.21",
3
+ "version": "2.2.4",
4
4
  "type": "module",
5
5
  "description": "Remote terminal access from anywhere",
6
6
  "main": "dist/server.cjs",
@@ -15,6 +15,8 @@
15
15
  "dev:vite": "vite",
16
16
  "dev:vite:wait": "wait-on http://localhost:2208/api/health && vite",
17
17
  "dev:ui:run": "NODE_ENV=development node cli/index.js ui",
18
+ "dev:ui:start": "npm-run-all --parallel dev:ui:run:start dev:vite:wait",
19
+ "dev:ui:run:start": "NODE_ENV=development node cli/index.js ui --start",
18
20
  "build:ui": "vite build",
19
21
  "postinstall": "node dist/install.cjs || true"
20
22
  },
@@ -29,16 +31,17 @@
29
31
  ],
30
32
  "license": "MIT",
31
33
  "dependencies": {
32
- "@julusian/jpeg-turbo": "^3.0.1",
33
34
  "@xterm/addon-fit": "^0.11.0",
34
35
  "@xterm/addon-unicode11": "^0.9.0",
35
36
  "@xterm/xterm": "^6.0.0",
37
+ "archiver": "^5.3.2",
36
38
  "bufferutil": "4.1.0",
37
39
  "chalk": "^5.4.1",
38
40
  "chokidar": "^3.6.0",
39
41
  "edge-tts-node": "^1.5.7",
40
42
  "http-proxy": "^1.18.1",
41
43
  "inquirer": "^9.3.8",
44
+ "koffi": "^2.16.3",
42
45
  "multicast-dns": "^7.2.5",
43
46
  "node-machine-id": "^1.1.12",
44
47
  "node-screenshots": "^0.2.8",
@@ -54,7 +57,6 @@
54
57
  },
55
58
  "optionalDependencies": {
56
59
  "@hurdlegroup/robotjs": "^0.12.1",
57
- "@julusian/jpeg-turbo": "3.0.1",
58
60
  "node-datachannel": "0.32.3",
59
61
  "node-pty": "1.2.0-beta.12"
60
62
  },