-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 895 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 895 Bytes
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
{
"name": "browser-scraper",
"version": "1.0.0",
"description": "Multi-agent scraping framework based on page-agent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"example:basic": "ts-node examples/basic.ts",
"example:multi": "ts-node examples/multi-agent.ts",
"example:mcp": "ts-node examples/mcp-client.ts",
"test": "jest"
},
"keywords": [
"scraping",
"multi-agent",
"page-agent",
"browser-automation",
"mcp"
],
"author": "Muhammed",
"license": "MIT",
"dependencies": {
"page-agent": "^1.7.1",
"dotenv": "^16.4.5",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"@types/jest": "^29.5.14"
}
}