Ported v0.0.4 from mcp-remote-examples

This commit is contained in:
Glen Maddern 2025-03-20 11:11:45 +11:00
parent d1d7803d9a
commit cb322d877d
11 changed files with 2986 additions and 137 deletions

10
tsup.config.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/client.ts', 'src/proxy.ts'],
format: ['esm'],
dts: true,
clean: true,
outDir: 'dist',
// external: ['typescript'],
})