-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 939 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 939 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
34
35
36
37
{
"name": "bing-cn-mcp",
"version": "1.0.2",
"type": "module",
"description": "必应中文搜索MCP服务器",
"main": "build/index.js",
"bin": {
"bing-cn-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc && node build/index.js"
},
"files": ["build"],
"keywords": ["mcp", "bing", "search", "chinese", "搜索", "必应"],
"author": "yan5236",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yan5236/bing-cn-mcp-server.git"
},
"bugs": {
"url": "https://github.com/yan5236/bing-cn-mcp-server/issues"
},
"homepage": "https://github.com/yan5236/bing-cn-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
}
}