-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "agent-webtool",
"version": "0.3.3",
"description": "Web fetch and multi-engine search tools for AI agents (CLI + MCP server). No API keys required.",
"keywords": [
"agent",
"ai",
"mcp",
"web-search",
"web-fetch",
"duckduckgo",
"bing",
"brave",
"yahoo",
"scraping",
"claude",
"llm",
"tools"
],
"license": "MIT",
"homepage": "https://github.com/potato47/agent-webtool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/potato47/agent-webtool.git"
},
"bugs": {
"url": "https://github.com/potato47/agent-webtool/issues"
},
"type": "module",
"bin": {
"webtool": "./dist/cli.mjs",
"agent-webtool": "./dist/cli.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "bun build bin/cli.ts --target=node --format=esm --outfile=dist/cli.mjs && chmod +x dist/cli.mjs",
"cli": "bun bin/cli.ts",
"mcp": "bun bin/cli.ts mcp",
"test": "bun test test/",
"prepublishOnly": "bun run build && bun test test/"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/bun": "latest",
"@types/marked-terminal": "^6.1.1",
"@types/turndown": "^5.0.6",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"turndown": "^7.2.4",
"typescript": "^5",
"zod": "^4.4.3"
},
"dependencies": {
"marked": "^18.0.4",
"marked-terminal": "^7.3.0",
"undici": "^7.25.0"
}
}