Merge pull request #4 from umuthopeyildirim/chore/fix-package-json

chore: add bun and main fields and add corrected start option
This commit is contained in:
Barry Yip 2025-05-05 23:55:17 +08:00 committed by GitHub
commit 21c910a15d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions

View File

@ -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": "",