chore: initial-commit (#1)
All checks were successful
CD / Release (push) Successful in 39s

Reviewed-on: #1
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #1.
This commit is contained in:
2025-08-17 22:52:19 +02:00
committed by t.behrendt
parent 4eefc46a2f
commit 370fbd39a3
16 changed files with 6808 additions and 1 deletions

12
esbuild.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
target: "node20",
outfile: "dist/index.js",
sourcemap: false,
minify: true,
logLevel: "info",
});