@struere/cli 0.1.1 → 0.2.0

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.
Files changed (2) hide show
  1. package/dist/index.js +1148 -629
  2. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@struere/cli",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "CLI tool for developing, testing, and deploying AI agents",
5
5
  "keywords": ["ai", "agents", "cli", "developer-tools", "llm"],
6
6
  "author": "struere",
@@ -24,7 +24,7 @@
24
24
  "main": "./dist/index.js",
25
25
  "files": ["dist"],
26
26
  "scripts": {
27
- "build": "bun build ./src/index.ts --outdir ./dist --target node --external commander --external chalk --external ora --external chokidar --external yaml --external @struere/runtime && chmod +x ./dist/index.js",
27
+ "build": "bun build ./src/index.ts --outdir ./dist --target bun --external commander --external chalk --external ora --external chokidar --external yaml --external @struere/runtime && chmod +x ./dist/index.js",
28
28
  "dev": "tsc --watch",
29
29
  "test": "bun test"
30
30
  },