@yoooclaw/cli 0.0.5 → 0.0.6

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.
package/dist/version.d.ts CHANGED
@@ -1 +1,3 @@
1
1
  export declare const CLI_VERSION: string;
2
+ export type CliDist = "npm" | "native" | "dev";
3
+ export declare const CLI_DIST: CliDist;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoooclaw/cli",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "description": "yoooclaw 独立 CLI:本地守护进程接收手机通知、Relay 隧道、灯效规则评估,Agent-Native",
6
6
  "bin": {
@@ -22,6 +22,8 @@
22
22
  "scripts": {
23
23
  "build": "bun scripts/build.ts",
24
24
  "build:js": "bun scripts/build.ts",
25
+ "build:native": "bun scripts/build-native.ts",
26
+ "build:native:current": "bun scripts/build-native.ts --target current",
25
27
  "dev": "tsc --noEmit --watch",
26
28
  "test": "vitest run",
27
29
  "test:watch": "vitest",