Initial commit

This commit is contained in:
Endeavorance 2025-04-02 10:33:16 -04:00
commit c75752b1b7
10 changed files with 387 additions and 0 deletions

9
build.ts Normal file
View file

@ -0,0 +1,9 @@
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
target: "bun",
external: ["yaml"],
minify: true,
});
export { };