langgraph-cli 0.4.19__tar.gz → 0.4.21__tar.gz
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.
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/PKG-INFO +3 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml +1 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/pyproject.toml +1 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/generate_schema.py +50 -5
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/package.json +5 -5
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/yarn.lock +113 -113
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/package.json +2 -2
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/package.json +4 -4
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/yarn.lock +153 -153
- langgraph_cli-0.4.21/langgraph_cli/__init__.py +1 -0
- langgraph_cli-0.4.21/langgraph_cli/archive.py +161 -0
- langgraph_cli-0.4.21/langgraph_cli/cli.py +998 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/config.py +271 -129
- langgraph_cli-0.4.21/langgraph_cli/deploy.py +1704 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/docker.py +128 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/host_backend.py +57 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/progress.py +9 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/schemas.py +97 -63
- langgraph_cli-0.4.21/langgraph_cli/util.py +27 -0
- langgraph_cli-0.4.21/langgraph_cli/uv_lock.py +1000 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/pyproject.toml +2 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/schema.json +289 -4
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/schema.v0.json +289 -4
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/test_cli.py +9 -9
- langgraph_cli-0.4.21/tests/unit_tests/test_archive.py +299 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_config.py +966 -5
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_deploy_helpers.py +63 -16
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_host_backend.py +3 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_logs_helpers.py +1 -1
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_util.py +2 -3
- langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/.env.example +1 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/langgraph.json +12 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/pyproject.toml +20 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/src/agent/__init__.py +0 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/src/agent/graph.py +31 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/pyproject.toml +16 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/src/shared/__init__.py +3 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/src/shared/utils.py +2 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/pyproject.toml +22 -0
- langgraph_cli-0.4.21/uv-examples/monorepo/uv.lock +893 -0
- langgraph_cli-0.4.21/uv-examples/simple/.env.example +1 -0
- langgraph_cli-0.4.21/uv-examples/simple/langgraph.json +11 -0
- langgraph_cli-0.4.21/uv-examples/simple/pyproject.toml +19 -0
- langgraph_cli-0.4.21/uv-examples/simple/src/agent/__init__.py +0 -0
- langgraph_cli-0.4.21/uv-examples/simple/src/agent/graph.py +29 -0
- langgraph_cli-0.4.21/uv-examples/simple/uv.lock +864 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/uv.lock +509 -487
- langgraph_cli-0.4.19/langgraph_cli/__init__.py +0 -1
- langgraph_cli-0.4.19/langgraph_cli/cli.py +0 -2002
- langgraph_cli-0.4.19/langgraph_cli/helpers.py +0 -59
- langgraph_cli-0.4.19/langgraph_cli/util.py +0 -91
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/.gitignore +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/LICENSE +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/Makefile +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/README.md +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/.env.example +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/.gitignore +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/Makefile +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/deps/zuper_deps/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/storm.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/subprompt.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/hello.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/prompt.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/requirements.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/graphs_submod/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/graphs_submod/subprompt.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/hello.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/prompt.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/requirements.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/utils/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/utils/greeter.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/my_app.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/pipconf.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/poetry.lock +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.dockerignore +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.editorconfig +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.env.example +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.eslintrc.cjs +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.gitignore +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/LICENSE +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/README.md +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/jest.config.js +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/src/agent/graph.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/src/agent/state.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/static/studio.png +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tests/agent.test.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tests/graph.int.test.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tsconfig.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/.eslintrc.cjs +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/src/graph.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/src/state.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/tsconfig.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/package.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/src/index.ts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/tsconfig.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/tsconfig.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/turbo.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/__main__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/analytics.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/constants.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/exec.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/py.typed +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/templates.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/version.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/.env.example +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/graph.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/state.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/common/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/common/helpers.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/src/shared/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/src/shared/utils.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/version.schema.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/integration_tests/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/integration_tests/test_cli.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/__init__.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/langgraph.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/pyproject.toml +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/test_templates.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/conftest.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/graphs/agent.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/helpers.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/multiplatform/js.mts +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/multiplatform/python.py +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/pipconfig.txt +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_config.json +0 -0
- {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_docker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langgraph-cli
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.21
|
|
4
4
|
Summary: CLI for interacting with LangGraph API
|
|
5
5
|
Project-URL: Source, https://github.com/langchain-ai/langgraph/tree/main/libs/cli
|
|
6
6
|
Project-URL: Twitter, https://x.com/LangChain
|
|
@@ -12,7 +12,9 @@ Requires-Python: >=3.10
|
|
|
12
12
|
Requires-Dist: click>=8.1.7
|
|
13
13
|
Requires-Dist: httpx>=0.24.0
|
|
14
14
|
Requires-Dist: langgraph-sdk>=0.1.0; python_version >= '3.11'
|
|
15
|
+
Requires-Dist: pathspec>=0.11.0
|
|
15
16
|
Requires-Dist: python-dotenv>=0.8.0
|
|
17
|
+
Requires-Dist: tomli>=2.0.1; python_version < '3.11'
|
|
16
18
|
Provides-Extra: inmem
|
|
17
19
|
Requires-Dist: langgraph-api<0.8.0,>=0.5.35; (python_version >= '3.11') and extra == 'inmem'
|
|
18
20
|
Requires-Dist: langgraph-runtime-inmem>=0.7; (python_version >= '3.11') and extra == 'inmem'
|
|
@@ -159,8 +159,8 @@ def generate_schema():
|
|
|
159
159
|
if k not in python_specific_props and k not in node_specific_props
|
|
160
160
|
]
|
|
161
161
|
|
|
162
|
-
# Create Python schema with python_version and pip_config_file
|
|
163
|
-
|
|
162
|
+
# Create legacy Python schema with python_version and pip_config_file
|
|
163
|
+
legacy_python_schema = {
|
|
164
164
|
"type": "object",
|
|
165
165
|
"properties": {
|
|
166
166
|
# Include Python-specific properties
|
|
@@ -170,10 +170,45 @@ def generate_schema():
|
|
|
170
170
|
},
|
|
171
171
|
"required": ["dependencies", "graphs"],
|
|
172
172
|
}
|
|
173
|
+
legacy_python_schema["properties"]["pip_installer"] = {
|
|
174
|
+
"anyOf": [
|
|
175
|
+
{"type": "string", "enum": ["auto", "pip", "uv"]},
|
|
176
|
+
{"type": "null"},
|
|
177
|
+
]
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
uv_source_python_schema = {
|
|
181
|
+
"type": "object",
|
|
182
|
+
"properties": {
|
|
183
|
+
**{
|
|
184
|
+
k: config_schema["properties"][k].copy()
|
|
185
|
+
for k in python_specific_props + common_props
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
"required": ["graphs", "source"],
|
|
189
|
+
}
|
|
190
|
+
# source must be a UvSource object (not null)
|
|
191
|
+
uv_source_python_schema["properties"]["source"] = {"$ref": "#/$defs/UvSource"}
|
|
192
|
+
uv_source_python_schema["properties"]["pip_installer"] = {
|
|
193
|
+
"anyOf": [
|
|
194
|
+
{"type": "string", "enum": ["auto", "pip", "uv"]},
|
|
195
|
+
{"type": "null"},
|
|
196
|
+
]
|
|
197
|
+
}
|
|
173
198
|
|
|
174
199
|
# Add enum constraint for python_version
|
|
175
|
-
if "python_version" in
|
|
176
|
-
|
|
200
|
+
if "python_version" in legacy_python_schema["properties"]:
|
|
201
|
+
legacy_python_schema["properties"]["python_version"]["enum"] = [
|
|
202
|
+
"3.11",
|
|
203
|
+
"3.12",
|
|
204
|
+
"3.13",
|
|
205
|
+
]
|
|
206
|
+
if "python_version" in uv_source_python_schema["properties"]:
|
|
207
|
+
uv_source_python_schema["properties"]["python_version"]["enum"] = [
|
|
208
|
+
"3.11",
|
|
209
|
+
"3.12",
|
|
210
|
+
"3.13",
|
|
211
|
+
]
|
|
177
212
|
|
|
178
213
|
# Create Node.js schema with node_version
|
|
179
214
|
node_schema = {
|
|
@@ -186,6 +221,12 @@ def generate_schema():
|
|
|
186
221
|
},
|
|
187
222
|
"required": ["node_version", "graphs"],
|
|
188
223
|
}
|
|
224
|
+
node_schema["properties"]["pip_installer"] = {
|
|
225
|
+
"anyOf": [
|
|
226
|
+
{"type": "string", "enum": ["auto", "pip", "uv"]},
|
|
227
|
+
{"type": "null"},
|
|
228
|
+
]
|
|
229
|
+
}
|
|
189
230
|
|
|
190
231
|
# Add enum constraint for node_version
|
|
191
232
|
if "node_version" in node_schema["properties"]:
|
|
@@ -202,7 +243,11 @@ def generate_schema():
|
|
|
202
243
|
]
|
|
203
244
|
|
|
204
245
|
# Replace the Config schema with a oneOf constraint
|
|
205
|
-
config_schema["oneOf"] = [
|
|
246
|
+
config_schema["oneOf"] = [
|
|
247
|
+
legacy_python_schema,
|
|
248
|
+
uv_source_python_schema,
|
|
249
|
+
node_schema,
|
|
250
|
+
]
|
|
206
251
|
|
|
207
252
|
# Remove the properties field as it's now defined in the oneOf subschemas
|
|
208
253
|
if "properties" in config_schema:
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
"test:all": "yarn test && yarn test:int && yarn lint:langgraph"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@langchain/core": "^1.1.
|
|
25
|
-
"@langchain/langgraph": "^1.2.
|
|
24
|
+
"@langchain/core": "^1.1.38",
|
|
25
|
+
"@langchain/langgraph": "^1.2.6"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@eslint/eslintrc": "^3.3.5",
|
|
29
29
|
"@eslint/js": "^10.0.1",
|
|
30
30
|
"@tsconfig/recommended": "^1.0.13",
|
|
31
31
|
"@types/jest": "^30.0.0",
|
|
32
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
33
|
-
"@typescript-eslint/parser": "^8.
|
|
32
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
33
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
34
34
|
"dotenv": "^17.3.1",
|
|
35
|
-
"eslint": "^10.0
|
|
35
|
+
"eslint": "^10.1.0",
|
|
36
36
|
"eslint-config-prettier": "^10.1.8",
|
|
37
37
|
"eslint-plugin-import": "^2.32.0",
|
|
38
38
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
@@ -483,14 +483,14 @@
|
|
|
483
483
|
debug "^4.3.1"
|
|
484
484
|
minimatch "^10.2.4"
|
|
485
485
|
|
|
486
|
-
"@eslint/config-helpers@^0.5.
|
|
487
|
-
version "0.5.
|
|
488
|
-
resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.
|
|
489
|
-
integrity sha512-
|
|
486
|
+
"@eslint/config-helpers@^0.5.3":
|
|
487
|
+
version "0.5.3"
|
|
488
|
+
resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.3.tgz#721fe6bbb90d74b0c80d6ff2428e5bbcb002becb"
|
|
489
|
+
integrity sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==
|
|
490
490
|
dependencies:
|
|
491
|
-
"@eslint/core" "^1.1.
|
|
491
|
+
"@eslint/core" "^1.1.1"
|
|
492
492
|
|
|
493
|
-
"@eslint/core@^1.1.
|
|
493
|
+
"@eslint/core@^1.1.1":
|
|
494
494
|
version "1.1.1"
|
|
495
495
|
resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.1.1.tgz#450f3d2be2d463ccd51119544092256b4e88df32"
|
|
496
496
|
integrity sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==
|
|
@@ -890,10 +890,10 @@
|
|
|
890
890
|
"@jridgewell/resolve-uri" "^3.1.0"
|
|
891
891
|
"@jridgewell/sourcemap-codec" "^1.4.14"
|
|
892
892
|
|
|
893
|
-
"@langchain/core@^1.1.
|
|
894
|
-
version "1.1.
|
|
895
|
-
resolved "https://registry.yarnpkg.com/@langchain/core/-/core-1.1.
|
|
896
|
-
integrity sha512-
|
|
893
|
+
"@langchain/core@^1.1.38":
|
|
894
|
+
version "1.1.38"
|
|
895
|
+
resolved "https://registry.yarnpkg.com/@langchain/core/-/core-1.1.38.tgz#b5939b2e77af408771c9bb95bf56a5ad8183313e"
|
|
896
|
+
integrity sha512-C340wH1YL10CiVOFlEpQMp0zQE85/eBLKX/gi1Lv7shAyUmR3CQ0t/mXlCd5RsZa6ntAN1kDJnp64ArWey9XAA==
|
|
897
897
|
dependencies:
|
|
898
898
|
"@cfworker/json-schema" "^4.0.2"
|
|
899
899
|
"@standard-schema/spec" "^1.1.0"
|
|
@@ -907,30 +907,30 @@
|
|
|
907
907
|
uuid "^11.1.0"
|
|
908
908
|
zod "^3.25.76 || ^4"
|
|
909
909
|
|
|
910
|
-
"@langchain/langgraph-checkpoint@^1.0.
|
|
911
|
-
version "1.0.
|
|
912
|
-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.0.
|
|
913
|
-
integrity sha512-
|
|
910
|
+
"@langchain/langgraph-checkpoint@^1.0.1":
|
|
911
|
+
version "1.0.1"
|
|
912
|
+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.0.1.tgz#0ee5bdfeb9878d8d1d99347f23e199e5afd52995"
|
|
913
|
+
integrity sha512-HM0cJLRpIsSlWBQ/xuDC67l52SqZ62Bh2Y61DX+Xorqwoh5e1KxYvfCD7GnSTbWWhjBOutvnR0vPhu4orFkZfw==
|
|
914
914
|
dependencies:
|
|
915
915
|
uuid "^10.0.0"
|
|
916
916
|
|
|
917
|
-
"@langchain/langgraph-sdk@~1.
|
|
918
|
-
version "1.
|
|
919
|
-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-1.
|
|
920
|
-
integrity sha512-
|
|
917
|
+
"@langchain/langgraph-sdk@~1.8.1":
|
|
918
|
+
version "1.8.3"
|
|
919
|
+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-1.8.3.tgz#deedc9bddd863693c6ab5f3a74058548b040377d"
|
|
920
|
+
integrity sha512-Py0S5yVtlOHz410aEsSGLRKjtsK2giDvfPS1JjAjTdcs71khuJufFtUZFwmwdJCbsG4DaGurRLHOAJu9jO4a0g==
|
|
921
921
|
dependencies:
|
|
922
922
|
"@types/json-schema" "^7.0.15"
|
|
923
923
|
p-queue "^9.0.1"
|
|
924
924
|
p-retry "^7.1.1"
|
|
925
925
|
uuid "^13.0.0"
|
|
926
926
|
|
|
927
|
-
"@langchain/langgraph@^1.2.
|
|
928
|
-
version "1.2.
|
|
929
|
-
resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-1.2.
|
|
930
|
-
integrity sha512-
|
|
927
|
+
"@langchain/langgraph@^1.2.6":
|
|
928
|
+
version "1.2.6"
|
|
929
|
+
resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-1.2.6.tgz#e6a578f96fbbc1c54ba78e0298884671dad5d195"
|
|
930
|
+
integrity sha512-5cX402dNGN6w9+0mlMU2dgUiKx6Y1tlENp7x05e9ByDbQCHSDc0kyqRWNFLGc7vatQ92S4ylxQrcCJvi8Fr4SQ==
|
|
931
931
|
dependencies:
|
|
932
|
-
"@langchain/langgraph-checkpoint" "^1.0.
|
|
933
|
-
"@langchain/langgraph-sdk" "~1.
|
|
932
|
+
"@langchain/langgraph-checkpoint" "^1.0.1"
|
|
933
|
+
"@langchain/langgraph-sdk" "~1.8.1"
|
|
934
934
|
"@standard-schema/spec" "1.1.0"
|
|
935
935
|
uuid "^10.0.0"
|
|
936
936
|
|
|
@@ -1103,100 +1103,100 @@
|
|
|
1103
1103
|
dependencies:
|
|
1104
1104
|
"@types/yargs-parser" "*"
|
|
1105
1105
|
|
|
1106
|
-
"@typescript-eslint/eslint-plugin@^8.
|
|
1107
|
-
version "8.
|
|
1108
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
1109
|
-
integrity sha512-
|
|
1106
|
+
"@typescript-eslint/eslint-plugin@^8.58.0":
|
|
1107
|
+
version "8.58.0"
|
|
1108
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz#ad40e492f1931f46da1bd888e52b9e56df9063aa"
|
|
1109
|
+
integrity sha512-RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==
|
|
1110
1110
|
dependencies:
|
|
1111
1111
|
"@eslint-community/regexpp" "^4.12.2"
|
|
1112
|
-
"@typescript-eslint/scope-manager" "8.
|
|
1113
|
-
"@typescript-eslint/type-utils" "8.
|
|
1114
|
-
"@typescript-eslint/utils" "8.
|
|
1115
|
-
"@typescript-eslint/visitor-keys" "8.
|
|
1112
|
+
"@typescript-eslint/scope-manager" "8.58.0"
|
|
1113
|
+
"@typescript-eslint/type-utils" "8.58.0"
|
|
1114
|
+
"@typescript-eslint/utils" "8.58.0"
|
|
1115
|
+
"@typescript-eslint/visitor-keys" "8.58.0"
|
|
1116
1116
|
ignore "^7.0.5"
|
|
1117
1117
|
natural-compare "^1.4.0"
|
|
1118
|
-
ts-api-utils "^2.
|
|
1118
|
+
ts-api-utils "^2.5.0"
|
|
1119
1119
|
|
|
1120
|
-
"@typescript-eslint/parser@^8.
|
|
1121
|
-
version "8.
|
|
1122
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.
|
|
1123
|
-
integrity sha512-
|
|
1120
|
+
"@typescript-eslint/parser@^8.58.0":
|
|
1121
|
+
version "8.58.0"
|
|
1122
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.58.0.tgz#da04ece1967b6c2fe8f10c3473dabf3825795ef7"
|
|
1123
|
+
integrity sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==
|
|
1124
1124
|
dependencies:
|
|
1125
|
-
"@typescript-eslint/scope-manager" "8.
|
|
1126
|
-
"@typescript-eslint/types" "8.
|
|
1127
|
-
"@typescript-eslint/typescript-estree" "8.
|
|
1128
|
-
"@typescript-eslint/visitor-keys" "8.
|
|
1125
|
+
"@typescript-eslint/scope-manager" "8.58.0"
|
|
1126
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1127
|
+
"@typescript-eslint/typescript-estree" "8.58.0"
|
|
1128
|
+
"@typescript-eslint/visitor-keys" "8.58.0"
|
|
1129
1129
|
debug "^4.4.3"
|
|
1130
1130
|
|
|
1131
|
-
"@typescript-eslint/project-service@8.
|
|
1132
|
-
version "8.
|
|
1133
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.
|
|
1134
|
-
integrity sha512-
|
|
1131
|
+
"@typescript-eslint/project-service@8.58.0":
|
|
1132
|
+
version "8.58.0"
|
|
1133
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.58.0.tgz#66ceda0aabf7427aec3e2713fa43eb278dead2aa"
|
|
1134
|
+
integrity sha512-8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==
|
|
1135
1135
|
dependencies:
|
|
1136
|
-
"@typescript-eslint/tsconfig-utils" "^8.
|
|
1137
|
-
"@typescript-eslint/types" "^8.
|
|
1136
|
+
"@typescript-eslint/tsconfig-utils" "^8.58.0"
|
|
1137
|
+
"@typescript-eslint/types" "^8.58.0"
|
|
1138
1138
|
debug "^4.4.3"
|
|
1139
1139
|
|
|
1140
|
-
"@typescript-eslint/scope-manager@8.
|
|
1141
|
-
version "8.
|
|
1142
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
1143
|
-
integrity sha512-
|
|
1140
|
+
"@typescript-eslint/scope-manager@8.58.0":
|
|
1141
|
+
version "8.58.0"
|
|
1142
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz#e304142775e49a1b7ac3c8bf2536714447c72cab"
|
|
1143
|
+
integrity sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==
|
|
1144
1144
|
dependencies:
|
|
1145
|
-
"@typescript-eslint/types" "8.
|
|
1146
|
-
"@typescript-eslint/visitor-keys" "8.
|
|
1145
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1146
|
+
"@typescript-eslint/visitor-keys" "8.58.0"
|
|
1147
1147
|
|
|
1148
|
-
"@typescript-eslint/tsconfig-utils@8.
|
|
1149
|
-
version "8.
|
|
1150
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
1151
|
-
integrity sha512-
|
|
1148
|
+
"@typescript-eslint/tsconfig-utils@8.58.0", "@typescript-eslint/tsconfig-utils@^8.58.0":
|
|
1149
|
+
version "8.58.0"
|
|
1150
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz#c5a8edb21f31e0fdee565724e1b984171c559482"
|
|
1151
|
+
integrity sha512-doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==
|
|
1152
1152
|
|
|
1153
|
-
"@typescript-eslint/type-utils@8.
|
|
1154
|
-
version "8.
|
|
1155
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.
|
|
1156
|
-
integrity sha512-
|
|
1153
|
+
"@typescript-eslint/type-utils@8.58.0":
|
|
1154
|
+
version "8.58.0"
|
|
1155
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz#ce0e72cd967ffbbe8de322db6089bd4374be352f"
|
|
1156
|
+
integrity sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==
|
|
1157
1157
|
dependencies:
|
|
1158
|
-
"@typescript-eslint/types" "8.
|
|
1159
|
-
"@typescript-eslint/typescript-estree" "8.
|
|
1160
|
-
"@typescript-eslint/utils" "8.
|
|
1158
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1159
|
+
"@typescript-eslint/typescript-estree" "8.58.0"
|
|
1160
|
+
"@typescript-eslint/utils" "8.58.0"
|
|
1161
1161
|
debug "^4.4.3"
|
|
1162
|
-
ts-api-utils "^2.
|
|
1163
|
-
|
|
1164
|
-
"@typescript-eslint/types@8.
|
|
1165
|
-
version "8.
|
|
1166
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.
|
|
1167
|
-
integrity sha512-
|
|
1168
|
-
|
|
1169
|
-
"@typescript-eslint/typescript-estree@8.
|
|
1170
|
-
version "8.
|
|
1171
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
1172
|
-
integrity sha512-
|
|
1173
|
-
dependencies:
|
|
1174
|
-
"@typescript-eslint/project-service" "8.
|
|
1175
|
-
"@typescript-eslint/tsconfig-utils" "8.
|
|
1176
|
-
"@typescript-eslint/types" "8.
|
|
1177
|
-
"@typescript-eslint/visitor-keys" "8.
|
|
1162
|
+
ts-api-utils "^2.5.0"
|
|
1163
|
+
|
|
1164
|
+
"@typescript-eslint/types@8.58.0", "@typescript-eslint/types@^8.58.0":
|
|
1165
|
+
version "8.58.0"
|
|
1166
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.58.0.tgz#e94ae7abdc1c6530e71183c1007b61fa93112a5a"
|
|
1167
|
+
integrity sha512-O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==
|
|
1168
|
+
|
|
1169
|
+
"@typescript-eslint/typescript-estree@8.58.0":
|
|
1170
|
+
version "8.58.0"
|
|
1171
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz#ed233faa8e2f2a2e1357c3e7d553d6465a0ee59a"
|
|
1172
|
+
integrity sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==
|
|
1173
|
+
dependencies:
|
|
1174
|
+
"@typescript-eslint/project-service" "8.58.0"
|
|
1175
|
+
"@typescript-eslint/tsconfig-utils" "8.58.0"
|
|
1176
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1177
|
+
"@typescript-eslint/visitor-keys" "8.58.0"
|
|
1178
1178
|
debug "^4.4.3"
|
|
1179
1179
|
minimatch "^10.2.2"
|
|
1180
1180
|
semver "^7.7.3"
|
|
1181
1181
|
tinyglobby "^0.2.15"
|
|
1182
|
-
ts-api-utils "^2.
|
|
1182
|
+
ts-api-utils "^2.5.0"
|
|
1183
1183
|
|
|
1184
|
-
"@typescript-eslint/utils@8.
|
|
1185
|
-
version "8.
|
|
1186
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.
|
|
1187
|
-
integrity sha512-
|
|
1184
|
+
"@typescript-eslint/utils@8.58.0":
|
|
1185
|
+
version "8.58.0"
|
|
1186
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.58.0.tgz#21a74a7963b0d288b719a4121c7dd555adaab3c3"
|
|
1187
|
+
integrity sha512-RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==
|
|
1188
1188
|
dependencies:
|
|
1189
1189
|
"@eslint-community/eslint-utils" "^4.9.1"
|
|
1190
|
-
"@typescript-eslint/scope-manager" "8.
|
|
1191
|
-
"@typescript-eslint/types" "8.
|
|
1192
|
-
"@typescript-eslint/typescript-estree" "8.
|
|
1190
|
+
"@typescript-eslint/scope-manager" "8.58.0"
|
|
1191
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1192
|
+
"@typescript-eslint/typescript-estree" "8.58.0"
|
|
1193
1193
|
|
|
1194
|
-
"@typescript-eslint/visitor-keys@8.
|
|
1195
|
-
version "8.
|
|
1196
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
1197
|
-
integrity sha512-
|
|
1194
|
+
"@typescript-eslint/visitor-keys@8.58.0":
|
|
1195
|
+
version "8.58.0"
|
|
1196
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz#2abd55a4be70fd55967aceaba4330b9ba9f45189"
|
|
1197
|
+
integrity sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==
|
|
1198
1198
|
dependencies:
|
|
1199
|
-
"@typescript-eslint/types" "8.
|
|
1199
|
+
"@typescript-eslint/types" "8.58.0"
|
|
1200
1200
|
eslint-visitor-keys "^5.0.0"
|
|
1201
1201
|
|
|
1202
1202
|
"@ungap/structured-clone@^1.3.0":
|
|
@@ -2275,15 +2275,15 @@ eslint-visitor-keys@^5.0.0, eslint-visitor-keys@^5.0.1:
|
|
|
2275
2275
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz#9e3c9489697824d2d4ce3a8ad12628f91e9f59be"
|
|
2276
2276
|
integrity sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==
|
|
2277
2277
|
|
|
2278
|
-
eslint@^10.0
|
|
2279
|
-
version "10.0
|
|
2280
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.0.
|
|
2281
|
-
integrity sha512-
|
|
2278
|
+
eslint@^10.1.0:
|
|
2279
|
+
version "10.1.0"
|
|
2280
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.1.0.tgz#9ca98e654e642ab2e1af6d1e9d8613857ac341b4"
|
|
2281
|
+
integrity sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==
|
|
2282
2282
|
dependencies:
|
|
2283
2283
|
"@eslint-community/eslint-utils" "^4.8.0"
|
|
2284
2284
|
"@eslint-community/regexpp" "^4.12.2"
|
|
2285
2285
|
"@eslint/config-array" "^0.23.3"
|
|
2286
|
-
"@eslint/config-helpers" "^0.5.
|
|
2286
|
+
"@eslint/config-helpers" "^0.5.3"
|
|
2287
2287
|
"@eslint/core" "^1.1.1"
|
|
2288
2288
|
"@eslint/plugin-kit" "^0.6.1"
|
|
2289
2289
|
"@humanfs/node" "^0.16.6"
|
|
@@ -2296,7 +2296,7 @@ eslint@^10.0.3:
|
|
|
2296
2296
|
escape-string-regexp "^4.0.0"
|
|
2297
2297
|
eslint-scope "^9.1.2"
|
|
2298
2298
|
eslint-visitor-keys "^5.0.1"
|
|
2299
|
-
espree "^11.
|
|
2299
|
+
espree "^11.2.0"
|
|
2300
2300
|
esquery "^1.7.0"
|
|
2301
2301
|
esutils "^2.0.2"
|
|
2302
2302
|
fast-deep-equal "^3.1.3"
|
|
@@ -2320,10 +2320,10 @@ espree@^10.0.1:
|
|
|
2320
2320
|
acorn-jsx "^5.3.2"
|
|
2321
2321
|
eslint-visitor-keys "^4.0.0"
|
|
2322
2322
|
|
|
2323
|
-
espree@^11.
|
|
2324
|
-
version "11.
|
|
2325
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-11.
|
|
2326
|
-
integrity sha512-
|
|
2323
|
+
espree@^11.2.0:
|
|
2324
|
+
version "11.2.0"
|
|
2325
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-11.2.0.tgz#01d5e47dc332aaba3059008362454a8cc34ccaa5"
|
|
2326
|
+
integrity sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==
|
|
2327
2327
|
dependencies:
|
|
2328
2328
|
acorn "^8.16.0"
|
|
2329
2329
|
acorn-jsx "^5.3.2"
|
|
@@ -2483,9 +2483,9 @@ flat-cache@^4.0.0:
|
|
|
2483
2483
|
keyv "^4.5.4"
|
|
2484
2484
|
|
|
2485
2485
|
flatted@^3.2.9:
|
|
2486
|
-
version "3.
|
|
2487
|
-
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.
|
|
2488
|
-
integrity sha512-
|
|
2486
|
+
version "3.4.2"
|
|
2487
|
+
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.4.2.tgz#f5c23c107f0f37de8dbdf24f13722b3b98d52726"
|
|
2488
|
+
integrity sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==
|
|
2489
2489
|
|
|
2490
2490
|
for-each@^0.3.3:
|
|
2491
2491
|
version "0.3.3"
|
|
@@ -2696,9 +2696,9 @@ graceful-fs@^4.2.11:
|
|
|
2696
2696
|
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
|
|
2697
2697
|
|
|
2698
2698
|
handlebars@^4.7.8:
|
|
2699
|
-
version "4.7.
|
|
2700
|
-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.
|
|
2701
|
-
integrity sha512-
|
|
2699
|
+
version "4.7.9"
|
|
2700
|
+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.9.tgz#6f139082ab58dc4e5a0e51efe7db5ae890d56a0f"
|
|
2701
|
+
integrity sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==
|
|
2702
2702
|
dependencies:
|
|
2703
2703
|
minimist "^1.2.5"
|
|
2704
2704
|
neo-async "^2.6.2"
|
|
@@ -4639,10 +4639,10 @@ to-regex-range@^5.0.1:
|
|
|
4639
4639
|
dependencies:
|
|
4640
4640
|
is-number "^7.0.0"
|
|
4641
4641
|
|
|
4642
|
-
ts-api-utils@^2.
|
|
4643
|
-
version "2.
|
|
4644
|
-
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.
|
|
4645
|
-
integrity sha512-
|
|
4642
|
+
ts-api-utils@^2.5.0:
|
|
4643
|
+
version "2.5.0"
|
|
4644
|
+
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.5.0.tgz#4acd4a155e22734990a5ed1fe9e97f113bcb37c1"
|
|
4645
|
+
integrity sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==
|
|
4646
4646
|
|
|
4647
4647
|
ts-jest@^29.4.6:
|
|
4648
4648
|
version "29.4.6"
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"lint": "eslint 'apps/**/*.ts' 'libs/**/*.ts'"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"turbo": "^2.
|
|
20
|
+
"turbo": "^2.9.3",
|
|
21
21
|
"typescript": "^5.9.3",
|
|
22
22
|
"@tsconfig/recommended": "^1.0.13",
|
|
23
23
|
"@eslint/eslintrc": "^3.3.5",
|
|
24
24
|
"@eslint/js": "^10.0.1",
|
|
25
|
-
"eslint": "^10.0
|
|
25
|
+
"eslint": "^10.1.0",
|
|
26
26
|
"eslint-config-prettier": "^10.1.8",
|
|
27
27
|
"eslint-plugin-import": "^2.27.5",
|
|
28
28
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
29
29
|
"eslint-plugin-prettier": "^5.5.5",
|
|
30
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
31
|
-
"@typescript-eslint/parser": "^8.
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
31
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
32
32
|
"prettier": "^3.8.1"
|
|
33
33
|
}
|
|
34
34
|
}
|