package.json•1.32 kB
{
"name": "crawl4ai-mcp-server",
"version": "1.0.0",
"description": "MCP Server for Crawl4AI - Enable AI assistants to access web scraping and crawling via Model Context Protocol",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"format": "prettier --write '**/*.{js,ts,json}'",
"lint": "eslint --ext .ts src/",
"typecheck": "tsc --noEmit"
},
"author": "Bjorn Melin",
"license": "MIT",
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.0.5",
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.12.0",
"node-fetch": "^3.3.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250504.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.6.2",
"jest-mock-extended": "^3.0.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typescript": "^5.8.3",
"wrangler": "^4.14.1"
}
}