-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "langgraph-client-cli",
"version": "0.0.6",
"description": "A CLI wrapper for the LangGraph SDK",
"main": "dist/index.js",
"bin": {
"langgraph-client-cli": "dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && chmod +x dist/index.js",
"dev": "npm run build && node dist/index.js",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"dependencies": {
"@langchain/langgraph-sdk": "^0.0.102",
"commander": "^14.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.16.5",
"typescript": "^5.8.3",
"eslint": "^8.57.1",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"prettier": "^3.6.2",
"jest": "^29.7.0",
"@types/jest": "^29.5.14",
"ts-jest": "^29.4.0"
}
}