@absolutejs/agent 0.23.16 → 0.23.17
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 +35 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/agent",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.17",
|
|
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",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"access": "public"
|
|
129
129
|
},
|
|
130
130
|
"scripts": {
|
|
131
|
-
"build": "rm -rf dist && bun build src/*.ts --outdir dist --root src --target=bun --sourcemap --external '@absolutejs/*' --external '@sinclair/typebox' --external drizzle-orm --external 'drizzle-orm/*' && tsc -p tsconfig.build.json && absolute-manifest emit",
|
|
131
|
+
"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",
|
|
132
132
|
"typecheck": "tsc --noEmit",
|
|
133
133
|
"test": "bun test",
|
|
134
134
|
"format": "prettier --write \"./**/*.{ts,json,md,yml}\"",
|
|
@@ -143,13 +143,12 @@
|
|
|
143
143
|
"@absolutejs/agent-discovery": "^0.2.1",
|
|
144
144
|
"@absolutejs/agent-inbox": "^0.3.3",
|
|
145
145
|
"@absolutejs/agent-memory": "^0.1.5",
|
|
146
|
-
"@absolutejs/agent-runtime": "^0.2.
|
|
146
|
+
"@absolutejs/agent-runtime": "^0.2.4",
|
|
147
147
|
"@absolutejs/agent-sandbox": "^0.2.0",
|
|
148
148
|
"@absolutejs/agent-trust": "^0.2.0",
|
|
149
149
|
"@absolutejs/arazzo": "^0.1.2",
|
|
150
|
-
"@absolutejs/auth": "^0.57.
|
|
151
|
-
"@absolutejs/
|
|
152
|
-
"@absolutejs/manifest": "^0.6.3",
|
|
150
|
+
"@absolutejs/auth": "^0.57.3",
|
|
151
|
+
"@absolutejs/manifest": "^0.7.1",
|
|
153
152
|
"@absolutejs/mcp": "^0.11.3",
|
|
154
153
|
"@absolutejs/policy": "^0.3.0",
|
|
155
154
|
"@absolutejs/wallet": "^0.9.3",
|
|
@@ -157,10 +156,11 @@
|
|
|
157
156
|
"@sinclair/typebox": "^0.34.0"
|
|
158
157
|
},
|
|
159
158
|
"devDependencies": {
|
|
159
|
+
"@absolutejs/execution": "0.14.5",
|
|
160
160
|
"@types/bun": "^1.3.14",
|
|
161
|
+
"drizzle-orm": "1.0.0-rc.4",
|
|
161
162
|
"prettier": "^3.8.3",
|
|
162
|
-
"typescript": "^5.9.0"
|
|
163
|
-
"drizzle-orm": "1.0.0-rc.4"
|
|
163
|
+
"typescript": "^5.9.0"
|
|
164
164
|
},
|
|
165
165
|
"keywords": [
|
|
166
166
|
"absolutejs",
|
|
@@ -172,9 +172,35 @@
|
|
|
172
172
|
"auth.md"
|
|
173
173
|
],
|
|
174
174
|
"absolutejs": {
|
|
175
|
-
"manifestContract": 2
|
|
175
|
+
"manifestContract": 2,
|
|
176
|
+
"runtimePeers": {
|
|
177
|
+
"@absolutejs/execution": {
|
|
178
|
+
"artifactImports": [
|
|
179
|
+
"@absolutejs/execution"
|
|
180
|
+
],
|
|
181
|
+
"buildExternals": [
|
|
182
|
+
"@absolutejs/execution"
|
|
183
|
+
],
|
|
184
|
+
"optional": false,
|
|
185
|
+
"range": ">=0.14.5 <0.15",
|
|
186
|
+
"tested": "0.14.5"
|
|
187
|
+
},
|
|
188
|
+
"drizzle-orm": {
|
|
189
|
+
"artifactImports": [
|
|
190
|
+
"drizzle-orm",
|
|
191
|
+
"drizzle-orm/pg-core"
|
|
192
|
+
],
|
|
193
|
+
"buildExternals": [
|
|
194
|
+
"drizzle-orm"
|
|
195
|
+
],
|
|
196
|
+
"optional": false,
|
|
197
|
+
"range": ">=1.0.0-rc.4 <2",
|
|
198
|
+
"tested": "1.0.0-rc.4"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
176
201
|
},
|
|
177
202
|
"peerDependencies": {
|
|
203
|
+
"@absolutejs/execution": ">=0.14.5 <0.15",
|
|
178
204
|
"drizzle-orm": ">=1.0.0-rc.4 <2"
|
|
179
205
|
}
|
|
180
206
|
}
|