@jhizzard/termdeck 1.3.0 → 1.5.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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TermDeck
2
2
 
3
- [![Install Smoke](https://github.com/jhizzard/termdeck/workflows/install-smoke/badge.svg)](https://github.com/jhizzard/termdeck/actions/workflows/install-smoke.yml)
3
+ [![CI](https://github.com/jhizzard/termdeck/actions/workflows/ci.yml/badge.svg)](https://github.com/jhizzard/termdeck/actions/workflows/ci.yml)
4
4
 
5
5
  > **The terminal that remembers what you fixed last month.**
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jhizzard/termdeck",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Browser-based terminal multiplexer with metadata overlays, panel flashback memory recall, and AI-aware session management",
5
5
  "bin": {
6
6
  "termdeck": "./packages/cli/src/index.js"
@@ -39,15 +39,13 @@
39
39
  "@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
40
40
  "better-sqlite3": "^12.9.0",
41
41
  "chalk": "^5.3.0",
42
- "express": "^4.18.2",
43
- "open": "^10.0.0",
42
+ "express": "^5.2.1",
44
43
  "pg": "^8.20.0",
45
- "uuid": "^13.0.0",
46
44
  "ws": "^8.16.0",
47
45
  "yaml": "^2.3.4"
48
46
  },
49
47
  "devDependencies": {
50
- "@anthropic-ai/sdk": "^0.39.0"
48
+ "@anthropic-ai/sdk": "^0.96.0"
51
49
  },
52
50
  "keywords": [
53
51
  "terminal",
@@ -164,8 +164,8 @@ function reclaimStalePort(port) {
164
164
  try { process.kill(parseInt(pid, 10), 'SIGKILL'); } catch (_e) {}
165
165
  }
166
166
  } else {
167
- console.error(`\n \x1b[31m✗ Port ${port} is in use by a non-TermDeck process (PIDs: ${pids.join(' ')})\x1b[0m`);
168
- console.error(` \x1b[2mTry a different port: termdeck --port ${port + 1}\x1b[0m\n`);
167
+ process.stderr.write(`\n \x1b[31m✗ Port ${port} is in use by a non-TermDeck process (PIDs: ${pids.join(' ')})\x1b[0m\n`);
168
+ process.stderr.write(` \x1b[2mTry a different port: termdeck --port ${port + 1}\x1b[0m\n\n`);
169
169
  process.exit(1);
170
170
  }
171
171
  }