diff --git a/nix/package.nix b/nix/package.nix index 112904e..5557d37 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -67,6 +67,5 @@ stdenv.mkDerivation (finalAttrs: { description = "The ultimate trout population helper"; license = lib.licenses.eupl12; maintainers = with lib.maintainers; [NotAShelf]; - mainProgram = "troutbot"; }; }) diff --git a/tsup.config.ts b/tsup.config.ts deleted file mode 100644 index 3f202c0..0000000 --- a/tsup.config.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { defineConfig } from 'tsup'; - -export default defineConfig({ - entry: ['src/index.ts'], - format: 'cjs', - dts: true, - clean: true, - // Bundle jiti into the output so it works without node_modules - noExternal: ['jiti'], - // Ensure all dependencies are resolved - platform: 'node', - target: 'node22', -});