-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@llmindset/mcp-miro",
"version": "0.1.1",
"description": "A Model Context Protocol server to connect to the MIRO Whiteboard Application",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"mcp-miro": "./build/index.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evalstate/mcp-miro"
},
"bugs":{
"url": "https://github.com/evalstate/mcp-miro/issues"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"node-fetch": "^3.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.33",
"typescript": "^5.3.3"
}
}