-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "deepseek-mcp-server",
"version": "0.5.0",
"mcpName": "io.github.DMontgomery40/deepseek",
"description": "Model Context Protocol server for DeepSeek V4 API endpoints with stdio and Streamable HTTP transports.",
"type": "module",
"main": "build/index.js",
"bin": {
"deepseek-mcp-server": "build/index.js"
},
"files": [
"build/**/*",
"assets/favicon.ico",
"assets/favicon-32x32.png",
"assets/apple-touch-icon.png"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest --config ./vitest.config.ts",
"test:live": "npm run build && node scripts/live-smoke.mjs",
"test:remote": "npm run build && node scripts/remote-smoke.mjs",
"prepublishOnly": "npm run build",
"inspect": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.2",
"zod": "^4.3.6"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"author": "DMontgomery40",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DMontgomery40/deepseek-mcp-server.git"
},
"keywords": [
"mcp",
"deepseek",
"ai",
"llm"
]
}