package.json•2.38 kB
{
"name": "enhanced-fetch-mcp",
"version": "1.0.0",
"description": "Enhanced Fetch MCP Server - Docker-based sandbox management through Model Context Protocol",
"type": "module",
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"bin": {
"enhanced-fetch-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"watch": "tsc --watch",
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts'",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"web-scraping",
"browser-automation",
"playwright",
"content-extraction",
"fetch",
"sandbox",
"docker",
"container"
],
"author": "Enhanced Fetch MCP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Danielmelody/enhanced-fetch-mcp.git"
},
"bugs": {
"url": "https://github.com/Danielmelody/enhanced-fetch-mcp/issues"
},
"homepage": "https://github.com/Danielmelody/enhanced-fetch-mcp#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/turndown": "^5.0.6",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"cheerio": "^1.1.2",
"commander": "^11.1.0",
"dockerode": "^4.0.2",
"express": "^4.18.2",
"inquirer": "^9.2.12",
"joi": "^17.11.0",
"node-cron": "^3.0.3",
"node-html-parser": "^7.0.1",
"turndown": "^7.2.2",
"winston": "^3.11.0",
"ws": "^8.14.2",
"yaml": "^2.3.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@smithery/cli": "^1.6.3",
"@types/dockerode": "^3.3.31",
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"playwright": "^1.56.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=18.0.0"
}
}