@arcforge/axon 0.0.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.
Binary file
Binary file
package/package.json CHANGED
@@ -1,15 +1,50 @@
1
1
  {
2
- "name": "@arcforge/axon",
3
- "version": "0.0.2",
4
- "description": "",
5
- "type": "module",
6
- "bin": {
7
- "axon": "./index.js"
8
- },
9
- "engines": {
10
- "bun": ">=1.0.0"
11
- },
12
- "files": [
13
- "index.js"
14
- ]
2
+ "name": "@arcforge/axon",
3
+ "version": "0.7.3",
4
+ "description": "High-performance CLI coding agent with Blessed terminal UI",
5
+ "type": "module",
6
+ "bin": {
7
+ "axon": "dist/axon.js"
8
+ },
9
+ "main": "app/index.ts",
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "dev": "bun run app/index.ts",
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
+ "prepublishOnly": "bun run build",
19
+ "deploy": "bun run deploy:patch",
20
+ "deploy:patch": "bun run build && npm version patch --workspaces false && npm publish --access public",
21
+ "deploy:minor": "npm version minor --workspaces false && npm publish --access public",
22
+ "deploy:major": "npm version major --workspaces false && npm publish --access public"
23
+ },
24
+ "keywords": [
25
+ "cli",
26
+ "terminal",
27
+ "chat",
28
+ "agent",
29
+ "blessed",
30
+ "coding",
31
+ "axon"
32
+ ],
33
+ "dependencies": {
34
+ "blessed": "^0.1.81"
35
+ },
36
+ "devDependencies": {
37
+ "@types/bun": "latest",
38
+ "@types/blessed": "^0.1.27",
39
+ "@cognos/ws": "workspace:*",
40
+ "@arclabs/tools": "workspace:*",
41
+ "@arclabs/capsuleer": "/home/cody/git/capsuleer",
42
+ "clipboardy": "^5.0.1",
43
+ "fft.js": "^4.0.4",
44
+ "fuckoff": "^0.0.1",
45
+ "remark": "^15.0.1",
46
+ "remark-gfm": "^4.0.1",
47
+ "shiki": "^3.20.0",
48
+ "unist-util-visit": "^5.0.0"
49
+ }
15
50
  }