Files
deepagentsjs/libs/acp/package.json
T
github-actions[bot] 02321d6fb1 chore: version packages (#388)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-03-30 13:13:32 -07:00

85 lines
2.1 KiB
JSON

{
"name": "deepagents-acp",
"version": "0.1.6",
"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": "^0.17.0",
"deepagents": "workspace:*"
},
"devDependencies": {
"@langchain/core": "^1.1.37",
"@langchain/langgraph": "^1.1.3",
"@langchain/langgraph-checkpoint": "^1.0.0",
"@tsconfig/recommended": "^1.0.13",
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"tsdown": "^0.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@langchain/core": "^1.1.37",
"@langchain/langgraph": "^1.0.0"
},
"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/**/*"
]
}