@petukhovart/agent-view 0.9.1 → 0.9.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/README.md +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<a href="https://npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/v/@petukhovart/agent-view?color=yellow" alt="npm version" /></a>
|
|
9
|
-
<a href="https://npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/dt/@petukhovart/agent-view?color=blue" alt="npm downloads" /></a>
|
|
10
|
-
<a href="https://npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/unpacked-size/@petukhovart/agent-view?color=purple&label=size" alt="package size" /></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/v/@petukhovart/agent-view?color=yellow" alt="npm version" /></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/dt/@petukhovart/agent-view?color=blue" alt="npm downloads" /></a>
|
|
10
|
+
<a href="https://www.npmjs.com/package/@petukhovart/agent-view"><img src="https://img.shields.io/npm/unpacked-size/@petukhovart/agent-view?color=purple&label=size" alt="package size" /></a>
|
|
11
11
|
<a href="https://github.com/PetukhovArt/agent-view/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@petukhovart/agent-view?color=green" alt="license" /></a>
|
|
12
12
|
<a href="https://nodejs.org"><img src="https://img.shields.io/node/v/@petukhovart/agent-view" alt="node" /></a>
|
|
13
13
|
<a href="https://github.com/PetukhovArt/agent-view/stargazers"><img src="https://img.shields.io/github/stars/PetukhovArt/agent-view?style=flat&color=orange" alt="github stars" /></a>
|
|
@@ -321,15 +321,15 @@ Full form with all optional fields:
|
|
|
321
321
|
}
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
| Field | Required | Description
|
|
325
|
-
|
|
326
|
-
| `runtime` | yes | `"electron"`, `"tauri"`, or `"browser"`
|
|
327
|
-
| `port` | yes | CDP debugging port
|
|
328
|
-
| `launch` |
|
|
329
|
-
| `webgl.engine` | no | `"pixi"`
|
|
330
|
-
| `allowEval` | no | `true` to enable `agent-view eval` and `watch`. Off by default; opt-in for arbitrary JS execution
|
|
331
|
-
| `consoleBufferSize` | no | Per-target console ring capacity. Default `500`
|
|
332
|
-
| `consoleTargets` | no | Target types `agent-view console` auto-attaches to. Default `["page", "shared_worker", "service_worker"]` |
|
|
324
|
+
| Field | Required | Description |
|
|
325
|
+
|---------------------|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
326
|
+
| `runtime` | yes | `"electron"`, `"tauri"`, or `"browser"` |
|
|
327
|
+
| `port` | yes | CDP debugging port. Integer in range `1`–`65535` |
|
|
328
|
+
| `launch` | yes | Shell command used by `agent-view launch` to start the app (e.g. `"npm run dev"`). Pass an empty string if you always start the app yourself |
|
|
329
|
+
| `webgl.engine` | no | Scene-graph engine. Currently `"pixi"` ships an adapter; the architecture is pluggable for adding more engines |
|
|
330
|
+
| `allowEval` | no | `true` to enable `agent-view eval` and `watch`. Off by default; opt-in for arbitrary JS execution |
|
|
331
|
+
| `consoleBufferSize` | no | Per-target console ring capacity. Positive integer. Default `500` |
|
|
332
|
+
| `consoleTargets` | no | Target types `agent-view console` auto-attaches to on first call. Any subset of `["page", "iframe", "shared_worker", "service_worker", "worker"]`. Default `["page", "shared_worker", "service_worker"]` |
|
|
333
333
|
|
|
334
334
|
---
|
|
335
335
|
|
package/package.json
CHANGED