deepsearcher
Version:
DeepResearch Agent with LangGraph, use any llm and web search to build your own deep research agent
69 lines • 1.6 kB
JSON
{
"name": "deepsearcher",
"version": "0.2.4",
"description": "DeepResearch Agent with LangGraph, use any llm and web search to build your own deep research agent",
"packageManager": "yarn@3.5.1",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@langchain/anthropic": "^1.1.3",
"@langchain/core": "^1.1.0",
"@langchain/google-genai": "^2.0.0",
"@langchain/google-vertexai": "^1.0.4",
"@langchain/langgraph": "^1.0.2",
"@langchain/openai": "^1.1.2",
"langchain": "^1.1.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "latest",
"@types/node": "^20.0.0",
"eslint": "latest",
"globals": "^16.2.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "latest"
},
"author": "zac_ma <yoking@outlook.com>",
"repository": {
"type": "git",
"url": "https://github.com/sear-chat/SearChat",
"directory": "packages/deepresearch"
},
"keywords": [
"langgraph",
"research",
"deepresearch",
"agent",
"deep research",
"ai agent",
"llm",
"web search",
"RAG"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0"
}