-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
60
61
62
{
"name": "deep-research",
"version": "0.1.4",
"description": "Open source deep research TS/JS library with built in web search, reasoning, and bibliography generation",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/JigsawStack/deep-research",
"keywords": ["ai", "framework", "deep-research", "web-search", "reasoning"],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/JigsawStack/deep-research.git"
},
"bugs": {
"url": "https://github.com/JigsawStack/deep-research/issues"
},
"packageManager": "yarn@1.22.22",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": ["dist/**"],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll --minify --src=./src",
"lint": "biome lint .",
"format": "biome check --write .",
"dev": "tsx examples/simple_research.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.1.2",
"@ai-sdk/deepinfra": "^0.1.5",
"@ai-sdk/google": "^1.1.2",
"@ai-sdk/groq": "^1.1.2",
"@ai-sdk/openai": "^1.1.9",
"@openrouter/ai-sdk-provider": "^0.7.5",
"ai": "^4.3.16",
"jigsawstack": "^0.3.7",
"json-schema": "^0.4.0",
"ts-retry": "^6.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.10",
"body-parser": "^2.2.0",
"express": "^5.1.0",
"pkgroll": "^2.6.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}