Files
langgraphjs-api/libs/langgraph-api/package.json
Tat Dat Duong cead7a1e21 Replace concurrently with bun shell
Turns out that concurrently behaves weird on Windows, with the server never starting when running under concurrently. Swapping to Bun Shell for cross-platform shell fixes the issue
2025-02-05 00:58:23 +01:00

58 lines
1.5 KiB
JSON

{
"name": "@langchain/langgraph-api",
"version": "0.0.9",
"type": "module",
"engines": {
"node": ">=18"
},
"license": "Elastic-2.0",
"main": "./dist/cli/spawn.mjs",
"files": [
"dist/"
],
"scripts": {
"build": "npx -y bun scripts/build.mjs",
"dev": "tsx ./tests/utils.server.mts",
"prepack": "pnpm run build",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:parser": "vitest run ./tests/parser.test.mts --testTimeout 15000",
"test:api": "npx -y bun scripts/test.mjs"
},
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@hono/node-server": "^1.12.0",
"@hono/zod-validator": "^0.2.2",
"@types/json-schema": "^7.0.15",
"@typescript/vfs": "^1.6.0",
"dedent": "^1.5.3",
"dotenv": "^16.4.7",
"exit-hook": "^4.0.0",
"hono": "^4.5.4",
"langsmith": "^0.2.15",
"open": "^10.1.0",
"stacktrace-parser": "^0.1.10",
"superjson": "^2.2.2",
"tsx": "^4.19.2",
"uuid": "^10.0.0",
"winston": "^3.17.0",
"winston-console-format": "^1.0.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"@langchain/core": "^0.3.36",
"@langchain/langgraph": "^0.2.43",
"@langchain/langgraph-checkpoint": "^0.0.14",
"typescript": "^5.5.4"
},
"devDependencies": {
"@langchain/langgraph-sdk": "^0.0.33",
"@types/babel__code-frame": "^7.0.6",
"@types/node": "^22.2.0",
"@types/uuid": "^10.0.0",
"postgres": "^3.4.5",
"prettier": "^3.3.3",
"vitest": "^3.0.5"
}
}