mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
* ci(kimi-desktop): strip Developer ID prefix from CSC_NAME electron-builder rejects the 'Developer ID Application: ' prefix in CSC_NAME; the keychain setup exports the full certificate name, so strip the prefix before passing it to electron-builder. * ci(kimi-desktop): add homepage and maintainer for linux .deb electron-builder's .deb target requires a project homepage and a package maintainer; set both so the Linux build succeeds.
24 lines
690 B
JSON
24 lines
690 B
JSON
{
|
|
"name": "@moonshot-ai/kimi-desktop",
|
|
"version": "0.1.1-internal.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"description": "Kimi Code desktop client — an Electron shell around the Kimi web UI.",
|
|
"author": "Moonshot AI",
|
|
"homepage": "https://github.com/MoonshotAI/kimi-code",
|
|
"type": "module",
|
|
"main": "out/main.cjs",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"start": "electron .",
|
|
"dev": "tsdown && electron .",
|
|
"typecheck": "tsc --noEmit",
|
|
"dist": "tsdown && electron-builder --config electron-builder.config.cjs"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "33.4.11",
|
|
"electron-builder": "25.1.8",
|
|
"tsdown": "0.22.0",
|
|
"typescript": "6.0.2"
|
|
}
|
|
}
|