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>
72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "@moonshot-ai/kimi-code-sdk",
|
|
"version": "0.13.0",
|
|
"private": true,
|
|
"description": "TypeScript SDK for the Kimi Code Agent",
|
|
"license": "MIT",
|
|
"author": "Moonshot AI",
|
|
"homepage": "https://github.com/MoonshotAI/kimi-code/tree/main/packages/node-sdk#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MoonshotAI/kimi-code.git",
|
|
"directory": "packages/node-sdk"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/MoonshotAI/kimi-code/issues"
|
|
},
|
|
"keywords": [
|
|
"kimi",
|
|
"sdk",
|
|
"typescript",
|
|
"agent",
|
|
"api"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"type": "module",
|
|
"imports": {
|
|
"#/*": [
|
|
"./src/*.ts",
|
|
"./src/*/index.ts"
|
|
]
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"provenance": true
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown && pnpm run build:dts",
|
|
"build:dts": "node scripts/build-dts.mjs",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"clean": "rm -rf dist .tmp-api-extractor"
|
|
},
|
|
"dependencies": {
|
|
"@antfu/utils": "^9.3.0",
|
|
"smol-toml": "^1.6.1",
|
|
"yazl": "^3.3.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@moonshot-ai/agent-core": "workspace:^",
|
|
"@moonshot-ai/kaos": "workspace:^",
|
|
"@moonshot-ai/kimi-code-oauth": "workspace:^",
|
|
"@moonshot-ai/kosong": "workspace:^",
|
|
"@types/yazl": "^2.4.6",
|
|
"jimp": "^1.6.1"
|
|
}
|
|
}
|