-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "firecrawl-mcp",
"version": "1.3.3",
"description": "MCP server for FireCrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, batch processing, structured data extraction, and LLM-powered content analysis.",
"type": "module",
"bin": {
"firecrawl-mcp": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"prepare": "npm run build",
"publish": "npm run build && npm publish"
},
"license": "ISC",
"dependencies": {
"@mendable/firecrawl-js": "^1.16.0",
"@modelcontextprotocol/sdk": "^1.4.1",
"dotenv": "^16.4.7",
"p-queue": "^8.0.1",
"shx": "^0.3.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"firecrawl",
"web-scraping",
"crawler",
"content-extraction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mendableai/firecrawl-mcp-server.git"
},
"author": "vrknetha",
"bugs": {
"url": "https://github.com/mendableai/firecrawl-mcp-server/issues"
},
"homepage": "https://github.com/mendableai/firecrawl-mcp-server#readme"
}