mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-08-27 01:24:46 +00:00
- restructure daemon/services DI wiring and lifecycle events - add session, workspace, model catalog, file, and reverse-RPC REST APIs - add daemon e2e package with structured scenarios and HTML trace reports - polish kimi-web rendering, mobile layout, diff view, and session UX
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"name": "@moonshot-ai/daemon",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Local REST + WebSocket daemon exposing kimi-code SDK over a stable wire protocol.",
|
|
"license": "MIT",
|
|
"author": "Moonshot AI",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MoonshotAI/kimi-code.git",
|
|
"directory": "packages/daemon"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/MoonshotAI/kimi-code/issues"
|
|
},
|
|
"type": "module",
|
|
"imports": {
|
|
"#/services/approval": "./src/services/approval/index.ts",
|
|
"#/services/approval/*": "./src/services/approval/*.ts",
|
|
"#/services/fileStore": "./src/services/fileStore/index.ts",
|
|
"#/services/fileStore/*": "./src/services/fileStore/*.ts",
|
|
"#/services/fs": "./src/services/fs/index.ts",
|
|
"#/services/fs/*": "./src/services/fs/*.ts",
|
|
"#/services/gateway": "./src/services/gateway/index.ts",
|
|
"#/services/gateway/*": "./src/services/gateway/*.ts",
|
|
"#/services/logger": "./src/services/logger/index.ts",
|
|
"#/services/logger/*": "./src/services/logger/*.ts",
|
|
"#/services/question": "./src/services/question/index.ts",
|
|
"#/services/question/*": "./src/services/question/*.ts",
|
|
"#/services/workspace": "./src/services/workspace/index.ts",
|
|
"#/services/workspace/*": "./src/services/workspace/*.ts",
|
|
"#/*": "./src/*.ts"
|
|
},
|
|
"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": {
|
|
"@fastify/multipart": "^10.0.0",
|
|
"@fastify/swagger": "^9.7.0",
|
|
"@fastify/swagger-ui": "^5.2.6",
|
|
"@moonshot-ai/agent-core": "workspace:^",
|
|
"@moonshot-ai/protocol": "workspace:^",
|
|
"@moonshot-ai/services": "workspace:^",
|
|
"chokidar": "^4.0.3",
|
|
"fastify": "^5.1.0",
|
|
"ignore": "^5.3.2",
|
|
"pino": "^9.5.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"ulid": "^3.0.1",
|
|
"ws": "^8.18.0",
|
|
"zod": "catalog:",
|
|
"zod-to-json-schema": "^3.25.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.18.0"
|
|
}
|
|
}
|