webfox 4.0.0 → 4.0.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.
- package/README.md +1 -1
- package/dist/{chunk-L425U55P.js → chunk-GAWPRXAU.js} +1 -1
- package/dist/{chunk-SMF5ALX7.js → chunk-MVCCEPDF.js} +1 -1
- package/dist/cli.js +2 -2
- package/dist/config.schema.json +1 -1
- package/dist/index.js +2 -2
- package/dist/pi-render.d.ts +1 -1
- package/dist/pi.js +3 -3
- package/example-config.yaml +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -172,7 +172,7 @@ or, on Windows, `APPDATA`. Override it with `WEBFOX_CONFIG` or `--config <path>`
|
|
|
172
172
|
For example:
|
|
173
173
|
|
|
174
174
|
```yaml
|
|
175
|
-
$schema: https://unpkg.com/webfox@
|
|
175
|
+
$schema: https://unpkg.com/webfox@4.0.0/dist/config.schema.json
|
|
176
176
|
defaults:
|
|
177
177
|
search:
|
|
178
178
|
provider: brave
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
// package.json
|
|
9
9
|
var package_default = {
|
|
10
10
|
name: "webfox",
|
|
11
|
-
version: "4.0.
|
|
11
|
+
version: "4.0.1",
|
|
12
12
|
description: "Search the web, extract pages, get grounded answers, and run deep research with the web CLI, a TypeScript library, and a pi extension. Bring your own providers and API keys.",
|
|
13
13
|
type: "module",
|
|
14
14
|
files: [
|
package/dist/cli.js
CHANGED
|
@@ -11,12 +11,12 @@ import {
|
|
|
11
11
|
redactConfig,
|
|
12
12
|
resolveConfigPath,
|
|
13
13
|
setCapabilityDefault
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-MVCCEPDF.js";
|
|
15
15
|
import "./chunk-WCTOYZVB.js";
|
|
16
16
|
import {
|
|
17
17
|
PACKAGE_VERSION,
|
|
18
18
|
validateConfiguredOptions
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-GAWPRXAU.js";
|
|
20
20
|
import "./chunk-ZVTVERW5.js";
|
|
21
21
|
import {
|
|
22
22
|
CAPABILITIES,
|
package/dist/config.schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://unpkg.com/webfox@4.0.
|
|
3
|
+
"$id": "https://unpkg.com/webfox@4.0.1/dist/config.schema.json",
|
|
4
4
|
"title": "webfox configuration",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"additionalProperties": false,
|
package/dist/index.js
CHANGED
|
@@ -6,12 +6,12 @@ import {
|
|
|
6
6
|
resolveConfigPath,
|
|
7
7
|
setCapabilityDefault,
|
|
8
8
|
validateConfig
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-MVCCEPDF.js";
|
|
10
10
|
import "./chunk-WCTOYZVB.js";
|
|
11
11
|
import {
|
|
12
12
|
CONFIG_SCHEMA_URL,
|
|
13
13
|
validateConfiguredOptions
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-GAWPRXAU.js";
|
|
15
15
|
import "./chunk-ZVTVERW5.js";
|
|
16
16
|
import {
|
|
17
17
|
CAPABILITIES,
|
package/dist/pi-render.d.ts
CHANGED
package/dist/pi.js
CHANGED
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
} from "./chunk-QRHDXM2L.js";
|
|
4
4
|
import {
|
|
5
5
|
createWebfox
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-MVCCEPDF.js";
|
|
7
7
|
import "./chunk-WCTOYZVB.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-GAWPRXAU.js";
|
|
9
9
|
import "./chunk-ZVTVERW5.js";
|
|
10
10
|
import {
|
|
11
11
|
CAPABILITIES
|
|
@@ -245,7 +245,7 @@ function renderSearchResult(details, fallback, theme) {
|
|
|
245
245
|
// src/pi-render.ts
|
|
246
246
|
var inputStates = {
|
|
247
247
|
queued: { glyph: "\u25CF", color: "dim" },
|
|
248
|
-
running: { glyph: "\u25B6\uFE0E", color: "
|
|
248
|
+
running: { glyph: "\u25B6\uFE0E", color: "muted" },
|
|
249
249
|
done: { glyph: "\u2714\uFE0E", color: "success" },
|
|
250
250
|
failed: { glyph: "\u2718\uFE0E", color: "error" },
|
|
251
251
|
cancelled: { glyph: "\u25A0", color: "dim" }
|
package/example-config.yaml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webfox",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Search the web, extract pages, get grounded answers, and run deep research with the web CLI, a TypeScript library, and a pi extension. Bring your own providers and API keys.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|