-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "@deventerprisesoftware/scrapi-mcp",
"version": "0.4.5",
"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",
"README.md"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"release": "npm run build && npm publish",
"watch": "tsc --watch",
"lint": "eslint index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"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.30.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"zod": "^4.5.4"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^26.4.1",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"shx": "^0.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vitest": "^4.1.11"
}
}