forked from Aas-ee/open-webSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "open-websearch",
"version": "1.2.0",
"description": "web search the internet",
"type": "module",
"bin": {
"open-websearch": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"test:stdio": "set MODE=stdio && node build/index.js",
"test:http": "set MODE=http && node build/index.js",
"test:both": "set MODE=both && node build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"@types/axios": "^0.14.4",
"@types/cheerio": "^0.22.35",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"https-proxy-agent": "^7.0.6",
"jsdom": "^26.1.0",
"npx": "^10.2.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.10",
"typescript": "^5.3.3"
}
}