mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-23 01:26:57 -04:00
5b98e5c257
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
117 lines
3.3 KiB
JSON
117 lines
3.3 KiB
JSON
{
|
|
"name": "@langchain/langgraph-api",
|
|
"version": "1.1.8",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^18.19.0 || >=20.16.0"
|
|
},
|
|
"license": "MIT",
|
|
"main": "./dist/cli/spawn.mjs",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/cli/spawn.d.mts",
|
|
"default": "./dist/cli/spawn.mjs"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/server.d.mts",
|
|
"default": "./dist/server.mjs"
|
|
},
|
|
"./auth": {
|
|
"types": "./dist/auth/index.d.mts",
|
|
"default": "./dist/auth/index.mjs"
|
|
},
|
|
"./graph": {
|
|
"types": "./dist/graph/api.d.mts",
|
|
"default": "./dist/graph/api.mjs"
|
|
},
|
|
"./semver": {
|
|
"types": "./dist/semver/index.d.mts",
|
|
"default": "./dist/semver/index.mjs"
|
|
},
|
|
"./schema": {
|
|
"types": "./dist/graph/parser/index.d.mts",
|
|
"default": "./dist/graph/parser/index.mjs"
|
|
},
|
|
"./storage": {
|
|
"types": "./dist/storage/types.d.mts",
|
|
"default": "./dist/storage/types.mjs"
|
|
},
|
|
"./experimental/embed": {
|
|
"types": "./dist/experimental/embed.d.mts",
|
|
"default": "./dist/experimental/embed.mjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/langchain-ai/langgraphjs.git",
|
|
"directory": "libs/langgraph-api"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist/ .turbo/ ./tests/graphs/.langgraph_api/",
|
|
"build": "yarn turbo:command build:internal --filter=@langchain/langgraph-api",
|
|
"build:internal": "yarn clean && node scripts/build.mjs",
|
|
"dev": "tsx ./tests/utils.server.mts --dev",
|
|
"prepublish": "yarn build",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "^7.26.2",
|
|
"@hono/node-server": "^1.12.0",
|
|
"@hono/zod-validator": "^0.7.6",
|
|
"@langchain/langgraph-ui": "workspace:*",
|
|
"@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.3.33",
|
|
"open": "^10.1.0",
|
|
"semver": "^7.7.1",
|
|
"stacktrace-parser": "^0.1.10",
|
|
"superjson": "^2.2.2",
|
|
"tsx": "^4.19.3",
|
|
"uuid": "^10.0.0",
|
|
"winston": "^3.17.0",
|
|
"winston-console-format": "^1.0.8",
|
|
"zod": "^3.25.76 || ^4"
|
|
},
|
|
"peerDependencies": {
|
|
"@langchain/core": "^0.3.59 || ^1.0.1",
|
|
"@langchain/langgraph": "^0.2.57 || ^0.3.0 || ^0.4.0 || ^1.0.0-alpha || ^1.0.0",
|
|
"@langchain/langgraph-checkpoint": "~0.0.16 || ^0.1.0 || ~1.0.0",
|
|
"@langchain/langgraph-sdk": "~0.0.16 || ^0.1.0 || ^1.0.0",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@langchain/langgraph-sdk": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@langchain/core": "^1.0.0",
|
|
"@langchain/langgraph": "workspace:*",
|
|
"@langchain/langgraph-checkpoint": "workspace:*",
|
|
"@langchain/langgraph-sdk": "workspace:*",
|
|
"@types/babel__code-frame": "^7.0.6",
|
|
"@types/node": "^18.15.11",
|
|
"@types/react": "^19.0.8",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@types/semver": "^7.7.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"jose": "^6.0.10",
|
|
"postgres": "^3.4.5",
|
|
"prettier": "^2.8.3",
|
|
"typescript": "^4.9.5 || ^5.4.5",
|
|
"vitest": "^3.2.4",
|
|
"wait-port": "^1.1.0"
|
|
}
|
|
}
|