-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 976 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 976 Bytes
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
{
"name": "vitally-mcp",
"version": "1.0.1",
"description": "MCP for Vitally",
"private": true,
"type": "module",
"author": "John Jung & Dan Searle",
"license": "MIT",
"copyright": "Copyright (c) 2024 John Jung & Dan Searle",
"bin": {
"vitally mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node --eval \"import('fs').then(fs => fs.chmodSync('build/index.js', '755'))\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node --experimental-modules --experimental-specifier-resolution=node build/index.js",
"test": "node --experimental-modules --experimental-specifier-resolution=node test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}