@xyo-network/module-factory-locator 5.3.30 → 5.5.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/README.md +0 -320
- package/package.json +96 -72
package/README.md
CHANGED
|
@@ -38,326 +38,6 @@ bun add {{name}}
|
|
|
38
38
|
|
|
39
39
|
See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
|
|
40
40
|
|
|
41
|
-
## Reference
|
|
42
|
-
|
|
43
|
-
### packages
|
|
44
|
-
|
|
45
|
-
### modules
|
|
46
|
-
|
|
47
|
-
### packages
|
|
48
|
-
|
|
49
|
-
### module
|
|
50
|
-
|
|
51
|
-
### packages
|
|
52
|
-
|
|
53
|
-
### locator
|
|
54
|
-
|
|
55
|
-
### .temp-typedoc
|
|
56
|
-
|
|
57
|
-
### classes
|
|
58
|
-
|
|
59
|
-
### <a id="ModuleFactoryLocator"></a>ModuleFactoryLocator
|
|
60
|
-
|
|
61
|
-
[**@xyo-network/module-factory-locator**](#../README)
|
|
62
|
-
|
|
63
|
-
***
|
|
64
|
-
|
|
65
|
-
A class which encapsulates the Service Locator Pattern for Module Factories
|
|
66
|
-
|
|
67
|
-
## Implements
|
|
68
|
-
|
|
69
|
-
- `ModuleFactoryLocatorInstance`
|
|
70
|
-
|
|
71
|
-
## Constructors
|
|
72
|
-
|
|
73
|
-
### Constructor
|
|
74
|
-
|
|
75
|
-
```ts
|
|
76
|
-
new ModuleFactoryLocator(_registry?): ModuleFactoryLocator;
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
### Parameters
|
|
80
|
-
|
|
81
|
-
#### \_registry?
|
|
82
|
-
|
|
83
|
-
`CreatableModuleRegistry` = `...`
|
|
84
|
-
|
|
85
|
-
### Returns
|
|
86
|
-
|
|
87
|
-
`ModuleFactoryLocator`
|
|
88
|
-
|
|
89
|
-
## Properties
|
|
90
|
-
|
|
91
|
-
### \_registry
|
|
92
|
-
|
|
93
|
-
```ts
|
|
94
|
-
protected readonly _registry: CreatableModuleRegistry;
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
## Accessors
|
|
98
|
-
|
|
99
|
-
### registry
|
|
100
|
-
|
|
101
|
-
### Get Signature
|
|
102
|
-
|
|
103
|
-
```ts
|
|
104
|
-
get registry(): Readonly<CreatableModuleRegistry>;
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
The current registry for the module factory
|
|
108
|
-
|
|
109
|
-
#### Returns
|
|
110
|
-
|
|
111
|
-
`Readonly`\<`CreatableModuleRegistry`\>
|
|
112
|
-
|
|
113
|
-
### Implementation of
|
|
114
|
-
|
|
115
|
-
```ts
|
|
116
|
-
ModuleFactoryLocatorInstance.registry
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
## Methods
|
|
120
|
-
|
|
121
|
-
### empty()
|
|
122
|
-
|
|
123
|
-
```ts
|
|
124
|
-
static empty(): ModuleFactoryLocator;
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Returns
|
|
128
|
-
|
|
129
|
-
`ModuleFactoryLocator`
|
|
130
|
-
|
|
131
|
-
***
|
|
132
|
-
|
|
133
|
-
### standard()
|
|
134
|
-
|
|
135
|
-
```ts
|
|
136
|
-
static standard(): ModuleFactoryLocator;
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
### Returns
|
|
140
|
-
|
|
141
|
-
`ModuleFactoryLocator`
|
|
142
|
-
|
|
143
|
-
***
|
|
144
|
-
|
|
145
|
-
### freeze()
|
|
146
|
-
|
|
147
|
-
```ts
|
|
148
|
-
freeze(): void;
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Returns
|
|
152
|
-
|
|
153
|
-
`void`
|
|
154
|
-
|
|
155
|
-
### Implementation of
|
|
156
|
-
|
|
157
|
-
```ts
|
|
158
|
-
ModuleFactoryLocatorInstance.freeze
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
***
|
|
162
|
-
|
|
163
|
-
### locate()
|
|
164
|
-
|
|
165
|
-
```ts
|
|
166
|
-
locate(schema, labels?):
|
|
167
|
-
| CreatableModuleFactory<CreatableModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>>
|
|
168
|
-
| LabeledCreatableModuleFactory;
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
Locates a module factory that matches the supplied schema and labels
|
|
172
|
-
|
|
173
|
-
### Parameters
|
|
174
|
-
|
|
175
|
-
#### schema
|
|
176
|
-
|
|
177
|
-
`Schema`
|
|
178
|
-
|
|
179
|
-
The config schema for the module
|
|
180
|
-
|
|
181
|
-
#### labels?
|
|
182
|
-
|
|
183
|
-
`Labels`
|
|
184
|
-
|
|
185
|
-
The labels for the module factory
|
|
186
|
-
|
|
187
|
-
### Returns
|
|
188
|
-
|
|
189
|
-
\| `CreatableModuleFactory`\<`CreatableModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>\>
|
|
190
|
-
\| `LabeledCreatableModuleFactory`
|
|
191
|
-
|
|
192
|
-
A module factory that matches the supplied schema and labels or throws if one is not found
|
|
193
|
-
|
|
194
|
-
### Implementation of
|
|
195
|
-
|
|
196
|
-
```ts
|
|
197
|
-
ModuleFactoryLocatorInstance.locate
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
***
|
|
201
|
-
|
|
202
|
-
### merge()
|
|
203
|
-
|
|
204
|
-
```ts
|
|
205
|
-
merge(locator): ModuleFactoryLocatorInstance;
|
|
206
|
-
```
|
|
207
|
-
|
|
208
|
-
### Parameters
|
|
209
|
-
|
|
210
|
-
#### locator
|
|
211
|
-
|
|
212
|
-
`ModuleFactoryLocatorInstance`
|
|
213
|
-
|
|
214
|
-
### Returns
|
|
215
|
-
|
|
216
|
-
`ModuleFactoryLocatorInstance`
|
|
217
|
-
|
|
218
|
-
### Implementation of
|
|
219
|
-
|
|
220
|
-
```ts
|
|
221
|
-
ModuleFactoryLocatorInstance.merge
|
|
222
|
-
```
|
|
223
|
-
|
|
224
|
-
***
|
|
225
|
-
|
|
226
|
-
### register()
|
|
227
|
-
|
|
228
|
-
```ts
|
|
229
|
-
register(
|
|
230
|
-
factory,
|
|
231
|
-
labels?,
|
|
232
|
-
primary?): this;
|
|
233
|
-
```
|
|
234
|
-
|
|
235
|
-
Registers a single module factory (with optional tags) with the locator
|
|
236
|
-
|
|
237
|
-
### Parameters
|
|
238
|
-
|
|
239
|
-
#### factory
|
|
240
|
-
|
|
241
|
-
`CreatableModuleFactory`
|
|
242
|
-
|
|
243
|
-
The factory to register
|
|
244
|
-
|
|
245
|
-
#### labels?
|
|
246
|
-
|
|
247
|
-
`Labels`
|
|
248
|
-
|
|
249
|
-
The labels for the module factory
|
|
250
|
-
|
|
251
|
-
#### primary?
|
|
252
|
-
|
|
253
|
-
`boolean` \| `Schema` \| `Schema`[]
|
|
254
|
-
|
|
255
|
-
### Returns
|
|
256
|
-
|
|
257
|
-
`this`
|
|
258
|
-
|
|
259
|
-
### Implementation of
|
|
260
|
-
|
|
261
|
-
```ts
|
|
262
|
-
ModuleFactoryLocatorInstance.register
|
|
263
|
-
```
|
|
264
|
-
|
|
265
|
-
***
|
|
266
|
-
|
|
267
|
-
### registerMany()
|
|
268
|
-
|
|
269
|
-
```ts
|
|
270
|
-
registerMany(factories): this;
|
|
271
|
-
```
|
|
272
|
-
|
|
273
|
-
Registers multiple module factories with the locator
|
|
274
|
-
|
|
275
|
-
### Parameters
|
|
276
|
-
|
|
277
|
-
#### factories
|
|
278
|
-
|
|
279
|
-
`CreatableModuleFactory`\<`CreatableModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>\>[]
|
|
280
|
-
|
|
281
|
-
The factories to register
|
|
282
|
-
|
|
283
|
-
### Returns
|
|
284
|
-
|
|
285
|
-
`this`
|
|
286
|
-
|
|
287
|
-
### Implementation of
|
|
288
|
-
|
|
289
|
-
```ts
|
|
290
|
-
ModuleFactoryLocatorInstance.registerMany
|
|
291
|
-
```
|
|
292
|
-
|
|
293
|
-
***
|
|
294
|
-
|
|
295
|
-
### tryLocate()
|
|
296
|
-
|
|
297
|
-
```ts
|
|
298
|
-
tryLocate(schema, labels?):
|
|
299
|
-
| CreatableModuleFactory<CreatableModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>>
|
|
300
|
-
| LabeledCreatableModuleFactory
|
|
301
|
-
| undefined;
|
|
302
|
-
```
|
|
303
|
-
|
|
304
|
-
Tries to locate a module factory that matches the supplied schema and labels
|
|
305
|
-
|
|
306
|
-
### Parameters
|
|
307
|
-
|
|
308
|
-
#### schema
|
|
309
|
-
|
|
310
|
-
`Schema`
|
|
311
|
-
|
|
312
|
-
The config schema for the module
|
|
313
|
-
|
|
314
|
-
#### labels?
|
|
315
|
-
|
|
316
|
-
`Labels`
|
|
317
|
-
|
|
318
|
-
The labels for the module factory
|
|
319
|
-
|
|
320
|
-
### Returns
|
|
321
|
-
|
|
322
|
-
\| `CreatableModuleFactory`\<`CreatableModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>\>
|
|
323
|
-
\| `LabeledCreatableModuleFactory`
|
|
324
|
-
\| `undefined`
|
|
325
|
-
|
|
326
|
-
A module factory that matches the supplied schema and labels or undefined
|
|
327
|
-
|
|
328
|
-
### Implementation of
|
|
329
|
-
|
|
330
|
-
```ts
|
|
331
|
-
ModuleFactoryLocatorInstance.tryLocate
|
|
332
|
-
```
|
|
333
|
-
|
|
334
|
-
### functions
|
|
335
|
-
|
|
336
|
-
### <a id="standardCreatableFactories"></a>standardCreatableFactories
|
|
337
|
-
|
|
338
|
-
[**@xyo-network/module-factory-locator**](#../README)
|
|
339
|
-
|
|
340
|
-
***
|
|
341
|
-
|
|
342
|
-
```ts
|
|
343
|
-
function standardCreatableFactories(): CreatableModuleRegistry;
|
|
344
|
-
```
|
|
345
|
-
|
|
346
|
-
## Returns
|
|
347
|
-
|
|
348
|
-
`CreatableModuleRegistry`
|
|
349
|
-
|
|
350
|
-
### variables
|
|
351
|
-
|
|
352
|
-
### <a id="standardCreatableModulesList"></a>standardCreatableModulesList
|
|
353
|
-
|
|
354
|
-
[**@xyo-network/module-factory-locator**](#../README)
|
|
355
|
-
|
|
356
|
-
***
|
|
357
|
-
|
|
358
|
-
```ts
|
|
359
|
-
const standardCreatableModulesList: (CreatableModuleFactory | LabeledCreatableModuleFactory)[];
|
|
360
|
-
```
|
|
361
41
|
|
|
362
42
|
|
|
363
43
|
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module-factory-locator",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -22,12 +22,10 @@
|
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
24
|
"types": "./dist/neutral/index.d.ts",
|
|
25
|
-
"import": "./dist/neutral/index.mjs",
|
|
26
25
|
"default": "./dist/neutral/index.mjs"
|
|
27
26
|
},
|
|
28
27
|
"./package.json": "./package.json"
|
|
29
28
|
},
|
|
30
|
-
"types": "dist/neutral/index.d.ts",
|
|
31
29
|
"files": [
|
|
32
30
|
"dist",
|
|
33
31
|
"!**/*.bench.*",
|
|
@@ -36,84 +34,110 @@
|
|
|
36
34
|
"README.md"
|
|
37
35
|
],
|
|
38
36
|
"dependencies": {
|
|
39
|
-
"@xyo-network/bridge-http": "~5.
|
|
40
|
-
"@xyo-network/payload-model": "~5.3.30"
|
|
37
|
+
"@xyo-network/bridge-http": "~5.5.0"
|
|
41
38
|
},
|
|
42
39
|
"devDependencies": {
|
|
40
|
+
"@bitauth/libauth": "~3.0.0",
|
|
43
41
|
"@opentelemetry/api": "^1.9.1",
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@xylabs/
|
|
47
|
-
"@xylabs/
|
|
48
|
-
"
|
|
42
|
+
"@opentelemetry/sdk-trace-base": "^2",
|
|
43
|
+
"@scure/base": "~2.2.0",
|
|
44
|
+
"@xylabs/sdk-js": "^5.0.100",
|
|
45
|
+
"@xylabs/threads": "~5.0.100",
|
|
46
|
+
"@xylabs/toolchain": "~7.11.3",
|
|
47
|
+
"@xylabs/tsconfig": "~7.11.3",
|
|
48
|
+
"@xyo-network/account": "~5.5",
|
|
49
|
+
"@xyo-network/account-model": "~5.5",
|
|
50
|
+
"@xyo-network/boundwitness-builder": "~5.5",
|
|
51
|
+
"@xyo-network/boundwitness-model": "~5.5",
|
|
52
|
+
"@xyo-network/boundwitness-validator": "~5.5",
|
|
53
|
+
"@xyo-network/boundwitness-wrapper": "~5.5",
|
|
54
|
+
"@xyo-network/config-payload-plugin": "~5.5",
|
|
55
|
+
"@xyo-network/data": "~5.5",
|
|
56
|
+
"@xyo-network/elliptic": "~5.5",
|
|
57
|
+
"@xyo-network/hash": "~5.5",
|
|
58
|
+
"@xyo-network/manifest-model": "~5.5",
|
|
59
|
+
"@xyo-network/payload-builder": "~5.5",
|
|
60
|
+
"@xyo-network/payload-model": "~5.5.0",
|
|
61
|
+
"@xyo-network/payload-validator": "~5.5",
|
|
62
|
+
"@xyo-network/payload-wrapper": "~5.5",
|
|
63
|
+
"@xyo-network/previous-hash-store-model": "~5.5",
|
|
64
|
+
"@xyo-network/query-payload-plugin": "~5.5",
|
|
65
|
+
"@xyo-network/wallet-model": "~5.5",
|
|
66
|
+
"@xyo-network/wasm": "~5.5",
|
|
67
|
+
"async-mutex": "^0.5",
|
|
68
|
+
"bn.js": "^5",
|
|
69
|
+
"buffer": "^6",
|
|
70
|
+
"chalk": "^5",
|
|
71
|
+
"debug": "~4.4.3",
|
|
72
|
+
"eslint": "^10.2.1",
|
|
49
73
|
"ethers": "^6.16.0",
|
|
74
|
+
"hash-wasm": "~4.12.0",
|
|
75
|
+
"lru-cache": "~11.3.5",
|
|
76
|
+
"observable-fns": "~0.6.1",
|
|
50
77
|
"pako": "~2.1.0",
|
|
51
78
|
"typescript": "~5.9.3",
|
|
79
|
+
"wasm-feature-detect": "~1.8.0",
|
|
52
80
|
"zod": "^4.3.6",
|
|
53
|
-
"@xyo-network/
|
|
54
|
-
"@xyo-network/archivist-
|
|
55
|
-
"@xyo-network/archivist-generic": "~5.
|
|
56
|
-
"@xyo-network/archivist-
|
|
57
|
-
"@xyo-network/archivist-view": "~5.
|
|
58
|
-
"@xyo-network/archivist-wrapper": "~5.
|
|
59
|
-
"@xyo-network/
|
|
60
|
-
"@xyo-network/
|
|
61
|
-
"@xyo-network/
|
|
62
|
-
"@xyo-network/boundwitness-
|
|
63
|
-
"@xyo-network/
|
|
64
|
-
"@xyo-network/
|
|
65
|
-
"@xyo-network/
|
|
66
|
-
"@xyo-network/diviner-
|
|
67
|
-
"@xyo-network/diviner-
|
|
68
|
-
"@xyo-network/
|
|
69
|
-
"@xyo-network/
|
|
70
|
-
"@xyo-network/
|
|
71
|
-
"@xyo-network/
|
|
72
|
-
"@xyo-network/
|
|
73
|
-
"@xyo-network/
|
|
74
|
-
"@xyo-network/
|
|
75
|
-
"@xyo-network/
|
|
76
|
-
"@xyo-network/
|
|
77
|
-
"@xyo-network/
|
|
78
|
-
"@xyo-network/
|
|
79
|
-
"@xyo-network/
|
|
80
|
-
"@xyo-network/
|
|
81
|
-
"@xyo-network/
|
|
82
|
-
"@xyo-network/diviner-wrapper": "~5.3.30",
|
|
83
|
-
"@xyo-network/node-view": "~5.3.30",
|
|
84
|
-
"@xyo-network/payload-builder": "~5.3.30",
|
|
85
|
-
"@xyo-network/node-wrapper": "~5.3.30",
|
|
86
|
-
"@xyo-network/payload-validator": "~5.3.30",
|
|
87
|
-
"@xyo-network/previous-hash-store-model": "~5.3.30",
|
|
88
|
-
"@xyo-network/sentinel-abstract": "~5.3.30",
|
|
89
|
-
"@xyo-network/sentinel-memory": "~5.3.30",
|
|
90
|
-
"@xyo-network/wallet-model": "~5.3.30",
|
|
91
|
-
"@xyo-network/sentinel-model": "~5.3.30",
|
|
92
|
-
"@xyo-network/wasm": "~5.3.30",
|
|
93
|
-
"@xyo-network/witness-adhoc": "~5.3.30",
|
|
94
|
-
"@xyo-network/witness-model": "~5.3.30"
|
|
81
|
+
"@xyo-network/archivist-abstract": "~5.5.0",
|
|
82
|
+
"@xyo-network/archivist-memory": "~5.5.0",
|
|
83
|
+
"@xyo-network/archivist-generic": "~5.5.0",
|
|
84
|
+
"@xyo-network/archivist-model": "~5.5.0",
|
|
85
|
+
"@xyo-network/archivist-view": "~5.5.0",
|
|
86
|
+
"@xyo-network/archivist-wrapper": "~5.5.0",
|
|
87
|
+
"@xyo-network/bridge-model": "~5.5.0",
|
|
88
|
+
"@xyo-network/bridge-abstract": "~5.5.0",
|
|
89
|
+
"@xyo-network/diviner-abstract": "~5.5.0",
|
|
90
|
+
"@xyo-network/diviner-boundwitness-memory": "~5.5.0",
|
|
91
|
+
"@xyo-network/diviner-identity": "~5.5.0",
|
|
92
|
+
"@xyo-network/diviner-model": "~5.5.0",
|
|
93
|
+
"@xyo-network/diviner-payload-generic": "~5.5.0",
|
|
94
|
+
"@xyo-network/diviner-payload-model": "~5.5.0",
|
|
95
|
+
"@xyo-network/diviner-wrapper": "~5.5.0",
|
|
96
|
+
"@xyo-network/module-abstract": "~5.5.0",
|
|
97
|
+
"@xyo-network/module-model": "~5.5.0",
|
|
98
|
+
"@xyo-network/module-resolver": "~5.5.0",
|
|
99
|
+
"@xyo-network/module-wrapper": "~5.5.0",
|
|
100
|
+
"@xyo-network/node-abstract": "~5.5.0",
|
|
101
|
+
"@xyo-network/node-memory": "~5.5.0",
|
|
102
|
+
"@xyo-network/node-model": "~5.5.0",
|
|
103
|
+
"@xyo-network/node-view": "~5.5.0",
|
|
104
|
+
"@xyo-network/sentinel-abstract": "~5.5.0",
|
|
105
|
+
"@xyo-network/node-wrapper": "~5.5.0",
|
|
106
|
+
"@xyo-network/sentinel-memory": "~5.5.0",
|
|
107
|
+
"@xyo-network/sentinel-model": "~5.5.0",
|
|
108
|
+
"@xyo-network/witness-model": "~5.5.0",
|
|
109
|
+
"@xyo-network/witness-adhoc": "~5.5.0"
|
|
95
110
|
},
|
|
96
111
|
"peerDependencies": {
|
|
97
|
-
"@
|
|
98
|
-
"@
|
|
99
|
-
"@xyo-network/
|
|
100
|
-
"@xyo-network/account-model": "~5.
|
|
101
|
-
"@xyo-network/archivist-memory": "~5.
|
|
102
|
-
"@xyo-network/
|
|
103
|
-
"@xyo-network/
|
|
104
|
-
"@xyo-network/
|
|
105
|
-
"@xyo-network/bridge-model": "~5.
|
|
106
|
-
"@xyo-network/
|
|
107
|
-
"@xyo-network/
|
|
108
|
-
"@xyo-network/
|
|
109
|
-
"@xyo-network/
|
|
110
|
-
"@xyo-network/
|
|
111
|
-
"@xyo-network/
|
|
112
|
-
"@xyo-network/
|
|
113
|
-
"@xyo-network/
|
|
114
|
-
"@xyo-network/
|
|
115
|
-
"@xyo-network/
|
|
116
|
-
"@xyo-network/
|
|
112
|
+
"@scure/base": "~2.2.0",
|
|
113
|
+
"@xylabs/sdk-js": "^5.0.100",
|
|
114
|
+
"@xyo-network/account": "~5.5",
|
|
115
|
+
"@xyo-network/account-model": "~5.5",
|
|
116
|
+
"@xyo-network/archivist-memory": "~5.5",
|
|
117
|
+
"@xyo-network/archivist-view": "~5.5",
|
|
118
|
+
"@xyo-network/boundwitness-model": "~5.5",
|
|
119
|
+
"@xyo-network/bridge-abstract": "~5.5",
|
|
120
|
+
"@xyo-network/bridge-model": "~5.5",
|
|
121
|
+
"@xyo-network/config-payload-plugin": "~5.5",
|
|
122
|
+
"@xyo-network/data": "~5.5",
|
|
123
|
+
"@xyo-network/diviner-boundwitness-memory": "~5.5",
|
|
124
|
+
"@xyo-network/diviner-identity": "~5.5",
|
|
125
|
+
"@xyo-network/diviner-payload-generic": "~5.5",
|
|
126
|
+
"@xyo-network/elliptic": "~5.5",
|
|
127
|
+
"@xyo-network/manifest-model": "~5.5",
|
|
128
|
+
"@xyo-network/module-model": "~5.5",
|
|
129
|
+
"@xyo-network/module-resolver": "~5.5",
|
|
130
|
+
"@xyo-network/node-memory": "~5.5",
|
|
131
|
+
"@xyo-network/node-model": "~5.5",
|
|
132
|
+
"@xyo-network/node-view": "~5.5",
|
|
133
|
+
"@xyo-network/payload-model": "~5.5",
|
|
134
|
+
"@xyo-network/previous-hash-store-model": "~5.5",
|
|
135
|
+
"@xyo-network/sentinel-memory": "~5.5",
|
|
136
|
+
"@xyo-network/witness-adhoc": "~5.5",
|
|
137
|
+
"async-mutex": "~0.5.0",
|
|
138
|
+
"ethers": "^6",
|
|
139
|
+
"lru-cache": "~11.3.5",
|
|
140
|
+
"zod": "^4"
|
|
117
141
|
},
|
|
118
142
|
"publishConfig": {
|
|
119
143
|
"access": "public"
|