mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
- rename packages/server-v2 to packages/kap-server and update every @moonshot-ai/server-v2 reference across apps, packages, flake.nix, and build scripts - remove the experimental `kimi v2` CLI prefix and its tests from the apps/kimi-code main entry - add legacy BackgroundTask protocol types and the `blocked` turn interrupt reason for cross-engine compatibility
42 lines
1 KiB
JSON
42 lines
1 KiB
JSON
{
|
||
"name": "@moonshot-ai/kap-server",
|
||
"version": "0.0.0",
|
||
"private": true,
|
||
"description": "Kimi Code server backed by the DI × Scope agent engine (agent-core-v2)",
|
||
"type": "module",
|
||
"exports": {
|
||
".": {
|
||
"types": "./src/index.ts",
|
||
"default": "./src/index.ts"
|
||
},
|
||
"./contract": {
|
||
"types": "./src/contract.ts",
|
||
"default": "./src/contract.ts"
|
||
}
|
||
},
|
||
"scripts": {
|
||
"build": "tsdown",
|
||
"typecheck": "tsc -p tsconfig.json --noEmit",
|
||
"test": "vitest run",
|
||
"clean": "rm -rf dist"
|
||
},
|
||
"dependencies": {
|
||
"@fastify/multipart": "^10.0.0",
|
||
"@fastify/swagger": "^9.7.0",
|
||
"@moonshot-ai/agent-core-v2": "workspace:^",
|
||
"@moonshot-ai/protocol": "workspace:^",
|
||
"bcryptjs": "2.4.3",
|
||
"fastify": "^5.1.0",
|
||
"pino": "^9.5.0",
|
||
"pino-pretty": "^13.0.0",
|
||
"smol-toml": "1.6.1",
|
||
"ulid": "^3.0.1",
|
||
"ws": "^8.20.0",
|
||
"zod": "catalog:"
|
||
},
|
||
"devDependencies": {
|
||
"@types/bcryptjs": "2.4.6",
|
||
"@types/ws": "^8.18.0",
|
||
"tsx": "^4.21.0"
|
||
}
|
||
}
|