-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.3 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.3 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
{
"name": "my_agent",
"version": "0.0.1",
"description": "A starter template for creating a LangGraph workflow.",
"packageManager": "bun@1.3.0",
"main": "my_app/index.ts",
"author": "Dylan",
"license": "Dylan's License",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist node_modules",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
"test:int": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
"format": "biome --check",
"lint:langgraph": "node scripts/checkLanggraphPaths.js",
"lint:all": "bun format & bun lint:langgraph-json",
"test:all": "bun test && bun test:int && bun lint:langgraph",
"start": "bunx @langchain/langgraph-cli dev"
},
"dependencies": {
"@langchain/anthropic": "^0.3.32",
"@langchain/core": "^1.0.0-alpha.7",
"@langchain/langgraph": "^1.0.0-alpha.5",
"@langchain/langgraph-cli": "^0.0.71"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.10",
"@types/jest": "^30.0.0",
"biome": "^0.3.3",
"dotenv": "^17.2.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"zod": "^4.1.12"
}
}