kimi-code/packages/acp-server/package.json
github-actions[bot] 13d86f8b7b
ci: release packages (#2881)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-14 20:51:17 +08:00

27 lines
716 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "@moonshot-ai/acp-server",
"version": "0.0.1",
"private": true,
"description": "Agent Client Protocol (ACP) host backed directly by the DI × Scope agent engine (agent-core-v2)",
"license": "MIT",
"author": "Moonshot AI",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"clean": "rm -rf dist"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@moonshot-ai/agent-core-v2": "workspace:^",
"@moonshot-ai/klient": "workspace:^",
"@moonshot-ai/protocol": "workspace:^"
}
}