kfc-code-cli 0.0.1-alpha.20 → 0.0.1-alpha.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,20 @@
1
1
  #!/usr/bin/env node
2
- import { r as __exportAll } from "./chunk-pPjepVcp.mjs";
3
- //#region ../../packages/kimi-core/src/soul-plus/session/session-event-bus.ts
2
+ import { r as __exportAll$1 } from "./chunk-pPjepVcp.mjs";
3
+ //#region ../../packages/kimi-core/dist/session-event-bus-DNeVy6cB.mjs
4
+ var session_event_bus_DNeVy6cB_exports = /* @__PURE__ */ __exportAll$1({
5
+ n: () => session_event_bus_exports,
6
+ t: () => SessionEventBus
7
+ });
8
+ var __defProp = Object.defineProperty;
9
+ var __exportAll = (all, no_symbols) => {
10
+ let target = {};
11
+ for (var name in all) __defProp(target, name, {
12
+ get: all[name],
13
+ enumerable: true
14
+ });
15
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
16
+ return target;
17
+ };
4
18
  var session_event_bus_exports = /* @__PURE__ */ __exportAll({ SessionEventBus: () => SessionEventBus });
5
19
  var SessionEventBus = class {
6
20
  listeners = [];
@@ -103,4 +117,4 @@ function safeDispatch(fn, arg, onError) {
103
117
  });
104
118
  }
105
119
  //#endregion
106
- export { session_event_bus_exports as n, SessionEventBus as t };
120
+ export { session_event_bus_DNeVy6cB_exports as n, SessionEventBus as t };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kfc-code-cli",
3
- "version": "0.0.1-alpha.20",
3
+ "version": "0.0.1-alpha.22",
4
4
  "description": "KFC crazy ",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -16,34 +16,34 @@
16
16
  "access": "public",
17
17
  "provenance": true
18
18
  },
19
- "scripts": {
20
- "build": "tsdown && rm -rf agents && cp -R ../../packages/kimi-core/agents agents",
21
- "dev": "tsx ./src/main.ts",
22
- "clean": "rm -rf dist",
23
- "test": "vitest run",
24
- "e2e": "vitest run test/e2e",
25
- "e2e:real": "KIMI_E2E_REAL=1 vitest run test/e2e/real-llm-smoke.e2e.test.ts",
26
- "release": "bash scripts/release.sh"
27
- },
28
19
  "dependencies": {
29
20
  "@mariozechner/clipboard": "^0.3.2",
30
21
  "@mariozechner/pi-tui": "^0.73.0",
31
22
  "chalk": "^5.4.1",
32
23
  "cli-highlight": "^2.1.11",
33
- "clipboardy": "^4.0.0",
34
24
  "commander": "^13.1.0",
35
- "marked": "^18.0.0",
36
25
  "pino": "^9.6.0",
37
26
  "semver": "^7.7.4",
38
- "smol-toml": "^1.3.1",
27
+ "smol-toml": "^1.6.1",
39
28
  "ssh2": "^1.17.0",
40
29
  "yazl": "^3.3.1",
41
30
  "zod": "^4.3.6"
42
31
  },
43
32
  "devDependencies": {
44
- "@types/marked": "^6.0.0",
45
33
  "@types/semver": "^7.7.0",
46
34
  "@types/yazl": "^2.4.6",
47
- "tsx": "^4.19.4"
35
+ "tsx": "^4.21.0",
36
+ "@moonshot-ai/sdk": "^0.1.0",
37
+ "@moonshot-ai/core": "^0.1.0"
38
+ },
39
+ "scripts": {
40
+ "build": "tsdown && rm -rf agents && cp -R ../../packages/kimi-core/agents agents",
41
+ "dev": "pnpm -w run build:packages && pnpm run build && node ./dist/main.mjs",
42
+ "clean": "rm -rf dist",
43
+ "typecheck": "tsc -p tsconfig.json --noEmit",
44
+ "test": "pnpm -w run build:packages && vitest run",
45
+ "e2e": "pnpm -w run build:packages && vitest run test/e2e",
46
+ "e2e:real": "pnpm -w run build:packages && KIMI_E2E_REAL=1 vitest run test/e2e/real-llm-smoke.e2e.test.ts",
47
+ "release": "bash scripts/release.sh"
48
48
  }
49
- }
49
+ }