-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@oevortex/ddg_search",
"version": "1.2.2",
"description": "A Model Context Protocol server for web search using DuckDuckGo, IAsk AI, and Monica AI",
"main": "src/index.js",
"module": "src/index.ts",
"exports": {
".": {
"import": "./src/index.js",
"default": "./src/index.js"
}
},
"bin": {
"ddg-search-mcp": "bin/cli.js",
"oevortex-ddg-search": "bin/cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=src/__tests__/utils",
"test:integration": "jest --testPathPattern=src/__tests__/mcp-integration",
"test:tools": "jest --testPathPattern=src/__tests__/tools",
"test:all": "jest --coverage --verbose",
"start": "node bin/cli.js",
"prepublishOnly": "npm run lint",
"lint": "echo \"No linting configured\"",
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"duckduckgo",
"iask",
"search",
"web-search",
"ai-search",
"claude",
"ai",
"llm"
],
"author": "OEvortex",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"axios": "^1.8.4",
"axios-cookiejar-support": "^6.0.5",
"cheerio": "^1.0.0",
"smithery": "^0.5.2",
"tough-cookie": "^6.0.0",
"turndown": "^7.2.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@jest/globals": "^29.7.0",
"@types/node": "^24.3.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}