@byfriends/cli 0.1.2 → 0.2.1

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/LICENSE +28 -0
  2. package/dist/main.mjs +849 -188
  3. package/package.json +23 -23
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byfriends/cli",
3
- "version": "0.1.2",
3
+ "version": "0.2.1",
4
4
  "description": "BYF (Be Your Friend), an AI coding agent that runs in your terminal",
5
5
  "license": "Proprietary",
6
6
  "author": "ByronFinn",
@@ -39,6 +39,27 @@
39
39
  "access": "public",
40
40
  "provenance": false
41
41
  },
42
+ "dependencies": {
43
+ "@earendil-works/pi-tui": "^0.74.0",
44
+ "@mariozechner/clipboard": "^0.3.9",
45
+ "chalk": "^5.4.1",
46
+ "cli-highlight": "^2.1.11",
47
+ "commander": "^13.1.0",
48
+ "semver": "^7.7.4",
49
+ "smol-toml": "^1.6.1",
50
+ "zod": "^4.3.6"
51
+ },
52
+ "devDependencies": {
53
+ "@types/semver": "^7.7.0",
54
+ "@types/yazl": "^2.4.6",
55
+ "postject": "1.0.0-alpha.6",
56
+ "tsx": "^4.21.0",
57
+ "yazl": "^3.3.1",
58
+ "@byfriends/sdk": "^0.2.1"
59
+ },
60
+ "engines": {
61
+ "node": ">=22.19.0"
62
+ },
42
63
  "scripts": {
43
64
  "build": "tsdown",
44
65
  "catalog:update": "node scripts/update-catalog.mjs --out dist/built-in-catalog.json",
@@ -58,26 +79,5 @@
58
79
  "e2e": "pnpm -w run build:packages && BYF_E2E=1 vitest run test/e2e",
59
80
  "e2e:real": "pnpm -w run build:packages && BYF_E2E_REAL=1 vitest run test/e2e/real-llm-smoke.e2e.test.ts",
60
81
  "postinstall": "node scripts/postinstall.mjs"
61
- },
62
- "dependencies": {
63
- "@earendil-works/pi-tui": "^0.74.0",
64
- "@mariozechner/clipboard": "^0.3.9",
65
- "chalk": "^5.4.1",
66
- "cli-highlight": "^2.1.11",
67
- "commander": "^13.1.0",
68
- "semver": "^7.7.4",
69
- "smol-toml": "^1.6.1",
70
- "zod": "^4.3.6"
71
- },
72
- "devDependencies": {
73
- "@byfriends/sdk": "workspace:^",
74
- "@types/semver": "^7.7.0",
75
- "@types/yazl": "^2.4.6",
76
- "postject": "1.0.0-alpha.6",
77
- "tsx": "^4.21.0",
78
- "yazl": "^3.3.1"
79
- },
80
- "engines": {
81
- "node": ">=22.19.0"
82
82
  }
83
- }
83
+ }