@camstack/addon-terminal 0.1.7 → 0.1.8
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/addon.js +4768 -1131
- package/dist/addon.mjs +4748 -1132
- package/dist/index.mjs +1 -1
- package/package.json +5 -4
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TerminalAddon, a as
|
|
1
|
+
import { TerminalAddon, a as createXtermScreen, i as createTerminalDataPlaneHandler, n as buildProfiles, o as createNodePtySpawner, r as findProfile, s as warmNodePty, t as TerminalSessionManager } from "./addon.mjs";
|
|
2
2
|
export { TerminalAddon, TerminalAddon as default, TerminalSessionManager, buildProfiles, createNodePtySpawner, createTerminalDataPlaneHandler, createXtermScreen, findProfile, warmNodePty };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-terminal",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Interactive terminal sessions (pty + xterm) as a CamStack addon",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"category": "system",
|
|
35
35
|
"name": "Terminal",
|
|
36
36
|
"version": "0.1.0",
|
|
37
|
-
"description": "Interactive terminal sessions
|
|
37
|
+
"description": "Interactive terminal sessions on any cluster node, plus one virtual Terminal camera per node. Commands remain bound to administrator-configured profiles.",
|
|
38
38
|
"entry": "./dist/index.js",
|
|
39
39
|
"icon": "assets/icon.svg",
|
|
40
40
|
"color": "#0ea5e9",
|
|
41
41
|
"instanceMode": "unique",
|
|
42
42
|
"mode": "standalone",
|
|
43
43
|
"execution": {
|
|
44
|
-
"placement": "
|
|
44
|
+
"placement": "any-node"
|
|
45
45
|
},
|
|
46
46
|
"capabilities": [
|
|
47
47
|
{
|
|
@@ -64,7 +64,8 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@xterm/addon-serialize": "^0.13.0",
|
|
67
|
-
"@xterm/headless": "^5.5.0"
|
|
67
|
+
"@xterm/headless": "^5.5.0",
|
|
68
|
+
"sharp": "^0.35.2"
|
|
68
69
|
},
|
|
69
70
|
"optionalDependencies": {
|
|
70
71
|
"node-pty": "^1.0.0"
|