mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-08-20 22:26:23 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
27 lines
716 B
JSON
27 lines
716 B
JSON
{
|
||
"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:^"
|
||
}
|
||
}
|