-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "langgraph-starter-kit",
"version": "1.0.0",
"description": "Production-ready multi-agent starter kit with LangGraph — supports swarm, supervisor, HITL, structured output, and 5 LLM providers",
"private": true,
"type": "module",
"keywords": [
"langgraph",
"langchain",
"multi-agent",
"ai-agents",
"swarm",
"supervisor",
"mcp",
"openai",
"anthropic",
"ollama",
"structured-output",
"human-in-the-loop",
"typescript"
],
"license": "Apache-2.0",
"author": "Abhishek Chauhan",
"repository": {
"type": "git",
"url": "https://github.com/ac12644/langgraph-starter-kit"
},
"scripts": {
"dev": "tsx src/index.ts",
"dev:http": "tsx src/server/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"dependencies": {
"@langchain/anthropic": "^1.3.26",
"@langchain/core": "^1.1.39",
"@langchain/google-genai": "^2.1.26",
"@langchain/groq": "^1.2.0",
"@langchain/langgraph": "^1.2.7",
"@langchain/langgraph-supervisor": "^1.0.1",
"@langchain/langgraph-swarm": "^1.0.1",
"@langchain/mcp-adapters": "^1.1.3",
"@langchain/ollama": "^1.2.6",
"@langchain/openai": "^1.4.2",
"@langchain/textsplitters": "^1.0.1",
"dotenv": "^17.4.0",
"fastify": "^5.8.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}