From 98d2c73d42aa6f3a2c0296aed2e412e99b899ae8 Mon Sep 17 00:00:00 2001 From: Umut Hope YILDIRIM Date: Mon, 5 May 2025 11:30:17 -0400 Subject: [PATCH] chore: add bun and main fields and add corrected start option --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a8fe0ef..e1f503c 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,15 @@ { "name": "mcp-discord", "version": "1.1.0", - "main": "index.js", + "main": "build/index.js", + "bin": { + "mcp-discord": "build/index.js" + }, "type": "module", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc", - "start": "node dist/index.js", + "start": "node build/index.js", "dev": "node --loader ts-node/esm src/index.ts" }, "author": "",