@mentiko/pty-mgr 1.2.3
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/README.md +206 -0
- package/bin/pty-mgr +71 -0
- package/lib/pty-manager.mjs +2105 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mentiko/pty-mgr",
|
|
3
|
+
"version": "1.2.3",
|
|
4
|
+
"description": "PTY session manager with terminal emulation for programmatic session control.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/pty-manager.mjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./lib/pty-manager.mjs"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"pty-mgr": "bin/pty-mgr",
|
|
14
|
+
"p": "bin/pty-mgr"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "bun test",
|
|
18
|
+
"demo": "bun bin/pty-mgr.mjs demo",
|
|
19
|
+
"build": "node scripts/build.cjs",
|
|
20
|
+
"build:all": "node scripts/build.cjs --all",
|
|
21
|
+
"install-local": "node scripts/build.cjs && cp dist/pty-mgr ~/.pty-mgr/bin/pty-mgr && codesign --force --sign - ~/.pty-mgr/bin/pty-mgr",
|
|
22
|
+
"version:sync": "node scripts/version-sync.cjs"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@xterm/addon-serialize": "^0.14.0",
|
|
26
|
+
"@xterm/headless": "^6.0.0"
|
|
27
|
+
},
|
|
28
|
+
"optionalDependencies": {
|
|
29
|
+
"@mentiko/pty-mgr-linux-x64": "1.2.3",
|
|
30
|
+
"@mentiko/pty-mgr-linux-arm64": "1.2.3",
|
|
31
|
+
"@mentiko/pty-mgr-darwin-x64": "1.2.3",
|
|
32
|
+
"@mentiko/pty-mgr-darwin-arm64": "1.2.3"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"bun": ">=1.0"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"bin/pty-mgr",
|
|
39
|
+
"lib/",
|
|
40
|
+
"README.md",
|
|
41
|
+
"LICENSE"
|
|
42
|
+
],
|
|
43
|
+
"keywords": [
|
|
44
|
+
"pty",
|
|
45
|
+
"terminal",
|
|
46
|
+
"session",
|
|
47
|
+
"agent",
|
|
48
|
+
"orchestration"
|
|
49
|
+
],
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/kollaborai/pty-mgr.git"
|
|
53
|
+
},
|
|
54
|
+
"license": "MIT"
|
|
55
|
+
}
|