deskssh 0.0.2 → 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.
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>DeskSSH</title>
7
+ <script type="module" crossorigin src="/assets/index-D17lV7-E.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-Bf6XF_tt.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "deskssh",
3
- "version": "0.0.2",
4
- "description": "A graphical desktop over plain SSH. Early development not yet functional.",
3
+ "version": "0.1.0",
4
+ "description": "A graphical desktop over plain SSH run it locally and manage your servers from the browser.",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "type": "module",
7
7
  "bin": {
@@ -9,6 +9,7 @@
9
9
  },
10
10
  "files": [
11
11
  "bin",
12
+ "dist",
12
13
  "README.md"
13
14
  ],
14
15
  "keywords": [
@@ -32,6 +33,15 @@
32
33
  "node": ">=20"
33
34
  },
34
35
  "scripts": {
35
- "build": "true"
36
+ "build": "true",
37
+ "bundle": "node build.mjs",
38
+ "prepack": "node build.mjs"
39
+ },
40
+ "dependencies": {
41
+ "ssh2": "^1.15.0",
42
+ "ws": "^8.21.0"
43
+ },
44
+ "devDependencies": {
45
+ "esbuild": "^0.28.1"
36
46
  }
37
47
  }