@byfriends/cli 0.2.0 → 0.2.2
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/dist/main.mjs +23080 -600
- package/package.json +2 -2
- package/dist/{src-C2y9uz6g.mjs → src-DfvfYZUv.mjs} +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byfriends/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "BYF (Be Your Friend), an AI coding agent that runs in your terminal",
|
|
5
5
|
"license": "Proprietary",
|
|
6
6
|
"author": "ByronFinn",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"postject": "1.0.0-alpha.6",
|
|
56
56
|
"tsx": "^4.21.0",
|
|
57
57
|
"yazl": "^3.3.1",
|
|
58
|
-
"@byfriends/sdk": "^0.2.
|
|
58
|
+
"@byfriends/sdk": "^0.2.2"
|
|
59
59
|
},
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=22.19.0"
|
|
@@ -8,11 +8,11 @@ import { i as init_esm_min, n as FormData, o as Blob, r as formDataToBlob, s as
|
|
|
8
8
|
import Ns, { PassThrough, pipeline } from "node:stream";
|
|
9
9
|
import http from "node:http";
|
|
10
10
|
import { format } from "node:url";
|
|
11
|
-
import https from "node:https";
|
|
12
|
-
import zlib from "node:zlib";
|
|
13
|
-
import { Buffer as Buffer$1 } from "node:buffer";
|
|
14
|
-
import { deprecate, promisify, types } from "node:util";
|
|
15
11
|
import { isIP } from "node:net";
|
|
12
|
+
import { deprecate, promisify, types } from "node:util";
|
|
13
|
+
import { Buffer as Buffer$1 } from "node:buffer";
|
|
14
|
+
import zlib from "node:zlib";
|
|
15
|
+
import https from "node:https";
|
|
16
16
|
//#region ../../node_modules/.pnpm/data-uri-to-buffer@4.0.1/node_modules/data-uri-to-buffer/dist/index.js
|
|
17
17
|
/**
|
|
18
18
|
* Returns a `Buffer` instance from the given data URI `uri`.
|