@absolutejs/agent 0.24.0 → 0.26.0
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 +16 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "The production-grade, provider-neutral agent stack for AbsoluteJS: auth, actions, runtime, sandboxing, trust, memory, inbox, discovery, MCP, A2A, policy, wallet limits, controls, and conformance.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"access": "public"
|
|
134
134
|
},
|
|
135
135
|
"scripts": {
|
|
136
|
-
"build": "rm -rf dist && bun build src/*.ts --outdir dist --root src --target=bun --sourcemap --external '@absolutejs/*' --external '@absolutejs/execution' --external '@sinclair/typebox' --external drizzle-orm --external 'drizzle-orm/*' && tsc -p tsconfig.build.json && absolute-manifest emit",
|
|
136
|
+
"build": "rm -rf dist && bun build src/*.ts --outdir dist --root src --target=bun --sourcemap --external '@absolutejs/*' --external '@absolutejs/auth' --external '@absolutejs/execution' --external '@sinclair/typebox' --external drizzle-orm --external 'drizzle-orm/*' && tsc -p tsconfig.build.json && absolute-manifest emit",
|
|
137
137
|
"typecheck": "tsc --noEmit",
|
|
138
138
|
"test": "bun test",
|
|
139
139
|
"format": "prettier --write \"./**/*.{ts,json,md,yml}\"",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"dependencies": {
|
|
145
145
|
"@absolutejs/a2a": "^0.3.6",
|
|
146
146
|
"@absolutejs/agency": "^0.7.3",
|
|
147
|
-
"@absolutejs/agent-conformance": "^0.
|
|
147
|
+
"@absolutejs/agent-conformance": "^0.15.0",
|
|
148
148
|
"@absolutejs/agent-control": "^0.5.7",
|
|
149
149
|
"@absolutejs/agent-discovery": "^0.2.2",
|
|
150
150
|
"@absolutejs/agent-inbox": "^0.3.4",
|
|
@@ -153,7 +153,6 @@
|
|
|
153
153
|
"@absolutejs/agent-sandbox": "^0.2.1",
|
|
154
154
|
"@absolutejs/agent-trust": "^0.2.1",
|
|
155
155
|
"@absolutejs/arazzo": "^0.1.3",
|
|
156
|
-
"@absolutejs/auth": "^0.57.6",
|
|
157
156
|
"@absolutejs/manifest": "^0.7.3",
|
|
158
157
|
"@absolutejs/mcp": "^0.11.3",
|
|
159
158
|
"@absolutejs/policy": "^0.3.0",
|
|
@@ -162,6 +161,7 @@
|
|
|
162
161
|
"@sinclair/typebox": "^0.34.0"
|
|
163
162
|
},
|
|
164
163
|
"devDependencies": {
|
|
164
|
+
"@absolutejs/auth": "0.65.0",
|
|
165
165
|
"@absolutejs/execution": "0.14.6",
|
|
166
166
|
"@types/bun": "^1.3.14",
|
|
167
167
|
"drizzle-orm": "1.0.0-rc.4",
|
|
@@ -180,6 +180,17 @@
|
|
|
180
180
|
"absolutejs": {
|
|
181
181
|
"manifestContract": 2,
|
|
182
182
|
"runtimePeers": {
|
|
183
|
+
"@absolutejs/auth": {
|
|
184
|
+
"artifactImports": [
|
|
185
|
+
"@absolutejs/auth/agents"
|
|
186
|
+
],
|
|
187
|
+
"buildExternals": [
|
|
188
|
+
"@absolutejs/auth"
|
|
189
|
+
],
|
|
190
|
+
"optional": false,
|
|
191
|
+
"range": ">=0.57.6 <1",
|
|
192
|
+
"tested": "0.65.0"
|
|
193
|
+
},
|
|
183
194
|
"@absolutejs/execution": {
|
|
184
195
|
"artifactImports": [
|
|
185
196
|
"@absolutejs/execution"
|
|
@@ -206,6 +217,7 @@
|
|
|
206
217
|
}
|
|
207
218
|
},
|
|
208
219
|
"peerDependencies": {
|
|
220
|
+
"@absolutejs/auth": ">=0.57.6 <1",
|
|
209
221
|
"@absolutejs/execution": ">=0.14.6 <0.15",
|
|
210
222
|
"drizzle-orm": ">=1.0.0-rc.4 <2"
|
|
211
223
|
}
|