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:
commit
21c910a15d
|
@ -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": "",
|
||||
|
|
Loading…
Reference in New Issue