feat: add many bps

This commit is contained in:
2024-12-23 21:52:08 +09:00
commit a450604c13
43 changed files with 5218 additions and 0 deletions

9
script/build.js Normal file
View File

@ -0,0 +1,9 @@
const { build } = require("esbuild")
build({
entryPoints: ["src/main.ts"],
outfile: "dist/main.js",
platform: 'node',
bundle: true,
minify: true
})