-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 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
{
"name": "isearch",
"version": "2.1.0",
"description": "Lightning-fast Google Search CLI with daemon architecture and MCP support",
"bin": {
"ask": "./ask.js"
},
"scripts": {
"setup": "bun run setup.js",
"daemon": "bun run daemon.js",
"mcp": "bun run mcp-server.js",
"test": "bun run test/test-daemon.js",
"test:mcp": "bun run test/test-mcp.js",
"stop": "bun -e \"require('./lib/client').stop().then(() => console.log('Stopped')).catch(() => console.log('Not running'))\""
},
"keywords": [
"google",
"search",
"cli",
"mcp",
"ai"
],
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"playwright": "^1.58.2"
}
}