-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "deep-research",
"version": "0.3.0",
"main": "dist/mcp-server.js",
"type": "module",
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"tsx": "tsx --env-file=.env.local",
"start": "tsx --env-file=.env.local src/run.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"serve": "node --env-file=.env.local dist/mcp-server.js",
"docker": "tsx src/run.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "An AI-powered research assistant that performs iterative, deep research on any topic by combining search engines, web scraping, and **Gemini** large language models. Available as a Model Context Protocol (MCP) tool for seamless integration with AI agents.",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.6.1",
"@types/lodash": "^4.17.20",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.10",
"jest": "^30.0.5",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"pino-pretty": "^13.1.1",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@crawlee/core": "^3.14.1",
"@crawlee/memory-storage": "^3.14.1",
"@crawlee/types": "^3.14.1",
"@google/genai": "^1.13.0",
"@modelcontextprotocol/sdk": "^1.17.2",
"@tavily/core": "^0.5.10",
"ai": "^5.0.10",
"cheerio": "^1.1.2",
"cheerio-select": "^2.1.0",
"crawlee": "^3.14.1",
"dotenv": "^16.6.1",
"exa-js": "^1.8.27",
"gray-matter": "^4.0.3",
"js-tiktoken": "^1.0.21",
"kleur": "^4.1.5",
"lru-cache": "^11.1.0",
"node-nlp": "^4.27.0",
"ohash": "^2.0.11",
"p-limit": "^6.2.0",
"p-retry": "^6.2.1",
"pino": "^9.8.0",
"zod": "^3.25.76"
},
"engines": {
"node": "20.x"
}
}