@keeroklab/cli 0.4.0 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keeroklab/cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.1",
4
4
  "description": "CLI wrapper for Keerok Lab — live Claude Code supervision",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
+ "@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
34
35
  "chalk": "^5.3.0",
35
36
  "commander": "^12.0.0",
36
- "node-pty": "^1.1.0",
37
37
  "ws": "^8.16.0"
38
38
  },
39
39
  "engines": {
@@ -3,7 +3,7 @@
3
3
  * Uses node-pty so interactive TUI apps (like claude) work properly.
4
4
  */
5
5
 
6
- import pty from 'node-pty';
6
+ import pty from '@homebridge/node-pty-prebuilt-multiarch';
7
7
  import os from 'os';
8
8
 
9
9
  export function spawnPty(command, handlers) {
@@ -19,7 +19,10 @@ export function spawnPty(command, handlers) {
19
19
  env: {
20
20
  ...process.env,
21
21
  FORCE_COLOR: '1',
22
+ LANG: process.env.LANG || 'en_US.UTF-8',
23
+ LC_ALL: process.env.LC_ALL || 'en_US.UTF-8',
22
24
  },
25
+ encoding: 'utf-8',
23
26
  });
24
27
 
25
28
  // Forward PTY output to both local terminal and handler