diff --git a/package.json b/package.json index a5e3bb6..f241fe6 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "scripts": { "test": "xo --env=node && ava && pnpm run build && tsd --typings dist/index.d.ts", "build": "del-cli dist && tsc", - "publish": "tsup", "prepack": "pnpm run build" }, "files": [ diff --git a/tsup.config.ts b/tsup.config.ts deleted file mode 100644 index 48788a4..0000000 --- a/tsup.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from "tsup"; - -export default defineConfig({ - entry: ["src/index.ts"], - format: ["cjs", "esm"], // Build for commonJS and ESmodules - dts: true, // Generate declaration file (.d.ts) - splitting: false, - sourcemap: true, - clean: true, -});