@vibeprospecting/vpai 0.1.0

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.
Files changed (4) hide show
  1. package/README.md +164 -0
  2. package/dist/vpai +0 -0
  3. package/dist/vpai.js +37149 -0
  4. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@vibeprospecting/vpai",
3
+ "version": "0.1.0",
4
+ "description": "Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more. Search any company or professional to access emails, phone numbers, roles, growth signals, tech stack details, business events, website changes, and more.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "vibeprospecting.ai",
8
+ "homepage": "https://vibeprospecting.ai",
9
+ "bugs": {
10
+ "url": "https://vibeprospecting.ai/support"
11
+ },
12
+ "keywords": [
13
+ "vibe-prospecting",
14
+ "b2b",
15
+ "prospecting",
16
+ "lead-generation",
17
+ "mcp",
18
+ "explorium"
19
+ ],
20
+ "scripts": {
21
+ "build": "rm -rf dist && mkdir -p dist && bun build src/cli.ts --outfile=dist/vpai.js --target bun && chmod +x dist/vpai.js && bun build src/cli.ts --compile --outfile=dist/vpai",
22
+ "prepublishOnly": "npm run build",
23
+ "call": "bun dist/vpai.js",
24
+ "test": "jest --config jest.config.cjs",
25
+ "test:watch": "jest --config jest.config.cjs --watch",
26
+ "test:coverage": "jest --config jest.config.cjs --coverage"
27
+ },
28
+ "bin": {
29
+ "vpai": "dist/vpai.js"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "dependencies": {
35
+ "mcporter": "^0.7.3"
36
+ },
37
+ "devDependencies": {
38
+ "@types/jest": "^29.5.14",
39
+ "@types/node": "^22.0.0",
40
+ "jest": "^29.7.0",
41
+ "ts-jest": "^29.3.4",
42
+ "typescript": "^5.8.3"
43
+ }
44
+ }