forked from dzhng/deep-research
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "open-deep-research-api",
"version": "0.0.1",
"main": "src/api/server.ts",
"type": "module",
"scripts": {
"format": "prettier --write \"src/**/*.{ts}\"",
"start": "node --experimental-specifier-resolution=node dist/api/server.js",
"dev": "tsx watch src/api/server.ts",
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.0",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.9",
"@clerk/express": "^1.3.46",
"@mendable/firecrawl-js": "^1.16.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.15",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"ai": "^4.1.17",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"js-tiktoken": "^1.0.17",
"lodash-es": "^4.17.21",
"p-limit": "^6.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.1"
},
"engines": {
"node": "22.x"
}
}