mirror of
https://github.com/lukaszraczylo/cloudflare-crawl-mcp.git
synced 2026-06-05 22:49:19 +00:00
37 lines
971 B
JSON
37 lines
971 B
JSON
{
|
|
"name": "@lukaszraczylo/cloudflare-crawl-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Cloudflare Browser Rendering Crawl API",
|
|
"author": "Lukasz Raczylo <hello@raczylo.com> (https://raczylo.com)",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.27.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.4.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
"@typescript-eslint/parser": "^8.26.1",
|
|
"eslint": "^9.25.0",
|
|
"eslint-formatter-compact": "^9.0.1",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.26.1",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|