-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 837 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 837 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": "@decodo/mcp-server",
"version": "1.0.3",
"description": "",
"bin": {
"decodo-mcp": "./build/index.js"
},
"main": "index.js",
"mcpName": "io.github.Decodo/mcp-web-scraper",
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"dev": "pnpm run build && mcp-inspector",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"build"
],
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"jest": "^30.0.0",
"mcps-logger": "^1.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"zod": "^3.25.57"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"node-html-markdown": "^1.3.0"
}
}