polysearch/package.json

40 lines
865 B
JSON
Raw Permalink Normal View History

{
"name": "polysearch",
"version": "2.0.0",
"description": "Multi-engine web + image search with proxy rotation, circuit breaker, and structured AI agent output",
"type": "module",
"main": "src/index.js",
"bin": {
"polysearch": "src/index.js"
},
"scripts": {
"search": "node src/index.js",
"agent": "node src/index.js --mode agent",
"human": "node src/index.js --mode human",
"metrics": "node src/index.js -M",
"help": "node src/index.js --help"
},
"keywords": [
"polysearch",
"web-search",
"image-search",
"multi-engine",
"proxy",
"circuit-breaker",
"ai-agent",
"duckduckgo",
"oxylabs",
"webshare"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"dotenv": "^17.4.2",
"pino": "^10.3.1",
"undici": "^7.27.1"
}
}