-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "devsync",
"private": true,
"version": "0.1.24",
"license": "MIT",
"type": "module",
"scripts": {
"dev:server": "node --watch server/src/index.js",
"dev:web": "npm --prefix web run dev",
"build": "npm --prefix web run build",
"check:server": "for file in server/src/*.js; do node --check \"$file\"; done",
"test:server": "node --test server/src/*.test.js",
"start": "node server/src/index.js",
"mcp": "node server/src/mcp.js"
},
"dependencies": {
"@fastify/multipart": "^10.0.0",
"@fastify/static": "^9.1.3",
"@langchain/anthropic": "^1.4.0",
"@langchain/aws": "^1.3.8",
"@langchain/core": "^1.1.46",
"@langchain/google-genai": "^2.1.31",
"@langchain/groq": "^1.2.1",
"@langchain/mistralai": "^1.0.8",
"@langchain/openai": "^1.4.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"deepagents": "^1.10.2",
"fastify": "^5.8.5",
"langchain": "^1.4.0",
"zod": "^4.4.3"
},
"overrides": {
"qs": "6.15.2",
"@langchain/langgraph": {
"uuid": "13.0.2"
},
"@langchain/langgraph-checkpoint": {
"uuid": "13.0.2"
}
}
}