@vibeprospecting/vpai 0.1.5 → 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.
Files changed (2) hide show
  1. package/dist/vpai.cjs +52 -0
  2. package/package.json +1 -1
package/dist/vpai.cjs CHANGED
@@ -44414,6 +44414,57 @@ function loadConfig() {
44414
44414
  return CliConfigSchema.parse(raw);
44415
44415
  }
44416
44416
 
44417
+ // package.json
44418
+ var package_default = {
44419
+ name: "@vibeprospecting/vpai",
44420
+ version: "0.1.6",
44421
+ 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.",
44422
+ type: "module",
44423
+ license: "MIT",
44424
+ author: "vibeprospecting.ai",
44425
+ homepage: "https://vibeprospecting.ai",
44426
+ bugs: {
44427
+ url: "https://vibeprospecting.ai/support"
44428
+ },
44429
+ keywords: [
44430
+ "vibe-prospecting",
44431
+ "b2b",
44432
+ "prospecting",
44433
+ "lead-generation",
44434
+ "mcp",
44435
+ "explorium"
44436
+ ],
44437
+ scripts: {
44438
+ build: "rm -rf dist && mkdir -p dist && node esbuild.config.cjs && chmod +x dist/vpai.cjs",
44439
+ prepublishOnly: "npm run build",
44440
+ call: "node dist/vpai.cjs",
44441
+ test: "jest --config jest.config.cjs",
44442
+ "test:watch": "jest --config jest.config.cjs --watch",
44443
+ "test:coverage": "jest --config jest.config.cjs --coverage"
44444
+ },
44445
+ bin: {
44446
+ vpai: "dist/vpai.cjs"
44447
+ },
44448
+ readme: "README.md",
44449
+ files: [
44450
+ "README.md",
44451
+ "dist"
44452
+ ],
44453
+ dependencies: {
44454
+ commander: "^14.0.3",
44455
+ mcporter: "^0.7.3",
44456
+ zod: "^3.25.67"
44457
+ },
44458
+ devDependencies: {
44459
+ esbuild: "^0.24.0",
44460
+ "@types/jest": "^29.5.14",
44461
+ "@types/node": "^22.0.0",
44462
+ jest: "^29.7.0",
44463
+ "ts-jest": "^29.3.4",
44464
+ typescript: "^5.8.3"
44465
+ }
44466
+ };
44467
+
44417
44468
  // src/cli.ts
44418
44469
  function closeRuntime(runtime, serverName) {
44419
44470
  runtime.close(serverName).catch((err) => {
@@ -44426,6 +44477,7 @@ function closeRuntime(runtime, serverName) {
44426
44477
  var config3 = loadConfig();
44427
44478
  var program2 = new Command();
44428
44479
  program2.name(CLI_NAME);
44480
+ program2.version(package_default.version);
44429
44481
  program2.description(CLI_DESCRIPTION);
44430
44482
  program2.addHelpText(
44431
44483
  "before",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeprospecting/vpai",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
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
5
  "type": "module",
6
6
  "license": "MIT",