-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 932 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 932 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
{
"name": "@deepdataspace/dinox-mcp",
"version": "1.0.0",
"description": "Official DINO-X Model Context Protocol (MCP) server that empowers LLMs with real-world visual perception through image object detection, localization, and captioning APIs.",
"type": "module",
"homepage": "https://github.com/IDEA-Research/DINO-X-MCP",
"bin": {
"dinox-mcp": "./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"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.1",
"axios": "^1.9.0",
"express": "^5.1.0",
"sharp": "^0.34.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}