@inbrowser/agent 0.3.0 → 0.3.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/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inbrowser/agent",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Agent runtime + CLI. Library exports AgentSession, AgentStrategy, ToolRegistry, ModelClient, MetricsCollector, SandboxObserver. Ships an `agent` binary with NDJSON output, --json stdin, --dry-run, schema introspection, and inverse-mode MCP serve. Domain-agnostic — hosts wire their own AgentDefinitions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
11
|
"types": "./dist/index.d.ts",
|
|
@@ -25,11 +26,12 @@
|
|
|
25
26
|
"files": ["dist", "bin", "skills", "AGENTS.md", "README.md"],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsc",
|
|
29
|
+
"prepublishOnly": "bun run build",
|
|
28
30
|
"test": "bun test",
|
|
29
31
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
30
32
|
},
|
|
31
33
|
"dependencies": {
|
|
32
|
-
"@inbrowser/model": "
|
|
34
|
+
"@inbrowser/model": "^0.2.0",
|
|
33
35
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
34
36
|
"@opentui/core": "^0.1.0",
|
|
35
37
|
"@opentui/react": "^0.1.0",
|