mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
37 lines
761 B
JSON
37 lines
761 B
JSON
{
|
|
"name": "@moonshot-ai/migration-legacy",
|
|
"version": "0.1.15",
|
|
"description": "Migrate kimi-cli (~/.kimi/) data into kimi-code (~/.kimi-code/).",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@moonshot-ai/agent-core": "workspace:^",
|
|
"smol-toml": "^1.6.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@moonshot-ai/kaos": "workspace:^"
|
|
}
|
|
}
|