-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.38 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.38 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "firecrawl-simple-mcp",
"version": "1.0.2",
"description": "MCP server for Firecrawl Simple — a web scraping and site mapping tool enabling LLMs to access and process web content",
"main": "dist/index.js",
"bin": {
"firecrawl-simple-mcp": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup",
"build:clean": "npm run clean && npm run build",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepare-release": "npm run clean && npm run build && npm run lint && npm run typecheck && npm run test",
"version-bump": "npm version",
"version-bump:patch": "npm version patch -m \"chore(release): %s\"",
"release": "npm run prepare-release && npm run version-bump",
"publish:full": "npm run release && git push && git push --tags && npm publish",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"firecrawl",
"web-scraping",
"crawling",
"llm",
"ai",
"claude",
"cursor",
"sitemap",
"web-crawler",
"headless-browser",
"site-mapping"
],
"author": "Dmitry Safonov",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Sacode/firecrawl-simple-mcp.git"
},
"homepage": "https://www.npmjs.com/package/firecrawl-simple-mcp",
"bugs": {
"url": "https://github.com/Sacode/firecrawl-simple-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"fastmcp": "^1.20.5",
"firecrawl-simple-client": "^1.0.2",
"pino": "^9.6.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
},
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
}
}