node-DeepResearch/package.json
devin-ai-integration[bot] b48f7afb6d
feat: add Brave Search integration (#4)
* feat: add Brave Search integration

- Add Brave Search implementation
- Configure Brave API key in config
- Make search provider configurable with Brave as default

Co-Authored-By: Han Xiao <han.xiao@jina.ai>

* chore: first commit

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Han Xiao <han.xiao@jina.ai>
2025-01-31 18:24:45 +08:00

35 lines
875 B
JSON

{
"name": "agentic-search",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "npx ts-node src/agent.ts",
"search": "npx ts-node src/test-duck.ts",
"rewrite": "npx ts-node src/tools/query-rewriter.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@types/node-fetch": "^2.6.12",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"duck-duck-scrape": "^2.2.7",
"node-fetch": "^3.3.2",
"undici": "^7.3.0"
},
"devDependencies": {
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}