Files
langgraphjs-api/libs/langgraph-cli/package.json
T
2025-02-05 01:57:45 +01:00

57 lines
1.4 KiB
JSON

{
"name": "@langchain/langgraph-cli",
"version": "0.0.10",
"type": "module",
"engines": {
"node": ">=18"
},
"license": "MIT",
"main": "./dist/server.mjs",
"types": "./dist/server.d.mts",
"bin": {
"langgraphjs": "dist/cli/cli.mjs"
},
"files": [
"dist/"
],
"scripts": {
"clean": "npx -y bun scripts/clean.mjs",
"build": "npx -y bun scripts/build.mjs",
"prepack": "pnpm run build",
"typecheck": "tsc --noEmit",
"cli": "tsx src/cli/cli.mts",
"cli:watch": "tsx watch src/cli/cli.mts",
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@commander-js/extra-typings": "^13.0.0",
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"dedent": "^1.5.3",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"exit-hook": "^4.0.0",
"extract-zip": "^2.0.1",
"langsmith": "^0.2.15",
"open": "^10.1.0",
"stacktrace-parser": "^0.1.10",
"tar": "^7.4.3",
"winston": "^3.17.0",
"winston-console-format": "^1.0.8",
"yaml": "^2.7.0",
"zod": "^3.23.8",
"@babel/code-frame": "^7.26.2",
"@langchain/langgraph-api": "workspace:*"
},
"devDependencies": {
"tsx": "^4.19.2",
"@types/babel__code-frame": "^7.0.6",
"@types/node": "^22.2.0",
"prettier": "^3.3.3",
"vitest": "^3.0.5",
"typescript": "^5.5.4"
}
}