-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 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
{
"name": "neuralscraper",
"version": "1.0.0",
"description": "Web scraping, analysis & content extraction tool — MCP server + CLI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ns": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start:mcp": "node dist/mcp-server.js",
"start:cli": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"keywords": [
"scraper",
"mcp",
"neural",
"web-scraping",
"playwright",
"cli"
],
"author": "getobyte",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@mozilla/readability": "^0.5.0",
"cheerio": "^1.0.0",
"commander": "^13.1.0",
"fastify": "^5.8.4",
"jsdom": "^26.1.0",
"pdf-parse": "^2.4.5",
"playwright": "^1.52.0",
"turndown": "^7.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.0",
"@types/turndown": "^5.0.5",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}