buena-typescript-sdk
Version:
Official TypeScript SDK for Buena.ai API - LinkedIn automation and lead management
17 lines (13 loc) • 310 B
text/typescript
/// <reference types="bun-types" />
import { build } from "bun";
const entrypoint = "./src/mcp-server/mcp-server.ts";
await build({
entrypoints: [entrypoint],
outdir: "./bin",
sourcemap: "linked",
target: "node",
format: "esm",
minify: false,
throw: true,
banner: "#!/usr/bin/env node",
});