@arcforge/axon 0.7.2 → 0.7.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.
Files changed (3) hide show
  1. package/README.md +168 -25
  2. package/dist/axon.js +171 -197
  3. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforge/axon",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "High-performance CLI coding agent with Blessed terminal UI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "dev": "bun run app/index.ts",
17
- "build": "rm -rf dist && bun build app/index.ts --target=bun --outdir dist --minify && mv dist/index.js dist/axon.js && (echo '#!/usr/bin/env bun' && cat dist/axon.js) > dist/axon.tmp && mv dist/axon.tmp dist/axon.js && chmod +x dist/axon.js",
17
+ "build": "rm -rf dist && bun build app/index.ts --target=bun --outdir dist --minify --external blessed && mv dist/index.js dist/axon.js && (echo '#!/usr/bin/env bun' && cat dist/axon.js) > dist/axon.tmp && mv dist/axon.tmp dist/axon.js && chmod +x dist/axon.js",
18
18
  "prepublishOnly": "bun run build",
19
19
  "deploy": "bun run deploy:patch",
20
20
  "deploy:patch": "bun run build && npm version patch --workspaces false && npm publish --access public",