UNPKG

collageify

Version:

accepts images, creates a collage, and downloads it as a file, get the dominant colors in the uploaded image

11 lines (9 loc) 200 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['esm', 'cjs'], dts: true, sourcemap: true, clean: true, outDir: 'dist', });