UNPKG

@elizaos/plugin-google-meet-cute

Version:

Google Meet integration plugin for ElizaOS - manage meetings, get participant info, and access meeting artifacts via Google Meet REST API

15 lines (14 loc) 292 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['esm'], dts: true, sourcemap: true, clean: true, external: ['@elizaos/core'], platform: 'node', target: 'node20', minify: false, splitting: false, treeshake: true, });