-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 961 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
{
"name": "mcp-neovim-server",
"version": "0.1.0",
"description": "An MCP server for neovim",
"type": "module",
"bin": {
"mcp-neovim-server": "build/index.js"
},
"files": [
"build"
],
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigcodegen/mcp-neovim-server.git"
},
"author": "bigcodegen",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigcodegen/mcp-neovim-server/issues"
},
"homepage": "https://github.com/bigcodegen/mcp-neovim-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"neovim": "^5.3.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.7.2"
}
}