@vibeprospecting/vpai 0.1.5 → 0.1.8
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/dist/vpai.cjs +53 -0
- package/package.json +2 -1
package/dist/vpai.cjs
CHANGED
|
@@ -44414,6 +44414,58 @@ 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.8",
|
|
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
|
+
bump: "node scripts/bump.cjs",
|
|
44439
|
+
build: "rm -rf dist && mkdir -p dist && node esbuild.config.cjs && chmod +x dist/vpai.cjs",
|
|
44440
|
+
prepublishOnly: "npm run build",
|
|
44441
|
+
call: "node dist/vpai.cjs",
|
|
44442
|
+
test: "jest --config jest.config.cjs",
|
|
44443
|
+
"test:watch": "jest --config jest.config.cjs --watch",
|
|
44444
|
+
"test:coverage": "jest --config jest.config.cjs --coverage"
|
|
44445
|
+
},
|
|
44446
|
+
bin: {
|
|
44447
|
+
vpai: "dist/vpai.cjs"
|
|
44448
|
+
},
|
|
44449
|
+
readme: "README.md",
|
|
44450
|
+
files: [
|
|
44451
|
+
"README.md",
|
|
44452
|
+
"dist"
|
|
44453
|
+
],
|
|
44454
|
+
dependencies: {
|
|
44455
|
+
commander: "^14.0.3",
|
|
44456
|
+
mcporter: "^0.7.3",
|
|
44457
|
+
zod: "^3.25.67"
|
|
44458
|
+
},
|
|
44459
|
+
devDependencies: {
|
|
44460
|
+
esbuild: "^0.24.0",
|
|
44461
|
+
"@types/jest": "^29.5.14",
|
|
44462
|
+
"@types/node": "^22.0.0",
|
|
44463
|
+
jest: "^29.7.0",
|
|
44464
|
+
"ts-jest": "^29.3.4",
|
|
44465
|
+
typescript: "^5.8.3"
|
|
44466
|
+
}
|
|
44467
|
+
};
|
|
44468
|
+
|
|
44417
44469
|
// src/cli.ts
|
|
44418
44470
|
function closeRuntime(runtime, serverName) {
|
|
44419
44471
|
runtime.close(serverName).catch((err) => {
|
|
@@ -44426,6 +44478,7 @@ function closeRuntime(runtime, serverName) {
|
|
|
44426
44478
|
var config3 = loadConfig();
|
|
44427
44479
|
var program2 = new Command();
|
|
44428
44480
|
program2.name(CLI_NAME);
|
|
44481
|
+
program2.version(package_default.version);
|
|
44429
44482
|
program2.description(CLI_DESCRIPTION);
|
|
44430
44483
|
program2.addHelpText(
|
|
44431
44484
|
"before",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeprospecting/vpai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"explorium"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
+
"bump": "node scripts/bump.cjs",
|
|
21
22
|
"build": "rm -rf dist && mkdir -p dist && node esbuild.config.cjs && chmod +x dist/vpai.cjs",
|
|
22
23
|
"prepublishOnly": "npm run build",
|
|
23
24
|
"call": "node dist/vpai.cjs",
|