UNPKG

@ianaleck/harvest-mcp-server

Version:

Model Context Protocol server for Harvest API v2

16 lines (15 loc) 321 B
#!/usr/bin/env node const esbuild = require('esbuild'); esbuild.build({ entryPoints: ['src/index.ts'], bundle: true, outfile: 'dist/index.js', platform: 'node', target: 'node18', format: 'cjs', minify: false, sourcemap: true, banner: { js: '#!/usr/bin/env node' } }).catch(() => process.exit(1));