@contractspec/example.agent-console 1.58.0 → 1.60.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +30 -0
- package/package.json +568 -88
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=66
|
|
6
|
-
Bundled 66 modules in
|
|
6
|
+
Bundled 66 modules in 104ms
|
|
7
7
|
|
|
8
8
|
./agent.capability.js 433 bytes (entry point)
|
|
9
9
|
tool/tool.test-spec.js 1.37 KB (entry point)
|
|
@@ -73,7 +73,7 @@ Bundled 66 modules in 97ms
|
|
|
73
73
|
agent/agent.enum.js 467 bytes (entry point)
|
|
74
74
|
|
|
75
75
|
[contractspec-bun-build] transpile target=node root=src entries=66
|
|
76
|
-
Bundled 66 modules in
|
|
76
|
+
Bundled 66 modules in 107ms
|
|
77
77
|
|
|
78
78
|
./agent.capability.js 425 bytes (entry point)
|
|
79
79
|
tool/tool.test-spec.js 1.36 KB (entry point)
|
|
@@ -143,7 +143,7 @@ Bundled 66 modules in 92ms
|
|
|
143
143
|
agent/agent.enum.js 459 bytes (entry point)
|
|
144
144
|
|
|
145
145
|
[contractspec-bun-build] transpile target=browser root=src entries=66
|
|
146
|
-
Bundled 66 modules in
|
|
146
|
+
Bundled 66 modules in 70ms
|
|
147
147
|
|
|
148
148
|
./agent.capability.js 425 bytes (entry point)
|
|
149
149
|
tool/tool.test-spec.js 1.36 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @contractspec/example.agent-console
|
|
2
2
|
|
|
3
|
+
## 1.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/lib.example-shared-ui@1.14.0
|
|
13
|
+
- @contractspec/lib.runtime-sandbox@0.15.0
|
|
14
|
+
- @contractspec/lib.design-system@1.60.0
|
|
15
|
+
- @contractspec/lib.contracts@1.60.0
|
|
16
|
+
- @contractspec/lib.schema@1.60.0
|
|
17
|
+
|
|
18
|
+
## 1.59.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [1a0cf44]
|
|
27
|
+
- @contractspec/lib.example-shared-ui@1.13.0
|
|
28
|
+
- @contractspec/lib.runtime-sandbox@0.14.0
|
|
29
|
+
- @contractspec/lib.design-system@1.59.0
|
|
30
|
+
- @contractspec/lib.contracts@1.59.0
|
|
31
|
+
- @contractspec/lib.schema@1.59.0
|
|
32
|
+
|
|
3
33
|
## 1.58.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,90 +1,570 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.agent-console",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./agent
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"./
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"./
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"./
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"./
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"./
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"./
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"./
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"./
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"./
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"./
|
|
86
|
-
|
|
87
|
-
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"bun": "./dist/index.js",
|
|
11
|
+
"node": "./dist/node/index.mjs",
|
|
12
|
+
"browser": "./dist/browser/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./agent": {
|
|
16
|
+
"types": "./dist/agent/index.d.ts",
|
|
17
|
+
"bun": "./dist/agent/index.js",
|
|
18
|
+
"node": "./dist/node/agent/index.mjs",
|
|
19
|
+
"browser": "./dist/browser/agent/index.js",
|
|
20
|
+
"default": "./dist/agent/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./agent.capability": {
|
|
23
|
+
"types": "./dist/agent.capability.d.ts",
|
|
24
|
+
"bun": "./dist/agent.capability.js",
|
|
25
|
+
"node": "./dist/node/agent.capability.mjs",
|
|
26
|
+
"browser": "./dist/browser/agent.capability.js",
|
|
27
|
+
"default": "./dist/agent.capability.js"
|
|
28
|
+
},
|
|
29
|
+
"./agent.feature": {
|
|
30
|
+
"types": "./dist/agent.feature.d.ts",
|
|
31
|
+
"bun": "./dist/agent.feature.js",
|
|
32
|
+
"node": "./dist/node/agent.feature.mjs",
|
|
33
|
+
"browser": "./dist/browser/agent.feature.js",
|
|
34
|
+
"default": "./dist/agent.feature.js"
|
|
35
|
+
},
|
|
36
|
+
"./agent/agent.entity": {
|
|
37
|
+
"types": "./dist/agent/agent.entity.d.ts",
|
|
38
|
+
"bun": "./dist/agent/agent.entity.js",
|
|
39
|
+
"node": "./dist/node/agent/agent.entity.mjs",
|
|
40
|
+
"browser": "./dist/browser/agent/agent.entity.js",
|
|
41
|
+
"default": "./dist/agent/agent.entity.js"
|
|
42
|
+
},
|
|
43
|
+
"./agent/agent.enum": {
|
|
44
|
+
"types": "./dist/agent/agent.enum.d.ts",
|
|
45
|
+
"bun": "./dist/agent/agent.enum.js",
|
|
46
|
+
"node": "./dist/node/agent/agent.enum.mjs",
|
|
47
|
+
"browser": "./dist/browser/agent/agent.enum.js",
|
|
48
|
+
"default": "./dist/agent/agent.enum.js"
|
|
49
|
+
},
|
|
50
|
+
"./agent/agent.event": {
|
|
51
|
+
"types": "./dist/agent/agent.event.d.ts",
|
|
52
|
+
"bun": "./dist/agent/agent.event.js",
|
|
53
|
+
"node": "./dist/node/agent/agent.event.mjs",
|
|
54
|
+
"browser": "./dist/browser/agent/agent.event.js",
|
|
55
|
+
"default": "./dist/agent/agent.event.js"
|
|
56
|
+
},
|
|
57
|
+
"./agent/agent.handler": {
|
|
58
|
+
"types": "./dist/agent/agent.handler.d.ts",
|
|
59
|
+
"bun": "./dist/agent/agent.handler.js",
|
|
60
|
+
"node": "./dist/node/agent/agent.handler.mjs",
|
|
61
|
+
"browser": "./dist/browser/agent/agent.handler.js",
|
|
62
|
+
"default": "./dist/agent/agent.handler.js"
|
|
63
|
+
},
|
|
64
|
+
"./agent/agent.operation": {
|
|
65
|
+
"types": "./dist/agent/agent.operation.d.ts",
|
|
66
|
+
"bun": "./dist/agent/agent.operation.js",
|
|
67
|
+
"node": "./dist/node/agent/agent.operation.mjs",
|
|
68
|
+
"browser": "./dist/browser/agent/agent.operation.js",
|
|
69
|
+
"default": "./dist/agent/agent.operation.js"
|
|
70
|
+
},
|
|
71
|
+
"./agent/agent.presentation": {
|
|
72
|
+
"types": "./dist/agent/agent.presentation.d.ts",
|
|
73
|
+
"bun": "./dist/agent/agent.presentation.js",
|
|
74
|
+
"node": "./dist/node/agent/agent.presentation.mjs",
|
|
75
|
+
"browser": "./dist/browser/agent/agent.presentation.js",
|
|
76
|
+
"default": "./dist/agent/agent.presentation.js"
|
|
77
|
+
},
|
|
78
|
+
"./agent/agent.schema": {
|
|
79
|
+
"types": "./dist/agent/agent.schema.d.ts",
|
|
80
|
+
"bun": "./dist/agent/agent.schema.js",
|
|
81
|
+
"node": "./dist/node/agent/agent.schema.mjs",
|
|
82
|
+
"browser": "./dist/browser/agent/agent.schema.js",
|
|
83
|
+
"default": "./dist/agent/agent.schema.js"
|
|
84
|
+
},
|
|
85
|
+
"./agent/agent.test-spec": {
|
|
86
|
+
"types": "./dist/agent/agent.test-spec.d.ts",
|
|
87
|
+
"bun": "./dist/agent/agent.test-spec.js",
|
|
88
|
+
"node": "./dist/node/agent/agent.test-spec.mjs",
|
|
89
|
+
"browser": "./dist/browser/agent/agent.test-spec.js",
|
|
90
|
+
"default": "./dist/agent/agent.test-spec.js"
|
|
91
|
+
},
|
|
92
|
+
"./agent/index": {
|
|
93
|
+
"types": "./dist/agent/index.d.ts",
|
|
94
|
+
"bun": "./dist/agent/index.js",
|
|
95
|
+
"node": "./dist/node/agent/index.mjs",
|
|
96
|
+
"browser": "./dist/browser/agent/index.js",
|
|
97
|
+
"default": "./dist/agent/index.js"
|
|
98
|
+
},
|
|
99
|
+
"./docs": {
|
|
100
|
+
"types": "./dist/docs/index.d.ts",
|
|
101
|
+
"bun": "./dist/docs/index.js",
|
|
102
|
+
"node": "./dist/node/docs/index.mjs",
|
|
103
|
+
"browser": "./dist/browser/docs/index.js",
|
|
104
|
+
"default": "./dist/docs/index.js"
|
|
105
|
+
},
|
|
106
|
+
"./docs/agent-console.docblock": {
|
|
107
|
+
"types": "./dist/docs/agent-console.docblock.d.ts",
|
|
108
|
+
"bun": "./dist/docs/agent-console.docblock.js",
|
|
109
|
+
"node": "./dist/node/docs/agent-console.docblock.mjs",
|
|
110
|
+
"browser": "./dist/browser/docs/agent-console.docblock.js",
|
|
111
|
+
"default": "./dist/docs/agent-console.docblock.js"
|
|
112
|
+
},
|
|
113
|
+
"./docs/index": {
|
|
114
|
+
"types": "./dist/docs/index.d.ts",
|
|
115
|
+
"bun": "./dist/docs/index.js",
|
|
116
|
+
"node": "./dist/node/docs/index.mjs",
|
|
117
|
+
"browser": "./dist/browser/docs/index.js",
|
|
118
|
+
"default": "./dist/docs/index.js"
|
|
119
|
+
},
|
|
120
|
+
"./example": {
|
|
121
|
+
"types": "./dist/example.d.ts",
|
|
122
|
+
"bun": "./dist/example.js",
|
|
123
|
+
"node": "./dist/node/example.mjs",
|
|
124
|
+
"browser": "./dist/browser/example.js",
|
|
125
|
+
"default": "./dist/example.js"
|
|
126
|
+
},
|
|
127
|
+
"./handlers": {
|
|
128
|
+
"types": "./dist/handlers/index.d.ts",
|
|
129
|
+
"bun": "./dist/handlers/index.js",
|
|
130
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
131
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
132
|
+
"default": "./dist/handlers/index.js"
|
|
133
|
+
},
|
|
134
|
+
"./handlers/agent.handlers": {
|
|
135
|
+
"types": "./dist/handlers/agent.handlers.d.ts",
|
|
136
|
+
"bun": "./dist/handlers/agent.handlers.js",
|
|
137
|
+
"node": "./dist/node/handlers/agent.handlers.mjs",
|
|
138
|
+
"browser": "./dist/browser/handlers/agent.handlers.js",
|
|
139
|
+
"default": "./dist/handlers/agent.handlers.js"
|
|
140
|
+
},
|
|
141
|
+
"./handlers/index": {
|
|
142
|
+
"types": "./dist/handlers/index.d.ts",
|
|
143
|
+
"bun": "./dist/handlers/index.js",
|
|
144
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
145
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
146
|
+
"default": "./dist/handlers/index.js"
|
|
147
|
+
},
|
|
148
|
+
"./presentations": {
|
|
149
|
+
"types": "./dist/presentations/index.d.ts",
|
|
150
|
+
"bun": "./dist/presentations/index.js",
|
|
151
|
+
"node": "./dist/node/presentations/index.mjs",
|
|
152
|
+
"browser": "./dist/browser/presentations/index.js",
|
|
153
|
+
"default": "./dist/presentations/index.js"
|
|
154
|
+
},
|
|
155
|
+
"./presentations/index": {
|
|
156
|
+
"types": "./dist/presentations/index.d.ts",
|
|
157
|
+
"bun": "./dist/presentations/index.js",
|
|
158
|
+
"node": "./dist/node/presentations/index.mjs",
|
|
159
|
+
"browser": "./dist/browser/presentations/index.js",
|
|
160
|
+
"default": "./dist/presentations/index.js"
|
|
161
|
+
},
|
|
162
|
+
"./run": {
|
|
163
|
+
"types": "./dist/run/index.d.ts",
|
|
164
|
+
"bun": "./dist/run/index.js",
|
|
165
|
+
"node": "./dist/node/run/index.mjs",
|
|
166
|
+
"browser": "./dist/browser/run/index.js",
|
|
167
|
+
"default": "./dist/run/index.js"
|
|
168
|
+
},
|
|
169
|
+
"./run/index": {
|
|
170
|
+
"types": "./dist/run/index.d.ts",
|
|
171
|
+
"bun": "./dist/run/index.js",
|
|
172
|
+
"node": "./dist/node/run/index.mjs",
|
|
173
|
+
"browser": "./dist/browser/run/index.js",
|
|
174
|
+
"default": "./dist/run/index.js"
|
|
175
|
+
},
|
|
176
|
+
"./run/run.entity": {
|
|
177
|
+
"types": "./dist/run/run.entity.d.ts",
|
|
178
|
+
"bun": "./dist/run/run.entity.js",
|
|
179
|
+
"node": "./dist/node/run/run.entity.mjs",
|
|
180
|
+
"browser": "./dist/browser/run/run.entity.js",
|
|
181
|
+
"default": "./dist/run/run.entity.js"
|
|
182
|
+
},
|
|
183
|
+
"./run/run.enum": {
|
|
184
|
+
"types": "./dist/run/run.enum.d.ts",
|
|
185
|
+
"bun": "./dist/run/run.enum.js",
|
|
186
|
+
"node": "./dist/node/run/run.enum.mjs",
|
|
187
|
+
"browser": "./dist/browser/run/run.enum.js",
|
|
188
|
+
"default": "./dist/run/run.enum.js"
|
|
189
|
+
},
|
|
190
|
+
"./run/run.event": {
|
|
191
|
+
"types": "./dist/run/run.event.d.ts",
|
|
192
|
+
"bun": "./dist/run/run.event.js",
|
|
193
|
+
"node": "./dist/node/run/run.event.mjs",
|
|
194
|
+
"browser": "./dist/browser/run/run.event.js",
|
|
195
|
+
"default": "./dist/run/run.event.js"
|
|
196
|
+
},
|
|
197
|
+
"./run/run.handler": {
|
|
198
|
+
"types": "./dist/run/run.handler.d.ts",
|
|
199
|
+
"bun": "./dist/run/run.handler.js",
|
|
200
|
+
"node": "./dist/node/run/run.handler.mjs",
|
|
201
|
+
"browser": "./dist/browser/run/run.handler.js",
|
|
202
|
+
"default": "./dist/run/run.handler.js"
|
|
203
|
+
},
|
|
204
|
+
"./run/run.operation": {
|
|
205
|
+
"types": "./dist/run/run.operation.d.ts",
|
|
206
|
+
"bun": "./dist/run/run.operation.js",
|
|
207
|
+
"node": "./dist/node/run/run.operation.mjs",
|
|
208
|
+
"browser": "./dist/browser/run/run.operation.js",
|
|
209
|
+
"default": "./dist/run/run.operation.js"
|
|
210
|
+
},
|
|
211
|
+
"./run/run.presentation": {
|
|
212
|
+
"types": "./dist/run/run.presentation.d.ts",
|
|
213
|
+
"bun": "./dist/run/run.presentation.js",
|
|
214
|
+
"node": "./dist/node/run/run.presentation.mjs",
|
|
215
|
+
"browser": "./dist/browser/run/run.presentation.js",
|
|
216
|
+
"default": "./dist/run/run.presentation.js"
|
|
217
|
+
},
|
|
218
|
+
"./run/run.schema": {
|
|
219
|
+
"types": "./dist/run/run.schema.d.ts",
|
|
220
|
+
"bun": "./dist/run/run.schema.js",
|
|
221
|
+
"node": "./dist/node/run/run.schema.mjs",
|
|
222
|
+
"browser": "./dist/browser/run/run.schema.js",
|
|
223
|
+
"default": "./dist/run/run.schema.js"
|
|
224
|
+
},
|
|
225
|
+
"./run/run.test-spec": {
|
|
226
|
+
"types": "./dist/run/run.test-spec.d.ts",
|
|
227
|
+
"bun": "./dist/run/run.test-spec.js",
|
|
228
|
+
"node": "./dist/node/run/run.test-spec.mjs",
|
|
229
|
+
"browser": "./dist/browser/run/run.test-spec.js",
|
|
230
|
+
"default": "./dist/run/run.test-spec.js"
|
|
231
|
+
},
|
|
232
|
+
"./seeders": {
|
|
233
|
+
"types": "./dist/seeders/index.d.ts",
|
|
234
|
+
"bun": "./dist/seeders/index.js",
|
|
235
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
236
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
237
|
+
"default": "./dist/seeders/index.js"
|
|
238
|
+
},
|
|
239
|
+
"./seeders/index": {
|
|
240
|
+
"types": "./dist/seeders/index.d.ts",
|
|
241
|
+
"bun": "./dist/seeders/index.js",
|
|
242
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
243
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
244
|
+
"default": "./dist/seeders/index.js"
|
|
245
|
+
},
|
|
246
|
+
"./shared": {
|
|
247
|
+
"types": "./dist/shared/index.d.ts",
|
|
248
|
+
"bun": "./dist/shared/index.js",
|
|
249
|
+
"node": "./dist/node/shared/index.mjs",
|
|
250
|
+
"browser": "./dist/browser/shared/index.js",
|
|
251
|
+
"default": "./dist/shared/index.js"
|
|
252
|
+
},
|
|
253
|
+
"./shared/index": {
|
|
254
|
+
"types": "./dist/shared/index.d.ts",
|
|
255
|
+
"bun": "./dist/shared/index.js",
|
|
256
|
+
"node": "./dist/node/shared/index.mjs",
|
|
257
|
+
"browser": "./dist/browser/shared/index.js",
|
|
258
|
+
"default": "./dist/shared/index.js"
|
|
259
|
+
},
|
|
260
|
+
"./shared/mock-agents": {
|
|
261
|
+
"types": "./dist/shared/mock-agents.d.ts",
|
|
262
|
+
"bun": "./dist/shared/mock-agents.js",
|
|
263
|
+
"node": "./dist/node/shared/mock-agents.mjs",
|
|
264
|
+
"browser": "./dist/browser/shared/mock-agents.js",
|
|
265
|
+
"default": "./dist/shared/mock-agents.js"
|
|
266
|
+
},
|
|
267
|
+
"./shared/mock-runs": {
|
|
268
|
+
"types": "./dist/shared/mock-runs.d.ts",
|
|
269
|
+
"bun": "./dist/shared/mock-runs.js",
|
|
270
|
+
"node": "./dist/node/shared/mock-runs.mjs",
|
|
271
|
+
"browser": "./dist/browser/shared/mock-runs.js",
|
|
272
|
+
"default": "./dist/shared/mock-runs.js"
|
|
273
|
+
},
|
|
274
|
+
"./shared/mock-tools": {
|
|
275
|
+
"types": "./dist/shared/mock-tools.d.ts",
|
|
276
|
+
"bun": "./dist/shared/mock-tools.js",
|
|
277
|
+
"node": "./dist/node/shared/mock-tools.mjs",
|
|
278
|
+
"browser": "./dist/browser/shared/mock-tools.js",
|
|
279
|
+
"default": "./dist/shared/mock-tools.js"
|
|
280
|
+
},
|
|
281
|
+
"./shared/overlay-types": {
|
|
282
|
+
"types": "./dist/shared/overlay-types.d.ts",
|
|
283
|
+
"bun": "./dist/shared/overlay-types.js",
|
|
284
|
+
"node": "./dist/node/shared/overlay-types.mjs",
|
|
285
|
+
"browser": "./dist/browser/shared/overlay-types.js",
|
|
286
|
+
"default": "./dist/shared/overlay-types.js"
|
|
287
|
+
},
|
|
288
|
+
"./tool": {
|
|
289
|
+
"types": "./dist/tool/index.d.ts",
|
|
290
|
+
"bun": "./dist/tool/index.js",
|
|
291
|
+
"node": "./dist/node/tool/index.mjs",
|
|
292
|
+
"browser": "./dist/browser/tool/index.js",
|
|
293
|
+
"default": "./dist/tool/index.js"
|
|
294
|
+
},
|
|
295
|
+
"./tool/index": {
|
|
296
|
+
"types": "./dist/tool/index.d.ts",
|
|
297
|
+
"bun": "./dist/tool/index.js",
|
|
298
|
+
"node": "./dist/node/tool/index.mjs",
|
|
299
|
+
"browser": "./dist/browser/tool/index.js",
|
|
300
|
+
"default": "./dist/tool/index.js"
|
|
301
|
+
},
|
|
302
|
+
"./tool/tool.entity": {
|
|
303
|
+
"types": "./dist/tool/tool.entity.d.ts",
|
|
304
|
+
"bun": "./dist/tool/tool.entity.js",
|
|
305
|
+
"node": "./dist/node/tool/tool.entity.mjs",
|
|
306
|
+
"browser": "./dist/browser/tool/tool.entity.js",
|
|
307
|
+
"default": "./dist/tool/tool.entity.js"
|
|
308
|
+
},
|
|
309
|
+
"./tool/tool.enum": {
|
|
310
|
+
"types": "./dist/tool/tool.enum.d.ts",
|
|
311
|
+
"bun": "./dist/tool/tool.enum.js",
|
|
312
|
+
"node": "./dist/node/tool/tool.enum.mjs",
|
|
313
|
+
"browser": "./dist/browser/tool/tool.enum.js",
|
|
314
|
+
"default": "./dist/tool/tool.enum.js"
|
|
315
|
+
},
|
|
316
|
+
"./tool/tool.event": {
|
|
317
|
+
"types": "./dist/tool/tool.event.d.ts",
|
|
318
|
+
"bun": "./dist/tool/tool.event.js",
|
|
319
|
+
"node": "./dist/node/tool/tool.event.mjs",
|
|
320
|
+
"browser": "./dist/browser/tool/tool.event.js",
|
|
321
|
+
"default": "./dist/tool/tool.event.js"
|
|
322
|
+
},
|
|
323
|
+
"./tool/tool.handler": {
|
|
324
|
+
"types": "./dist/tool/tool.handler.d.ts",
|
|
325
|
+
"bun": "./dist/tool/tool.handler.js",
|
|
326
|
+
"node": "./dist/node/tool/tool.handler.mjs",
|
|
327
|
+
"browser": "./dist/browser/tool/tool.handler.js",
|
|
328
|
+
"default": "./dist/tool/tool.handler.js"
|
|
329
|
+
},
|
|
330
|
+
"./tool/tool.operation": {
|
|
331
|
+
"types": "./dist/tool/tool.operation.d.ts",
|
|
332
|
+
"bun": "./dist/tool/tool.operation.js",
|
|
333
|
+
"node": "./dist/node/tool/tool.operation.mjs",
|
|
334
|
+
"browser": "./dist/browser/tool/tool.operation.js",
|
|
335
|
+
"default": "./dist/tool/tool.operation.js"
|
|
336
|
+
},
|
|
337
|
+
"./tool/tool.presentation": {
|
|
338
|
+
"types": "./dist/tool/tool.presentation.d.ts",
|
|
339
|
+
"bun": "./dist/tool/tool.presentation.js",
|
|
340
|
+
"node": "./dist/node/tool/tool.presentation.mjs",
|
|
341
|
+
"browser": "./dist/browser/tool/tool.presentation.js",
|
|
342
|
+
"default": "./dist/tool/tool.presentation.js"
|
|
343
|
+
},
|
|
344
|
+
"./tool/tool.schema": {
|
|
345
|
+
"types": "./dist/tool/tool.schema.d.ts",
|
|
346
|
+
"bun": "./dist/tool/tool.schema.js",
|
|
347
|
+
"node": "./dist/node/tool/tool.schema.mjs",
|
|
348
|
+
"browser": "./dist/browser/tool/tool.schema.js",
|
|
349
|
+
"default": "./dist/tool/tool.schema.js"
|
|
350
|
+
},
|
|
351
|
+
"./tool/tool.test-spec": {
|
|
352
|
+
"types": "./dist/tool/tool.test-spec.d.ts",
|
|
353
|
+
"bun": "./dist/tool/tool.test-spec.js",
|
|
354
|
+
"node": "./dist/node/tool/tool.test-spec.mjs",
|
|
355
|
+
"browser": "./dist/browser/tool/tool.test-spec.js",
|
|
356
|
+
"default": "./dist/tool/tool.test-spec.js"
|
|
357
|
+
},
|
|
358
|
+
"./ui": {
|
|
359
|
+
"types": "./dist/ui/index.d.ts",
|
|
360
|
+
"bun": "./dist/ui/index.js",
|
|
361
|
+
"node": "./dist/node/ui/index.mjs",
|
|
362
|
+
"browser": "./dist/browser/ui/index.js",
|
|
363
|
+
"default": "./dist/ui/index.js"
|
|
364
|
+
},
|
|
365
|
+
"./ui/AgentDashboard": {
|
|
366
|
+
"types": "./dist/ui/AgentDashboard.d.ts",
|
|
367
|
+
"bun": "./dist/ui/AgentDashboard.js",
|
|
368
|
+
"node": "./dist/node/ui/AgentDashboard.mjs",
|
|
369
|
+
"browser": "./dist/browser/ui/AgentDashboard.js",
|
|
370
|
+
"default": "./dist/ui/AgentDashboard.js"
|
|
371
|
+
},
|
|
372
|
+
"./ui/AgentRunList": {
|
|
373
|
+
"types": "./dist/ui/AgentRunList.d.ts",
|
|
374
|
+
"bun": "./dist/ui/AgentRunList.js",
|
|
375
|
+
"node": "./dist/node/ui/AgentRunList.mjs",
|
|
376
|
+
"browser": "./dist/browser/ui/AgentRunList.js",
|
|
377
|
+
"default": "./dist/ui/AgentRunList.js"
|
|
378
|
+
},
|
|
379
|
+
"./ui/AgentToolRegistry": {
|
|
380
|
+
"types": "./dist/ui/AgentToolRegistry.d.ts",
|
|
381
|
+
"bun": "./dist/ui/AgentToolRegistry.js",
|
|
382
|
+
"node": "./dist/node/ui/AgentToolRegistry.mjs",
|
|
383
|
+
"browser": "./dist/browser/ui/AgentToolRegistry.js",
|
|
384
|
+
"default": "./dist/ui/AgentToolRegistry.js"
|
|
385
|
+
},
|
|
386
|
+
"./ui/hooks": {
|
|
387
|
+
"types": "./dist/ui/hooks/index.d.ts",
|
|
388
|
+
"bun": "./dist/ui/hooks/index.js",
|
|
389
|
+
"node": "./dist/node/ui/hooks/index.mjs",
|
|
390
|
+
"browser": "./dist/browser/ui/hooks/index.js",
|
|
391
|
+
"default": "./dist/ui/hooks/index.js"
|
|
392
|
+
},
|
|
393
|
+
"./ui/hooks/index": {
|
|
394
|
+
"types": "./dist/ui/hooks/index.d.ts",
|
|
395
|
+
"bun": "./dist/ui/hooks/index.js",
|
|
396
|
+
"node": "./dist/node/ui/hooks/index.mjs",
|
|
397
|
+
"browser": "./dist/browser/ui/hooks/index.js",
|
|
398
|
+
"default": "./dist/ui/hooks/index.js"
|
|
399
|
+
},
|
|
400
|
+
"./ui/hooks/useAgentList": {
|
|
401
|
+
"types": "./dist/ui/hooks/useAgentList.d.ts",
|
|
402
|
+
"bun": "./dist/ui/hooks/useAgentList.js",
|
|
403
|
+
"node": "./dist/node/ui/hooks/useAgentList.mjs",
|
|
404
|
+
"browser": "./dist/browser/ui/hooks/useAgentList.js",
|
|
405
|
+
"default": "./dist/ui/hooks/useAgentList.js"
|
|
406
|
+
},
|
|
407
|
+
"./ui/hooks/useAgentMutations": {
|
|
408
|
+
"types": "./dist/ui/hooks/useAgentMutations.d.ts",
|
|
409
|
+
"bun": "./dist/ui/hooks/useAgentMutations.js",
|
|
410
|
+
"node": "./dist/node/ui/hooks/useAgentMutations.mjs",
|
|
411
|
+
"browser": "./dist/browser/ui/hooks/useAgentMutations.js",
|
|
412
|
+
"default": "./dist/ui/hooks/useAgentMutations.js"
|
|
413
|
+
},
|
|
414
|
+
"./ui/hooks/useRunList": {
|
|
415
|
+
"types": "./dist/ui/hooks/useRunList.d.ts",
|
|
416
|
+
"bun": "./dist/ui/hooks/useRunList.js",
|
|
417
|
+
"node": "./dist/node/ui/hooks/useRunList.mjs",
|
|
418
|
+
"browser": "./dist/browser/ui/hooks/useRunList.js",
|
|
419
|
+
"default": "./dist/ui/hooks/useRunList.js"
|
|
420
|
+
},
|
|
421
|
+
"./ui/hooks/useToolList": {
|
|
422
|
+
"types": "./dist/ui/hooks/useToolList.d.ts",
|
|
423
|
+
"bun": "./dist/ui/hooks/useToolList.js",
|
|
424
|
+
"node": "./dist/node/ui/hooks/useToolList.mjs",
|
|
425
|
+
"browser": "./dist/browser/ui/hooks/useToolList.js",
|
|
426
|
+
"default": "./dist/ui/hooks/useToolList.js"
|
|
427
|
+
},
|
|
428
|
+
"./ui/index": {
|
|
429
|
+
"types": "./dist/ui/index.d.ts",
|
|
430
|
+
"bun": "./dist/ui/index.js",
|
|
431
|
+
"node": "./dist/node/ui/index.mjs",
|
|
432
|
+
"browser": "./dist/browser/ui/index.js",
|
|
433
|
+
"default": "./dist/ui/index.js"
|
|
434
|
+
},
|
|
435
|
+
"./ui/modals": {
|
|
436
|
+
"types": "./dist/ui/modals/index.d.ts",
|
|
437
|
+
"bun": "./dist/ui/modals/index.js",
|
|
438
|
+
"node": "./dist/node/ui/modals/index.mjs",
|
|
439
|
+
"browser": "./dist/browser/ui/modals/index.js",
|
|
440
|
+
"default": "./dist/ui/modals/index.js"
|
|
441
|
+
},
|
|
442
|
+
"./ui/modals/AgentActionsModal": {
|
|
443
|
+
"types": "./dist/ui/modals/AgentActionsModal.d.ts",
|
|
444
|
+
"bun": "./dist/ui/modals/AgentActionsModal.js",
|
|
445
|
+
"node": "./dist/node/ui/modals/AgentActionsModal.mjs",
|
|
446
|
+
"browser": "./dist/browser/ui/modals/AgentActionsModal.js",
|
|
447
|
+
"default": "./dist/ui/modals/AgentActionsModal.js"
|
|
448
|
+
},
|
|
449
|
+
"./ui/modals/CreateAgentModal": {
|
|
450
|
+
"types": "./dist/ui/modals/CreateAgentModal.d.ts",
|
|
451
|
+
"bun": "./dist/ui/modals/CreateAgentModal.js",
|
|
452
|
+
"node": "./dist/node/ui/modals/CreateAgentModal.mjs",
|
|
453
|
+
"browser": "./dist/browser/ui/modals/CreateAgentModal.js",
|
|
454
|
+
"default": "./dist/ui/modals/CreateAgentModal.js"
|
|
455
|
+
},
|
|
456
|
+
"./ui/modals/index": {
|
|
457
|
+
"types": "./dist/ui/modals/index.d.ts",
|
|
458
|
+
"bun": "./dist/ui/modals/index.js",
|
|
459
|
+
"node": "./dist/node/ui/modals/index.mjs",
|
|
460
|
+
"browser": "./dist/browser/ui/modals/index.js",
|
|
461
|
+
"default": "./dist/ui/modals/index.js"
|
|
462
|
+
},
|
|
463
|
+
"./ui/overlays": {
|
|
464
|
+
"types": "./dist/ui/overlays/index.d.ts",
|
|
465
|
+
"bun": "./dist/ui/overlays/index.js",
|
|
466
|
+
"node": "./dist/node/ui/overlays/index.mjs",
|
|
467
|
+
"browser": "./dist/browser/ui/overlays/index.js",
|
|
468
|
+
"default": "./dist/ui/overlays/index.js"
|
|
469
|
+
},
|
|
470
|
+
"./ui/overlays/demo-overlays": {
|
|
471
|
+
"types": "./dist/ui/overlays/demo-overlays.d.ts",
|
|
472
|
+
"bun": "./dist/ui/overlays/demo-overlays.js",
|
|
473
|
+
"node": "./dist/node/ui/overlays/demo-overlays.mjs",
|
|
474
|
+
"browser": "./dist/browser/ui/overlays/demo-overlays.js",
|
|
475
|
+
"default": "./dist/ui/overlays/demo-overlays.js"
|
|
476
|
+
},
|
|
477
|
+
"./ui/overlays/index": {
|
|
478
|
+
"types": "./dist/ui/overlays/index.d.ts",
|
|
479
|
+
"bun": "./dist/ui/overlays/index.js",
|
|
480
|
+
"node": "./dist/node/ui/overlays/index.mjs",
|
|
481
|
+
"browser": "./dist/browser/ui/overlays/index.js",
|
|
482
|
+
"default": "./dist/ui/overlays/index.js"
|
|
483
|
+
},
|
|
484
|
+
"./ui/renderers": {
|
|
485
|
+
"types": "./dist/ui/renderers/index.d.ts",
|
|
486
|
+
"bun": "./dist/ui/renderers/index.js",
|
|
487
|
+
"node": "./dist/node/ui/renderers/index.mjs",
|
|
488
|
+
"browser": "./dist/browser/ui/renderers/index.js",
|
|
489
|
+
"default": "./dist/ui/renderers/index.js"
|
|
490
|
+
},
|
|
491
|
+
"./ui/renderers/agent-list.markdown": {
|
|
492
|
+
"types": "./dist/ui/renderers/agent-list.markdown.d.ts",
|
|
493
|
+
"bun": "./dist/ui/renderers/agent-list.markdown.js",
|
|
494
|
+
"node": "./dist/node/ui/renderers/agent-list.markdown.mjs",
|
|
495
|
+
"browser": "./dist/browser/ui/renderers/agent-list.markdown.js",
|
|
496
|
+
"default": "./dist/ui/renderers/agent-list.markdown.js"
|
|
497
|
+
},
|
|
498
|
+
"./ui/renderers/agent-list.renderer": {
|
|
499
|
+
"types": "./dist/ui/renderers/agent-list.renderer.d.ts",
|
|
500
|
+
"bun": "./dist/ui/renderers/agent-list.renderer.js",
|
|
501
|
+
"node": "./dist/node/ui/renderers/agent-list.renderer.mjs",
|
|
502
|
+
"browser": "./dist/browser/ui/renderers/agent-list.renderer.js",
|
|
503
|
+
"default": "./dist/ui/renderers/agent-list.renderer.js"
|
|
504
|
+
},
|
|
505
|
+
"./ui/renderers/dashboard.markdown": {
|
|
506
|
+
"types": "./dist/ui/renderers/dashboard.markdown.d.ts",
|
|
507
|
+
"bun": "./dist/ui/renderers/dashboard.markdown.js",
|
|
508
|
+
"node": "./dist/node/ui/renderers/dashboard.markdown.mjs",
|
|
509
|
+
"browser": "./dist/browser/ui/renderers/dashboard.markdown.js",
|
|
510
|
+
"default": "./dist/ui/renderers/dashboard.markdown.js"
|
|
511
|
+
},
|
|
512
|
+
"./ui/renderers/index": {
|
|
513
|
+
"types": "./dist/ui/renderers/index.d.ts",
|
|
514
|
+
"bun": "./dist/ui/renderers/index.js",
|
|
515
|
+
"node": "./dist/node/ui/renderers/index.mjs",
|
|
516
|
+
"browser": "./dist/browser/ui/renderers/index.js",
|
|
517
|
+
"default": "./dist/ui/renderers/index.js"
|
|
518
|
+
},
|
|
519
|
+
"./ui/renderers/run-list.markdown": {
|
|
520
|
+
"types": "./dist/ui/renderers/run-list.markdown.d.ts",
|
|
521
|
+
"bun": "./dist/ui/renderers/run-list.markdown.js",
|
|
522
|
+
"node": "./dist/node/ui/renderers/run-list.markdown.mjs",
|
|
523
|
+
"browser": "./dist/browser/ui/renderers/run-list.markdown.js",
|
|
524
|
+
"default": "./dist/ui/renderers/run-list.markdown.js"
|
|
525
|
+
},
|
|
526
|
+
"./ui/renderers/tool-registry.markdown": {
|
|
527
|
+
"types": "./dist/ui/renderers/tool-registry.markdown.d.ts",
|
|
528
|
+
"bun": "./dist/ui/renderers/tool-registry.markdown.js",
|
|
529
|
+
"node": "./dist/node/ui/renderers/tool-registry.markdown.mjs",
|
|
530
|
+
"browser": "./dist/browser/ui/renderers/tool-registry.markdown.js",
|
|
531
|
+
"default": "./dist/ui/renderers/tool-registry.markdown.js"
|
|
532
|
+
},
|
|
533
|
+
"./ui/views": {
|
|
534
|
+
"types": "./dist/ui/views/index.d.ts",
|
|
535
|
+
"bun": "./dist/ui/views/index.js",
|
|
536
|
+
"node": "./dist/node/ui/views/index.mjs",
|
|
537
|
+
"browser": "./dist/browser/ui/views/index.js",
|
|
538
|
+
"default": "./dist/ui/views/index.js"
|
|
539
|
+
},
|
|
540
|
+
"./ui/views/AgentListView": {
|
|
541
|
+
"types": "./dist/ui/views/AgentListView.d.ts",
|
|
542
|
+
"bun": "./dist/ui/views/AgentListView.js",
|
|
543
|
+
"node": "./dist/node/ui/views/AgentListView.mjs",
|
|
544
|
+
"browser": "./dist/browser/ui/views/AgentListView.js",
|
|
545
|
+
"default": "./dist/ui/views/AgentListView.js"
|
|
546
|
+
},
|
|
547
|
+
"./ui/views/index": {
|
|
548
|
+
"types": "./dist/ui/views/index.d.ts",
|
|
549
|
+
"bun": "./dist/ui/views/index.js",
|
|
550
|
+
"node": "./dist/node/ui/views/index.mjs",
|
|
551
|
+
"browser": "./dist/browser/ui/views/index.js",
|
|
552
|
+
"default": "./dist/ui/views/index.js"
|
|
553
|
+
},
|
|
554
|
+
"./ui/views/RunListView": {
|
|
555
|
+
"types": "./dist/ui/views/RunListView.d.ts",
|
|
556
|
+
"bun": "./dist/ui/views/RunListView.js",
|
|
557
|
+
"node": "./dist/node/ui/views/RunListView.mjs",
|
|
558
|
+
"browser": "./dist/browser/ui/views/RunListView.js",
|
|
559
|
+
"default": "./dist/ui/views/RunListView.js"
|
|
560
|
+
},
|
|
561
|
+
"./ui/views/ToolRegistryView": {
|
|
562
|
+
"types": "./dist/ui/views/ToolRegistryView.d.ts",
|
|
563
|
+
"bun": "./dist/ui/views/ToolRegistryView.js",
|
|
564
|
+
"node": "./dist/node/ui/views/ToolRegistryView.mjs",
|
|
565
|
+
"browser": "./dist/browser/ui/views/ToolRegistryView.js",
|
|
566
|
+
"default": "./dist/ui/views/ToolRegistryView.js"
|
|
567
|
+
}
|
|
88
568
|
},
|
|
89
569
|
"scripts": {
|
|
90
570
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -102,20 +582,20 @@
|
|
|
102
582
|
"typecheck": "tsc --noEmit"
|
|
103
583
|
},
|
|
104
584
|
"dependencies": {
|
|
105
|
-
"@contractspec/lib.schema": "1.
|
|
106
|
-
"@contractspec/lib.contracts": "1.
|
|
107
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
108
|
-
"@contractspec/lib.design-system": "1.
|
|
109
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
585
|
+
"@contractspec/lib.schema": "1.60.0",
|
|
586
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
587
|
+
"@contractspec/lib.example-shared-ui": "1.14.0",
|
|
588
|
+
"@contractspec/lib.design-system": "1.60.0",
|
|
589
|
+
"@contractspec/lib.runtime-sandbox": "0.15.0",
|
|
110
590
|
"react": "19.2.4",
|
|
111
591
|
"react-dom": "19.2.4"
|
|
112
592
|
},
|
|
113
593
|
"devDependencies": {
|
|
114
|
-
"@contractspec/tool.typescript": "1.
|
|
594
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
115
595
|
"typescript": "^5.9.3",
|
|
116
596
|
"@types/react": "^19.2.13",
|
|
117
597
|
"@types/react-dom": "^19.2.2",
|
|
118
|
-
"@contractspec/tool.bun": "1.
|
|
598
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
119
599
|
},
|
|
120
600
|
"publishConfig": {
|
|
121
601
|
"exports": {
|