import { defineConfig } from 'tsup'
import { tsupBase } from '@tooling/tsup-config'

export default defineConfig(
  tsupBase({
    entry: [
      'src/index.ts',
      'src/openai-compat.ts',
      'src/anthropic.ts',
      'src/google.ts',
      'src/mock.ts',
      'src/pricing.ts',
      'src/redact.ts',
    ],
    external: ['@google/genai'],
  }),
)
