Initial commit

This commit is contained in:
Endeavorance 2025-01-07 14:58:16 -05:00
commit 0036079c75
12 changed files with 765 additions and 0 deletions

8
build.ts Normal file
View file

@ -0,0 +1,8 @@
import dts from "bun-plugin-dts";
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
plugins: [dts()],
target: "browser",
});