kimi-code/packages/daemon-e2e/package.json
haozhe.yang a7f31367d5 feat(daemon,web): expand daemon APIs and web client
- 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
2026-06-11 10:14:45 +08:00

45 lines
1.1 KiB
JSON

{
"name": "@moonshot-ai/daemon-e2e",
"version": "0.1.0",
"private": true,
"description": "Wire-level E2E test client for the kimi-code daemon (HTTP + WS). Powers scenario scripts and self-tests against a real daemon process.",
"license": "MIT",
"author": "Moonshot AI",
"repository": {
"type": "git",
"url": "git+https://github.com/MoonshotAI/kimi-code.git",
"directory": "packages/daemon-e2e"
},
"bugs": {
"url": "https://github.com/MoonshotAI/kimi-code/issues"
},
"type": "module",
"imports": {
"#/*": [
"./src/*.ts",
"./src/*/index.ts"
]
},
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:scenarios": "tsx scripts/run-scenarios.ts",
"clean": "rm -rf dist"
},
"dependencies": {
"@moonshot-ai/protocol": "workspace:^",
"ulid": "^3.0.1",
"ws": "^8.18.0",
"zod": "catalog:"
},
"devDependencies": {
"@types/ws": "^8.18.0"
}
}