claude-live 0.4.2 → 0.4.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.
@@ -4,15 +4,13 @@
4
4
  "name": "marisancans"
5
5
  },
6
6
  "metadata": {
7
- "description": "Realtime solar system visualizer for Claude Code sessions",
8
- "version": "0.4.2"
7
+ "description": "Realtime solar system visualizer for Claude Code sessions"
9
8
  },
10
9
  "plugins": [
11
10
  {
12
11
  "name": "claude-live",
13
12
  "source": "./",
14
13
  "description": "Watch your Claude Code sessions rendered as a living solar system. Files orbit as planets, operations fire directional lasers, parallel sessions glow as separate star clusters.",
15
- "version": "0.4.2",
16
14
  "author": {
17
15
  "name": "marisancans"
18
16
  },
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "name": "claude-live",
3
- "version": "0.4.2",
4
3
  "description": "Realtime solar system visualizer for Claude Code sessions",
5
4
  "author": {
6
5
  "name": "marisancans"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-live",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Realtime Claude Code activity visualizer",
5
5
  "bin": {
6
6
  "claude-live": "./bin/claude-live.js"
@@ -10,8 +10,7 @@
10
10
  "build": "cd client && vite build",
11
11
  "start": "node server/index.js",
12
12
  "test": "vitest run",
13
- "sync-versions": "node scripts/sync-plugin-version.js",
14
- "prepublishOnly": "npm run sync-versions && npm run build"
13
+ "prepublishOnly": "npm run build"
15
14
  },
16
15
  "dependencies": {
17
16
  "express": "^4.18.2",
@@ -1,32 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import { readFileSync, writeFileSync } from 'fs';
4
- import { resolve } from 'path';
5
- import { fileURLToPath } from 'url';
6
-
7
- const __dirname = resolve(fileURLToPath(import.meta.url), '..');
8
-
9
- const packagePath = resolve(__dirname, '../package.json');
10
- const pluginJsonPath = resolve(__dirname, '../.claude-plugin/plugin.json');
11
- const marketplaceJsonPath = resolve(__dirname, '../.claude-plugin/marketplace.json');
12
-
13
- // Read package.json to get the version
14
- const packageJson = JSON.parse(readFileSync(packagePath, 'utf8'));
15
- const version = packageJson.version;
16
-
17
- console.log(`Syncing plugin versions to ${version}...`);
18
-
19
- // Update plugin.json
20
- const pluginJson = JSON.parse(readFileSync(pluginJsonPath, 'utf8'));
21
- pluginJson.version = version;
22
- writeFileSync(pluginJsonPath, JSON.stringify(pluginJson, null, 2) + '\n');
23
- console.log(`✓ Updated .claude-plugin/plugin.json`);
24
-
25
- // Update marketplace.json
26
- const marketplaceJson = JSON.parse(readFileSync(marketplaceJsonPath, 'utf8'));
27
- marketplaceJson.metadata.version = version;
28
- marketplaceJson.plugins[0].version = version;
29
- writeFileSync(marketplaceJsonPath, JSON.stringify(marketplaceJson, null, 2) + '\n');
30
- console.log(`✓ Updated .claude-plugin/marketplace.json`);
31
-
32
- console.log(`Done! Plugin versions are now ${version}`);