-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
31 lines (31 loc) · 875 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
{
"name": "deepseek-thinking-claude-3-5-sonnet-cline-mcp",
"version": "0.1.0",
"description": "MCP server that combines DeepSeek's reasoning with Claude 3.5 Sonnet's response generation through Cline",
"private": true,
"type": "module",
"bin": {
"deepseek-thinking-claude-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": {
"@anthropic-ai/sdk": "^0.36.2",
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.4.7",
"openai": "^4.80.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/uuid": "^10.0.0",
"typescript": "^5.3.3"
}
}