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 +26 -3
- package/bin/vibepulse.js +1 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -11
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
|
|
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
|
-
#
|
|
81
|
+
# Start development server
|
|
59
82
|
npm run dev
|
|
60
83
|
|
|
61
84
|
# Or specify a custom port
|
package/bin/vibepulse.js
CHANGED
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
|
|
51
|
+
} catch {
|
|
52
52
|
return {};
|
|
53
53
|
}
|
|
54
54
|
}
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibepulse",
|
|
3
|
-
"version": "0.1.
|
|
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
|
},
|