zerogterm 0.2.0-alpha.2 → 0.3.0-alpha.1
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/dist/main/main/session-service.js +13 -5
- package/dist/main/main/ssh-inventory.js +4 -1
- package/dist/renderer/assets/index-Cs9gfbAs.js +17 -0
- package/dist/renderer/assets/{voice-worker-Bde9NFkO.js → voice-worker-DWb1dVxY.js} +6 -6
- package/dist/renderer/index.html +1 -1
- package/package.json +6 -2
- package/dist/renderer/assets/index-BWVjX0UX.js +0 -17
package/dist/renderer/index.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script type="module" crossorigin src="./assets/index-
|
|
1
|
+
<script type="module" crossorigin src="./assets/index-Cs9gfbAs.js"></script>
|
|
2
2
|
<link rel="stylesheet" crossorigin href="./assets/index-5pgRaxBt.css">
|
|
3
3
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' blob: 'wasm-unsafe-eval'; worker-src 'self' blob:; connect-src 'self' https://huggingface.co https://cdn-lfs.huggingface.co; font-src 'self' data:;">
|
|
4
4
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zerogterm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-alpha.1",
|
|
4
4
|
"description": "A Linux-first persistent Electron terminal workspace",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Stephen Phillips",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"main": "dist/main/main/main.js",
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "concurrently -k \"tsc -p tsconfig.main.json --watch\" \"vite --host 127.0.0.1\"",
|
|
37
|
-
"build": "
|
|
37
|
+
"build": "node scripts/build-main.mjs clean && tsc -p tsconfig.main.json && node scripts/build-main.mjs preload && vite build",
|
|
38
38
|
"test": "vitest run --pool=threads",
|
|
39
39
|
"typecheck": "tsc -p tsconfig.main.json --noEmit && tsc -p tsconfig.renderer.json --noEmit",
|
|
40
40
|
"start": "electron .",
|
|
@@ -59,5 +59,9 @@
|
|
|
59
59
|
"vite": "^7.3.6",
|
|
60
60
|
"vitest": "^3.2.7",
|
|
61
61
|
"wait-on": "^8.0.5"
|
|
62
|
+
},
|
|
63
|
+
"overrides": {
|
|
64
|
+
"adm-zip": "^0.6.0",
|
|
65
|
+
"sharp": "^0.35.3"
|
|
62
66
|
}
|
|
63
67
|
}
|