-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "@bpmforge/quarry",
"version": "0.4.0",
"description": "Quarry — agent-grade web retrieval: human-paced multi-engine search + zero-dep fetch→clean-markdown extraction, self-hosted, no third-party scraping API",
"type": "module",
"bin": {
"quarry": "./dist/cli.js",
"quarry-mcp": "./dist/mcp.js",
"bpm-pull": "./dist/cli.js",
"playwright-search": "./dist/cli.js",
"playwright-search-mcp": "./dist/mcp.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"search": "tsx src/cli.ts",
"mcp": "tsx src/mcp.ts",
"mcp:start": "node dist/mcp.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"postinstall": "playwright install chromium"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"@types/jsdom": "^28.0.1",
"jsdom": "^29.1.0",
"playwright": "^1.49.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
}
}