cli4ai 1.1.1 → 1.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli4ai",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "The package manager for AI CLI tools - cli4ai.com",
5
5
  "type": "module",
6
6
  "bin": {
package/src/bin.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env npx tsx
2
2
  /**
3
3
  * cli4ai - The package manager for AI CLI tools
4
4
  * cli4ai.com
@@ -1,11 +1,11 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env npx tsx
2
2
  /**
3
3
  * Scheduler daemon entry point.
4
4
  *
5
5
  * This script runs as a background process and manages scheduled routine execution.
6
6
  * It's spawned by `cli4ai scheduler start` with detached mode.
7
7
  *
8
- * Usage: bun scheduler-daemon.ts [--project-dir <dir>]
8
+ * Usage: npx tsx scheduler-daemon.ts [--project-dir <dir>]
9
9
  */
10
10
 
11
11
  import { Scheduler, writeDaemonPid, removeDaemonPid, appendSchedulerLog, SCHEDULER_LOG_FILE, ensureSchedulerDirs } from './scheduler.js';