kimi-code/packages/telemetry/package.json
2026-05-22 15:54:50 +08:00

46 lines
987 B
JSON

{
"name": "@moonshot-ai/kimi-telemetry",
"version": "0.1.1",
"private": true,
"description": "Shared telemetry infrastructure for Kimi Code",
"license": "MIT",
"author": "Moonshot AI",
"homepage": "https://github.com/MoonshotAI/kimi-code/tree/main/packages/telemetry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MoonshotAI/kimi-code.git",
"directory": "packages/telemetry"
},
"bugs": {
"url": "https://github.com/MoonshotAI/kimi-code/issues"
},
"keywords": [
"kimi",
"telemetry",
"analytics",
"events",
"client"
],
"files": [
"dist"
],
"type": "module",
"imports": {
"#/*": [
"./src/*.ts",
"./src/*/index.ts"
]
},
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist"
}
}