vibepulse 0.1.0 → 0.1.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/README.md CHANGED
@@ -37,10 +37,12 @@ Real-time dashboard for monitoring and managing OpenCode sessions.
37
37
 
38
38
  ## Getting Started
39
39
 
40
- ### Quick Start (npx)
40
+ ### Quick Start (npx - Recommended)
41
+
42
+ The fastest way to run VibePulse without installation:
41
43
 
42
44
  ```bash
43
- # Run directly without installing
45
+ # Run directly with npx
44
46
  npx vibepulse
45
47
 
46
48
  # Or specify a custom port
@@ -49,13 +51,34 @@ PORT=8080 npx vibepulse
49
51
 
50
52
  Open [http://localhost:3456](http://localhost:3456)
51
53
 
54
+ ### Global Installation
55
+
56
+ Install VibePulse globally for easier access:
57
+
58
+ ```bash
59
+ # Install globally
60
+ npm install -g vibepulse
61
+
62
+ # Run anytime
63
+ vibepulse
64
+
65
+ # With custom port
66
+ PORT=8080 vibepulse
67
+ ```
68
+
52
69
  ### Development
53
70
 
71
+ Clone and run from source:
72
+
54
73
  ```bash
74
+ # Clone the repository
75
+ git clone https://github.com/ChatTreeNet/VibePulse.git
76
+ cd VibePulse
77
+
55
78
  # Install dependencies
56
79
  npm install
57
80
 
58
- # Make sure OpenCode is running locally, then:
81
+ # Start development server
59
82
  npm run dev
60
83
 
61
84
  # Or specify a custom port
package/bin/vibepulse.js CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ /* eslint-disable @typescript-eslint/no-require-imports */
2
3
 
3
4
  const { spawn } = require('child_process');
4
5
  const path = require('path');
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ async function readConfig(configPath = CONFIG_PATH) {
48
48
  const content = await (0, import_promises.readFile)(configPath, "utf-8");
49
49
  const config = (0, import_comment_json.parse)(content, null, false);
50
50
  return config;
51
- } catch (error) {
51
+ } catch {
52
52
  return {};
53
53
  }
54
54
  }
package/dist/index.mjs CHANGED
@@ -18,7 +18,7 @@ async function readConfig(configPath = CONFIG_PATH) {
18
18
  const content = await readFile(configPath, "utf-8");
19
19
  const config = parse(content, null, false);
20
20
  return config;
21
- } catch (error) {
21
+ } catch {
22
22
  return {};
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibepulse",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "description": "Real-time dashboard for monitoring and managing OpenCode sessions",
6
6
  "repository": {
@@ -22,16 +22,6 @@
22
22
  "require": "./dist/index.cjs"
23
23
  }
24
24
  },
25
- "peerDependencies": {
26
- "next": ">=14.0.0",
27
- "react": ">=18.0.0",
28
- "react-dom": ">=18.0.0"
29
- },
30
- "peerDependenciesMeta": {
31
- "next": {
32
- "optional": true
33
- }
34
- },
35
25
  "scripts": {
36
26
  "dev": "next dev -p 3456",
37
27
  "build": "next build",
@@ -56,6 +46,9 @@
56
46
  "clsx": "^2.1.1",
57
47
  "comment-json": "^4.6.2",
58
48
  "lucide-react": "^0.575.0",
49
+ "next": "^16.1.6",
50
+ "react": "^19.2.3",
51
+ "react-dom": "^19.2.3",
59
52
  "react-hook-form": "^7.71.2",
60
53
  "tailwind-merge": "^3.5.0"
61
54
  },