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",
|
"name": "mcp-discord",
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"main": "index.js",
|
"main": "build/index.js",
|
||||||
|
"bin": {
|
||||||
|
"mcp-discord": "build/index.js"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node dist/index.js",
|
"start": "node build/index.js",
|
||||||
"dev": "node --loader ts-node/esm src/index.ts"
|
"dev": "node --loader ts-node/esm src/index.ts"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
|
|
Loading…
Reference in New Issue