@vibeprospecting/vpai 0.1.4 → 0.1.6

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
@@ -42,22 +42,21 @@ npm run build
42
42
 
43
43
  Produces:
44
44
 
45
- - `dist/vpai.js` – Bun bundle (requires Bun runtime)
46
- - `dist/vpai` – Standalone executable (no runtime; Linux/macOS)
45
+ - `dist/vpai.js` – Node-compatible bundle (runs with Node.js)
47
46
 
48
47
  ### Run without installing
49
48
 
50
49
  ```bash
51
50
  npm run call -- <command> [options]
52
51
  # or
53
- bun dist/vpai.js <command> [options]
52
+ node dist/vpai.js <command> [options]
54
53
  ```
55
54
 
56
55
  ---
57
56
 
58
57
  ## Prerequisites
59
58
 
60
- - [Bun](https://bun.sh) (for build) or Node.js
59
+ - [Node.js](https://nodejs.org) (required for running and building)
61
60
  - OAuth access to Explorium MCP
62
61
 
63
62
  ---
@@ -117,15 +116,13 @@ vpai autocomplete --args '{"field":"linkedin_category","query":"software"}'
117
116
 
118
117
  ## Production
119
118
 
120
- ### Standalone binary
119
+ ### Deployment
121
120
 
122
- The compiled `dist/vpai` binary is self-contained. Deploy by copying it to the target system; no Node/Bun or config files required.
121
+ Install via npm for production use. Node.js is required on the target system.
123
122
 
124
123
  ```bash
125
- # Copy to PATH
126
- cp dist/vpai /usr/local/bin/vpai
127
- # or
128
- cp dist/vpai ~/bin/vpai
124
+ npm install -g @vibeprospecting/vpai
125
+ # or copy dist/vpai.js and add to PATH (Node.js required)
129
126
  ```
130
127
 
131
128
  ### Auth