claudeup 3.6.1 → 3.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudeup",
3
- "version": "3.6.1",
3
+ "version": "3.6.3",
4
4
  "description": "TUI tool for managing Claude Code plugins, MCPs, and configuration",
5
5
  "type": "module",
6
6
  "main": "src/main.tsx",
package/src/main.js CHANGED
@@ -3,10 +3,13 @@ import { jsx as _jsx } from "@opentui/react/jsx-runtime";
3
3
  import { createCliRenderer } from "@opentui/core";
4
4
  import { createRoot } from "@opentui/react";
5
5
  import { spawn } from "node:child_process";
6
+ import { createRequire } from "node:module";
6
7
  import { App } from "./ui/App.js";
7
8
  import { prerunClaude } from "./prerunner/index.js";
8
9
  import { checkForUpdates } from "./services/version-check.js";
9
- export const VERSION = "3.0.0";
10
+ const require = createRequire(import.meta.url);
11
+ const pkg = require("../package.json");
12
+ export const VERSION = pkg.version;
10
13
  // Note: OpenTUI renderer handles alternate screen buffer automatically
11
14
  // No need for manual ANSI escape codes
12
15
  async function main() {
package/src/main.tsx CHANGED
@@ -3,11 +3,14 @@
3
3
  import { createCliRenderer } from "@opentui/core";
4
4
  import { createRoot } from "@opentui/react";
5
5
  import { spawn } from "node:child_process";
6
+ import { createRequire } from "node:module";
6
7
  import { App } from "./ui/App.js";
7
8
  import { prerunClaude } from "./prerunner/index.js";
8
9
  import { checkForUpdates } from "./services/version-check.js";
9
10
 
10
- export const VERSION = "3.0.0";
11
+ const require = createRequire(import.meta.url);
12
+ const pkg = require("../package.json") as { version: string };
13
+ export const VERSION = pkg.version;
11
14
 
12
15
  // Note: OpenTUI renderer handles alternate screen buffer automatically
13
16
  // No need for manual ANSI escape codes
@@ -50,7 +50,7 @@ export function ModalContainer() {
50
50
  return null;
51
51
  }
52
52
  };
53
- // Center the modal on screen with opaque backdrop
54
- return (_jsx("box", { position: "absolute", width: "100%", height: "100%", justifyContent: "center", alignItems: "center", backgroundColor: "#1a1a2e", children: renderModal() }));
53
+ // Center the modal on screen
54
+ return (_jsx("box", { position: "absolute", width: "100%", height: "100%", justifyContent: "center", alignItems: "center", children: renderModal() }));
55
55
  }
56
56
  export default ModalContainer;
@@ -87,7 +87,7 @@ export function ModalContainer() {
87
87
  }
88
88
  };
89
89
 
90
- // Center the modal on screen with opaque backdrop
90
+ // Center the modal on screen
91
91
  return (
92
92
  <box
93
93
  position="absolute"
@@ -95,7 +95,6 @@ export function ModalContainer() {
95
95
  height="100%"
96
96
  justifyContent="center"
97
97
  alignItems="center"
98
- backgroundColor="#1a1a2e"
99
98
  >
100
99
  {renderModal()}
101
100
  </box>