Files
deepagentsjs/libs/acp/package.json
T
github-actions[bot] 44d6d3dfea chore: version packages (#733)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## deepagents-acp@0.1.24

### Patch Changes

- Updated dependencies
[[`77e104f`](https://github.com/langchain-ai/deepagentsjs/commit/77e104f26a62ae34afbb1393edf191009d37280c),
[`239be7e`](https://github.com/langchain-ai/deepagentsjs/commit/239be7e883227e463504652bc00272ec947a21a6),
[`1439bbf`](https://github.com/langchain-ai/deepagentsjs/commit/1439bbfb267e92b7a19ce0924399591495976c21)]:
  - deepagents@1.12.3
## deepagents@1.12.3

### Patch Changes

- [#724](https://github.com/langchain-ai/deepagentsjs/pull/724)
[`77e104f`](https://github.com/langchain-ai/deepagentsjs/commit/77e104f26a62ae34afbb1393edf191009d37280c)
Thanks [@gethin-langchain](https://github.com/gethin-langchain)! -
feat(deepagents): add `output_mode` parameter to the `grep` tool
(`files_with_matches` / `content` / `count`)

- [#732](https://github.com/langchain-ai/deepagentsjs/pull/732)
[`239be7e`](https://github.com/langchain-ai/deepagentsjs/commit/239be7e883227e463504652bc00272ec947a21a6)
Thanks [@hntrl](https://github.com/hntrl)! - fix(deepagents): disable
summary-input trimming by default

Match Python DeepAgents by providing the full selected conversation to
the summarizer unless `trimTokensToSummarize` is explicitly configured.
This prevents oversized tool results from producing context-empty
summaries under the default configuration.

- [#739](https://github.com/langchain-ai/deepagentsjs/pull/739)
[`1439bbf`](https://github.com/langchain-ai/deepagentsjs/commit/1439bbfb267e92b7a19ce0924399591495976c21)
Thanks [@taoche](https://github.com/taoche)! - fix(deepagents): extract
text from content blocks when building the summary
## @deepagents/evals@0.0.23

### Patch Changes

- Updated dependencies
[[`77e104f`](https://github.com/langchain-ai/deepagentsjs/commit/77e104f26a62ae34afbb1393edf191009d37280c),
[`239be7e`](https://github.com/langchain-ai/deepagentsjs/commit/239be7e883227e463504652bc00272ec947a21a6),
[`1439bbf`](https://github.com/langchain-ai/deepagentsjs/commit/1439bbfb267e92b7a19ce0924399591495976c21)]:
  - deepagents@1.12.3

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-12 16:02:01 -07:00

86 lines
2.1 KiB
JSON

{
"name": "deepagents-acp",
"version": "0.1.24",
"description": "ACP (Agent Client Protocol) server for DeepAgents - enables IDE integration with Zed, JetBrains, and other ACP clients",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"deepagents-acp": "./dist/cli.js"
},
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist/ .tsdown/",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:unit": "vitest run",
"test:int": "vitest run --mode int",
"test:all": "vitest run --mode all",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langchain-ai/deepagentsjs.git"
},
"keywords": [
"ai",
"agents",
"acp",
"agent-client-protocol",
"zed",
"ide",
"langgraph",
"langchain",
"typescript"
],
"author": "LangChain",
"license": "MIT",
"bugs": {
"url": "https://github.com/langchain-ai/deepagentsjs/issues"
},
"homepage": "https://github.com/langchain-ai/deepagentsjs#readme",
"dependencies": {
"@agentclientprotocol/sdk": "^1.1.0",
"deepagents": "workspace:*"
},
"devDependencies": {
"@langchain/core": "^1.1.42",
"@langchain/langgraph": "^1.2.9",
"@langchain/langgraph-checkpoint": "^1.0.0",
"@tsconfig/recommended": "^1.0.13",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"dotenv": "^17.2.4",
"tsdown": "^0.22.1",
"tsx": "^4.21.0",
"typescript": "^7.0.2",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@langchain/core": "^1.1.40",
"@langchain/langgraph": "^1.2.9"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*"
]
}