@langchain/langgraph-api 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,6 +4,6 @@ In-memory implementation of the LangGraph.js API.
4
4
 
5
5
  ## Tests
6
6
 
7
- 1. Build the latest code changes to test: `yarn build`
8
- 1. Start a local server: `yarn dev`
9
- 1. Run the tests: `yarn test`
7
+ 1. Build the latest code changes to test: `pnpm build`
8
+ 1. Start a local server: `pnpm dev`
9
+ 1. Run the tests: `pnpm test`
@@ -1,2 +1,2 @@
1
- declare const _default: import("vitest/config").UserConfigFnObject;
1
+ declare const _default: import("vitest/config.js").UserConfigFnObject;
2
2
  export default _default;
@@ -1,5 +1,4 @@
1
- import { configDefaults, defineConfig } from "vitest/config";
2
- import { nodePolyfills } from "vite-plugin-node-polyfills";
1
+ import { defineConfig } from "vitest/config";
3
2
  export default defineConfig(() => {
4
3
  /** @type {import("vitest/config").UserConfigExport} */
5
4
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-api",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -50,22 +50,10 @@
50
50
  "url": "git+ssh://git@github.com/langchain-ai/langgraphjs.git",
51
51
  "directory": "libs/langgraph-api"
52
52
  },
53
- "scripts": {
54
- "clean": "rm -rf dist/ .turbo/ ./tests/graphs/.langgraph_api/",
55
- "build": "yarn turbo:command build:internal --filter=@langchain/langgraph-api",
56
- "build:internal": "yarn clean && node scripts/build.mjs",
57
- "dev": "tsx ./tests/utils.server.mts --dev",
58
- "prepublish": "yarn build",
59
- "typecheck": "tsc --noEmit",
60
- "test": "vitest run",
61
- "format": "prettier --write .",
62
- "format:check": "prettier --check ."
63
- },
64
53
  "dependencies": {
65
54
  "@babel/code-frame": "^7.26.2",
66
55
  "@hono/node-server": "^1.12.0",
67
56
  "@hono/zod-validator": "^0.7.6",
68
- "@langchain/langgraph-ui": "workspace:*",
69
57
  "@types/json-schema": "^7.0.15",
70
58
  "@typescript/vfs": "^1.6.0",
71
59
  "dedent": "^1.5.3",
@@ -81,7 +69,8 @@
81
69
  "uuid": "^10.0.0",
82
70
  "winston": "^3.17.0",
83
71
  "winston-console-format": "^1.0.8",
84
- "zod": "^3.25.76 || ^4"
72
+ "zod": "^3.25.76 || ^4",
73
+ "@langchain/langgraph-ui": "1.1.10"
85
74
  },
86
75
  "peerDependencies": {
87
76
  "@langchain/core": "^0.3.59 || ^1.0.1",
@@ -97,9 +86,6 @@
97
86
  },
98
87
  "devDependencies": {
99
88
  "@langchain/core": "^1.0.0",
100
- "@langchain/langgraph": "workspace:*",
101
- "@langchain/langgraph-checkpoint": "workspace:*",
102
- "@langchain/langgraph-sdk": "workspace:*",
103
89
  "@types/babel__code-frame": "^7.0.6",
104
90
  "@types/node": "^18.15.11",
105
91
  "@types/react": "^19.0.8",
@@ -111,6 +97,20 @@
111
97
  "prettier": "^2.8.3",
112
98
  "typescript": "^4.9.5 || ^5.4.5",
113
99
  "vitest": "^3.2.4",
114
- "wait-port": "^1.1.0"
100
+ "wait-port": "^1.1.0",
101
+ "@langchain/langgraph": "1.0.14",
102
+ "@langchain/langgraph-checkpoint": "1.0.0",
103
+ "@langchain/langgraph-sdk": "1.4.6"
104
+ },
105
+ "scripts": {
106
+ "clean": "rm -rf dist/ .turbo/ ./tests/graphs/.langgraph_api/",
107
+ "build": "pnpm turbo build:internal --filter=@langchain/langgraph-api",
108
+ "build:internal": "pnpm clean && node scripts/build.mjs",
109
+ "dev": "tsx ./tests/utils.server.mts --dev",
110
+ "prepublish": "pnpm build",
111
+ "typecheck": "tsc --noEmit",
112
+ "test": "vitest run",
113
+ "format": "prettier --write .",
114
+ "format:check": "prettier --check ."
115
115
  }
116
- }
116
+ }