-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "@deventerprisesoftware/scrapi-mcp",
"version": "0.2.8",
"description": "MCP server for using ScrAPI to scrape web pages.",
"keywords": [
"mcp",
"web scraper",
"web scraping",
"web data extractor",
"claude",
"ai"
],
"homepage": "https://scrapi.tech",
"bugs": {
"url": "https://github.com/DevEnterpriseSoftware/scrapi-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevEnterpriseSoftware/scrapi-mcp.git"
},
"license": "MIT",
"author": "DevEnterprise Software (https://deventerprise.com)",
"type": "module",
"bin": {
"scrapi-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"publish": "npm run build && npm publish",
"watch": "tsc --watch",
"ncu": "npx npm-check-updates --interactive",
"docker:build": "docker build -f Dockerfile -t deventerprisesoftware/scrapi-mcp:v%npm_package_version% -t deventerprisesoftware/scrapi-mcp:latest .",
"docker:push": "docker push deventerprisesoftware/scrapi-mcp --all-tags",
"docker:release": "npm run build && npm run docker:build && npm run docker:push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"shx": "^0.4.0",
"typescript": "^6.0.2"
}
}