modernize

- replace vite with tsdown
- update registry
- update deps
This commit is contained in:
2026-02-03 07:47:48 +01:00
parent 1115053fcd
commit 1217cf56f5
15 changed files with 930 additions and 1861 deletions

9
tsdown.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["./src/unom-style.ts", "./src/easings/easings.ts"],
format: "esm",
dts: true,
exports: true,
fixedExtension: false,
});