retold 4.0.3 → 4.0.7

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.
Files changed (115) hide show
  1. package/.claude/launch.json +29 -0
  2. package/.claude/settings.local.json +85 -2
  3. package/CLAUDE.md +4 -2
  4. package/README.md +24 -2
  5. package/Retold-Modules-Manifest.json +576 -0
  6. package/docs/README.md +7 -1
  7. package/docs/{cover.md → _cover.md} +1 -1
  8. package/docs/_sidebar.md +30 -2
  9. package/docs/architecture/architecture.md +7 -4
  10. package/docs/architecture/dependencies/_generate-graph.js +186 -0
  11. package/docs/architecture/dependencies/_generate-svg.js +364 -0
  12. package/docs/architecture/dependencies/in-ecosystem-dependency-graph-generation.md +97 -0
  13. package/docs/architecture/dependencies/in-ecosystem-dependency-graph.json +3168 -0
  14. package/docs/architecture/dependencies/in-ecosystem-dependency-graph.md +221 -0
  15. package/docs/architecture/dependencies/in-ecosystem-dependency-graph.svg +664 -0
  16. package/docs/architecture/documentation-style-guide.md +65 -0
  17. package/docs/architecture/example-app-style-guide.md +154 -0
  18. package/docs/architecture/modules.md +19 -8
  19. package/docs/architecture/templating/data-access.md +196 -0
  20. package/docs/architecture/templating/data-formatting.md +350 -0
  21. package/docs/architecture/templating/data-generation.md +72 -0
  22. package/docs/architecture/templating/debugging.md +181 -0
  23. package/docs/architecture/templating/entity.md +99 -0
  24. package/docs/architecture/templating/iteration.md +170 -0
  25. package/docs/architecture/templating/jellyfish-deep-dive.md +271 -0
  26. package/docs/architecture/templating/jellyfish-templates.md +476 -0
  27. package/docs/architecture/templating/logic.md +185 -0
  28. package/docs/architecture/templating/ref-breakpoint.md +38 -0
  29. package/docs/architecture/templating/ref-data.md +51 -0
  30. package/docs/architecture/templating/ref-dateonlyformat.md +43 -0
  31. package/docs/architecture/templating/ref-dateonlyymd.md +39 -0
  32. package/docs/architecture/templating/ref-datetimeformat.md +59 -0
  33. package/docs/architecture/templating/ref-datetimeymd.md +44 -0
  34. package/docs/architecture/templating/ref-dejs.md +42 -0
  35. package/docs/architecture/templating/ref-digits.md +36 -0
  36. package/docs/architecture/templating/ref-dj.md +50 -0
  37. package/docs/architecture/templating/ref-dollars.md +36 -0
  38. package/docs/architecture/templating/ref-dt.md +38 -0
  39. package/docs/architecture/templating/ref-dvbk.md +46 -0
  40. package/docs/architecture/templating/ref-dwaf.md +45 -0
  41. package/docs/architecture/templating/ref-dwtf.md +45 -0
  42. package/docs/architecture/templating/ref-entity.md +47 -0
  43. package/docs/architecture/templating/ref-hce.md +29 -0
  44. package/docs/architecture/templating/ref-hcs.md +38 -0
  45. package/docs/architecture/templating/ref-join.md +45 -0
  46. package/docs/architecture/templating/ref-joinunique.md +34 -0
  47. package/docs/architecture/templating/ref-ls.md +37 -0
  48. package/docs/architecture/templating/ref-lv.md +38 -0
  49. package/docs/architecture/templating/ref-lvt.md +33 -0
  50. package/docs/architecture/templating/ref-ne.md +40 -0
  51. package/docs/architecture/templating/ref-pascalcaseidentifier.md +41 -0
  52. package/docs/architecture/templating/ref-pict.md +42 -0
  53. package/docs/architecture/templating/ref-pluckjoinunique.md +39 -0
  54. package/docs/architecture/templating/ref-rn.md +35 -0
  55. package/docs/architecture/templating/ref-rns.md +35 -0
  56. package/docs/architecture/templating/ref-sbr.md +36 -0
  57. package/docs/architecture/templating/ref-solve.md +46 -0
  58. package/docs/architecture/templating/ref-tbda.md +41 -0
  59. package/docs/architecture/templating/ref-tbr.md +43 -0
  60. package/docs/architecture/templating/ref-tbt.md +46 -0
  61. package/docs/architecture/templating/ref-template.md +40 -0
  62. package/docs/architecture/templating/ref-tfa.md +32 -0
  63. package/docs/architecture/templating/ref-tfm.md +43 -0
  64. package/docs/architecture/templating/ref-tif.md +45 -0
  65. package/docs/architecture/templating/ref-tifabs.md +41 -0
  66. package/docs/architecture/templating/ref-ts.md +41 -0
  67. package/docs/architecture/templating/ref-tsfm.md +42 -0
  68. package/docs/architecture/templating/ref-tswp.md +45 -0
  69. package/docs/architecture/templating/ref-tvs.md +48 -0
  70. package/docs/architecture/templating/ref-view.md +40 -0
  71. package/docs/architecture/templating/ref-vrs.md +39 -0
  72. package/docs/architecture/templating/solvers.md +153 -0
  73. package/docs/architecture/templating/template-composition.md +196 -0
  74. package/docs/architecture/templating/template-expressions.md +217 -0
  75. package/docs/architecture/templating/views.md +154 -0
  76. package/docs/contributing.md +50 -0
  77. package/docs/examples/todolist/todo-list.md +1 -1
  78. package/docs/modules/apps.md +26 -0
  79. package/docs/modules/orator.md +0 -7
  80. package/docs/modules/pict.md +18 -0
  81. package/docs/modules/utility.md +23 -1
  82. package/docs/retold-catalog.json +937 -126
  83. package/docs/retold-keyword-index.json +195296 -116062
  84. package/docs/testing.md +122 -0
  85. package/modules/CLAUDE.md +1 -0
  86. package/modules/Checkout.sh +1 -0
  87. package/modules/Diff.sh +86 -0
  88. package/modules/Include-Retold-Module-List.sh +5 -3
  89. package/modules/Status.sh +1 -0
  90. package/modules/Update.sh +1 -0
  91. package/modules/apps/Apps.md +1 -0
  92. package/modules/utility/Utility.md +1 -0
  93. package/package.json +12 -11
  94. package/source/retold-manager/package.json +23 -0
  95. package/source/retold-manager/retold-manager.js +65 -0
  96. package/source/retold-manager/source/Retold-Manager-App.js +1532 -0
  97. package/source/retold-manager/source/Retold-Manager-ModuleCatalog.js +75 -0
  98. package/source/retold-manager/source/Retold-Manager-ProcessRunner.js +706 -0
  99. package/source/retold-manager/source/views/PictView-TUI-Checkout.js +45 -0
  100. package/source/retold-manager/source/views/PictView-TUI-Header.js +41 -0
  101. package/source/retold-manager/source/views/PictView-TUI-Layout.js +53 -0
  102. package/source/retold-manager/source/views/PictView-TUI-Status.js +45 -0
  103. package/source/retold-manager/source/views/PictView-TUI-StatusBar.js +41 -0
  104. package/source/retold-manager/source/views/PictView-TUI-Update.js +45 -0
  105. package/docs/retold-building-documentation.md +0 -33
  106. package/examples/quickstart/layer1/package-lock.json +0 -344
  107. package/examples/quickstart/layer2/package-lock.json +0 -4468
  108. package/examples/quickstart/layer3/package-lock.json +0 -1936
  109. package/examples/quickstart/layer4/package-lock.json +0 -13206
  110. package/examples/quickstart/layer5/package-lock.json +0 -345
  111. package/examples/todo-list/cli-client/package-lock.json +0 -418
  112. package/examples/todo-list/console-client/package-lock.json +0 -426
  113. package/examples/todo-list/server/package-lock.json +0 -6113
  114. package/examples/todo-list/web-client/package-lock.json +0 -12030
  115. package/modules/Retold-Modules.md +0 -24
@@ -0,0 +1,3168 @@
1
+ {
2
+ "metadata": {
3
+ "generated": "2026-02-27",
4
+ "description": "In-ecosystem dependency graph for the Retold module suite",
5
+ "totalModules": 77,
6
+ "totalEcosystemPackages": 76,
7
+ "groups": [
8
+ "fable",
9
+ "meadow",
10
+ "orator",
11
+ "pict",
12
+ "utility",
13
+ "apps",
14
+ "root"
15
+ ]
16
+ },
17
+ "nodes": [
18
+ {
19
+ "name": "retold-manager",
20
+ "group": "root",
21
+ "category": "internal",
22
+ "version": "0.0.1",
23
+ "description": "Terminal UI manager for retold module repositories",
24
+ "path": "./source/retold-manager",
25
+ "ecosystemProductionDependencyCount": 6,
26
+ "ecosystemDevDependencyCount": 0,
27
+ "totalExternalDependencyCount": 1,
28
+ "totalExternalDevDependencyCount": 0
29
+ },
30
+ {
31
+ "name": "retold",
32
+ "group": "root",
33
+ "category": "root",
34
+ "version": "4.0.6",
35
+ "description": "The pict and fable node ecosystem.",
36
+ "path": ".",
37
+ "ecosystemProductionDependencyCount": 1,
38
+ "ecosystemDevDependencyCount": 3,
39
+ "totalExternalDependencyCount": 0,
40
+ "totalExternalDevDependencyCount": 0
41
+ },
42
+ {
43
+ "name": "retold-example-todo-cli",
44
+ "group": "root",
45
+ "category": "example",
46
+ "version": "1.0.0",
47
+ "description": "Retold Example: Todo List CLI (pict-service-commandlineutility)",
48
+ "path": "./examples/todo-list/cli-client",
49
+ "ecosystemProductionDependencyCount": 1,
50
+ "ecosystemDevDependencyCount": 0,
51
+ "totalExternalDependencyCount": 0,
52
+ "totalExternalDevDependencyCount": 0
53
+ },
54
+ {
55
+ "name": "retold-example-todo-console-client",
56
+ "group": "root",
57
+ "category": "example",
58
+ "version": "1.0.0",
59
+ "description": "Retold Example: Todo List Console Client (blessed TUI)",
60
+ "path": "./examples/todo-list/console-client",
61
+ "ecosystemProductionDependencyCount": 5,
62
+ "ecosystemDevDependencyCount": 0,
63
+ "totalExternalDependencyCount": 1,
64
+ "totalExternalDevDependencyCount": 0
65
+ },
66
+ {
67
+ "name": "retold-example-todo-server",
68
+ "group": "root",
69
+ "category": "example",
70
+ "version": "1.0.0",
71
+ "description": "Retold Example: Todo List API Server with SQLite",
72
+ "path": "./examples/todo-list/server",
73
+ "ecosystemProductionDependencyCount": 6,
74
+ "ecosystemDevDependencyCount": 0,
75
+ "totalExternalDependencyCount": 0,
76
+ "totalExternalDevDependencyCount": 0
77
+ },
78
+ {
79
+ "name": "retold-example-todo-web-client",
80
+ "group": "root",
81
+ "category": "example",
82
+ "version": "1.0.0",
83
+ "description": "Retold Example: Todo List Web Client (Pict Application)",
84
+ "path": "./examples/todo-list/web-client",
85
+ "ecosystemProductionDependencyCount": 5,
86
+ "ecosystemDevDependencyCount": 1,
87
+ "totalExternalDependencyCount": 0,
88
+ "totalExternalDevDependencyCount": 0
89
+ },
90
+ {
91
+ "name": "retold-quickstart-layer1-fable",
92
+ "group": "root",
93
+ "category": "example",
94
+ "version": "1.0.0",
95
+ "description": "Retold Quickstart: Layer 1 - Fable (Core DI, Configuration, Logging)",
96
+ "path": "./examples/quickstart/layer1",
97
+ "ecosystemProductionDependencyCount": 1,
98
+ "ecosystemDevDependencyCount": 0,
99
+ "totalExternalDependencyCount": 0,
100
+ "totalExternalDevDependencyCount": 0
101
+ },
102
+ {
103
+ "name": "retold-quickstart-layer2-meadow",
104
+ "group": "root",
105
+ "category": "example",
106
+ "version": "1.0.0",
107
+ "description": "Retold Quickstart: Layer 2 - Meadow (Data Access with MySQL)",
108
+ "path": "./examples/quickstart/layer2",
109
+ "ecosystemProductionDependencyCount": 3,
110
+ "ecosystemDevDependencyCount": 0,
111
+ "totalExternalDependencyCount": 1,
112
+ "totalExternalDevDependencyCount": 0
113
+ },
114
+ {
115
+ "name": "retold-quickstart-layer5-utility",
116
+ "group": "root",
117
+ "category": "example",
118
+ "version": "1.0.0",
119
+ "description": "Retold Quickstart: Layer 5 - Utility (Manyfest Object Navigation)",
120
+ "path": "./examples/quickstart/layer5",
121
+ "ecosystemProductionDependencyCount": 2,
122
+ "ecosystemDevDependencyCount": 0,
123
+ "totalExternalDependencyCount": 0,
124
+ "totalExternalDevDependencyCount": 0
125
+ },
126
+ {
127
+ "name": "retold-quickstart-layer4-pict",
128
+ "group": "root",
129
+ "category": "example",
130
+ "version": "1.0.0",
131
+ "description": "Retold Quickstart: Layer 4 - Pict (Browser MVC with Views and Router)",
132
+ "path": "./examples/quickstart/layer4",
133
+ "ecosystemProductionDependencyCount": 8,
134
+ "ecosystemDevDependencyCount": 1,
135
+ "totalExternalDependencyCount": 0,
136
+ "totalExternalDevDependencyCount": 0
137
+ },
138
+ {
139
+ "name": "retold-quickstart-layer3-orator",
140
+ "group": "root",
141
+ "category": "example",
142
+ "version": "1.0.0",
143
+ "description": "Retold Quickstart: Layer 3 - Orator (REST API Server)",
144
+ "path": "./examples/quickstart/layer3",
145
+ "ecosystemProductionDependencyCount": 3,
146
+ "ecosystemDevDependencyCount": 0,
147
+ "totalExternalDependencyCount": 0,
148
+ "totalExternalDevDependencyCount": 0
149
+ },
150
+ {
151
+ "name": "orator-serviceserver-restify",
152
+ "group": "orator",
153
+ "category": "module",
154
+ "version": "2.0.8",
155
+ "description": "Restify Service Server for Orator",
156
+ "path": "./modules/orator/orator-serviceserver-restify",
157
+ "ecosystemProductionDependencyCount": 1,
158
+ "ecosystemDevDependencyCount": 3,
159
+ "totalExternalDependencyCount": 1,
160
+ "totalExternalDevDependencyCount": 8
161
+ },
162
+ {
163
+ "name": "orator-http-proxy",
164
+ "group": "orator",
165
+ "category": "module",
166
+ "version": "1.0.4",
167
+ "description": "Orator http proxy pass-through.",
168
+ "path": "./modules/orator/orator-http-proxy",
169
+ "ecosystemProductionDependencyCount": 1,
170
+ "ecosystemDevDependencyCount": 4,
171
+ "totalExternalDependencyCount": 1,
172
+ "totalExternalDevDependencyCount": 0
173
+ },
174
+ {
175
+ "name": "orator",
176
+ "group": "orator",
177
+ "category": "module",
178
+ "version": "6.0.2",
179
+ "description": "Unopinionated API http server abstraction - REST or IPC",
180
+ "path": "./modules/orator/orator",
181
+ "ecosystemProductionDependencyCount": 3,
182
+ "ecosystemDevDependencyCount": 2,
183
+ "totalExternalDependencyCount": 1,
184
+ "totalExternalDevDependencyCount": 0
185
+ },
186
+ {
187
+ "name": "orator-static-server",
188
+ "group": "orator",
189
+ "category": "module",
190
+ "version": "2.0.3",
191
+ "description": "Static file serving for Orator API servers.",
192
+ "path": "./modules/orator/orator-static-server",
193
+ "ecosystemProductionDependencyCount": 1,
194
+ "ecosystemDevDependencyCount": 4,
195
+ "totalExternalDependencyCount": 3,
196
+ "totalExternalDevDependencyCount": 0
197
+ },
198
+ {
199
+ "name": "orator-conversion",
200
+ "group": "orator",
201
+ "category": "module",
202
+ "version": "1.0.1",
203
+ "description": "File format conversion endpoints for Orator service servers.",
204
+ "path": "./modules/orator/orator-conversion",
205
+ "ecosystemProductionDependencyCount": 1,
206
+ "ecosystemDevDependencyCount": 4,
207
+ "totalExternalDependencyCount": 1,
208
+ "totalExternalDevDependencyCount": 0
209
+ },
210
+ {
211
+ "name": "orator-serviceserver-base",
212
+ "group": "orator",
213
+ "category": "module",
214
+ "version": "1.0.5",
215
+ "description": "Base Orator serviceserver class",
216
+ "path": "./modules/orator/orator-serviceserver-base",
217
+ "ecosystemProductionDependencyCount": 1,
218
+ "ecosystemDevDependencyCount": 3,
219
+ "totalExternalDependencyCount": 0,
220
+ "totalExternalDevDependencyCount": 9
221
+ },
222
+ {
223
+ "name": "tidings",
224
+ "group": "orator",
225
+ "category": "module",
226
+ "version": "1.0.35",
227
+ "description": "Reporting scaffolding and pattern.",
228
+ "path": "./modules/orator/tidings",
229
+ "ecosystemProductionDependencyCount": 2,
230
+ "ecosystemDevDependencyCount": 1,
231
+ "totalExternalDependencyCount": 12,
232
+ "totalExternalDevDependencyCount": 1
233
+ },
234
+ {
235
+ "name": "pict-panel",
236
+ "group": "pict",
237
+ "category": "module",
238
+ "version": "1.0.5",
239
+ "description": "Pict Control Panel",
240
+ "path": "./modules/pict/pict-panel",
241
+ "ecosystemProductionDependencyCount": 4,
242
+ "ecosystemDevDependencyCount": 3,
243
+ "totalExternalDependencyCount": 0,
244
+ "totalExternalDevDependencyCount": 0
245
+ },
246
+ {
247
+ "name": "pict-section-filebrowser",
248
+ "group": "pict",
249
+ "category": "module",
250
+ "version": "0.0.1",
251
+ "description": "Pict file browser section - composable browsing, listing, and viewing views for file system navigation",
252
+ "path": "./modules/pict/pict-section-filebrowser",
253
+ "ecosystemProductionDependencyCount": 6,
254
+ "ecosystemDevDependencyCount": 2,
255
+ "totalExternalDependencyCount": 0,
256
+ "totalExternalDevDependencyCount": 2
257
+ },
258
+ {
259
+ "name": "pict-application",
260
+ "group": "pict",
261
+ "category": "module",
262
+ "version": "1.0.32",
263
+ "description": "Application base class for a pict view-based application",
264
+ "path": "./modules/pict/pict-application",
265
+ "ecosystemProductionDependencyCount": 1,
266
+ "ecosystemDevDependencyCount": 4,
267
+ "totalExternalDependencyCount": 0,
268
+ "totalExternalDevDependencyCount": 4
269
+ },
270
+ {
271
+ "name": "pict-view",
272
+ "group": "pict",
273
+ "category": "module",
274
+ "version": "1.0.66",
275
+ "description": "Pict View Base Class",
276
+ "path": "./modules/pict/pict-view",
277
+ "ecosystemProductionDependencyCount": 2,
278
+ "ecosystemDevDependencyCount": 2,
279
+ "totalExternalDependencyCount": 0,
280
+ "totalExternalDevDependencyCount": 4
281
+ },
282
+ {
283
+ "name": "pict-nonlinearconfig",
284
+ "group": "pict",
285
+ "category": "module",
286
+ "version": "0.0.1",
287
+ "description": "Pict Nonlinear Configuration Manager",
288
+ "path": "./modules/pict/pict-nonlinearconfig",
289
+ "ecosystemProductionDependencyCount": 5,
290
+ "ecosystemDevDependencyCount": 1,
291
+ "totalExternalDependencyCount": 0,
292
+ "totalExternalDevDependencyCount": 0
293
+ },
294
+ {
295
+ "name": "pict-router",
296
+ "group": "pict",
297
+ "category": "module",
298
+ "version": "1.0.5",
299
+ "description": "Pict Router",
300
+ "path": "./modules/pict/pict-router",
301
+ "ecosystemProductionDependencyCount": 1,
302
+ "ecosystemDevDependencyCount": 1,
303
+ "totalExternalDependencyCount": 1,
304
+ "totalExternalDevDependencyCount": 5
305
+ },
306
+ {
307
+ "name": "pict-section-objecteditor",
308
+ "group": "pict",
309
+ "category": "module",
310
+ "version": "1.0.0",
311
+ "description": "Pict tree-based JSON object editor section",
312
+ "path": "./modules/pict/pict-section-objecteditor",
313
+ "ecosystemProductionDependencyCount": 1,
314
+ "ecosystemDevDependencyCount": 2,
315
+ "totalExternalDependencyCount": 0,
316
+ "totalExternalDevDependencyCount": 0
317
+ },
318
+ {
319
+ "name": "cryptbrau",
320
+ "group": "pict",
321
+ "category": "module",
322
+ "version": "1.0.1",
323
+ "description": "Simple in-browser encryption (symmetric).",
324
+ "path": "./modules/pict/cryptbrau",
325
+ "ecosystemProductionDependencyCount": 0,
326
+ "ecosystemDevDependencyCount": 1,
327
+ "totalExternalDependencyCount": 1,
328
+ "totalExternalDevDependencyCount": 0
329
+ },
330
+ {
331
+ "name": "pict-section-formeditor",
332
+ "group": "pict",
333
+ "category": "module",
334
+ "version": "1.0.8",
335
+ "description": "Pict visual editor for pict-section-form configurations",
336
+ "path": "./modules/pict/pict-section-formeditor",
337
+ "ecosystemProductionDependencyCount": 6,
338
+ "ecosystemDevDependencyCount": 2,
339
+ "totalExternalDependencyCount": 0,
340
+ "totalExternalDevDependencyCount": 0
341
+ },
342
+ {
343
+ "name": "pict-serviceproviderbase",
344
+ "group": "pict",
345
+ "category": "module",
346
+ "version": "1.0.3",
347
+ "description": "Simple base classes for pict services.",
348
+ "path": "./modules/pict/pict-serviceproviderbase",
349
+ "ecosystemProductionDependencyCount": 2,
350
+ "ecosystemDevDependencyCount": 1,
351
+ "totalExternalDependencyCount": 0,
352
+ "totalExternalDevDependencyCount": 0
353
+ },
354
+ {
355
+ "name": "pict",
356
+ "group": "pict",
357
+ "category": "module",
358
+ "version": "1.0.354",
359
+ "description": "Pict browser library.",
360
+ "path": "./modules/pict/pict",
361
+ "ecosystemProductionDependencyCount": 6,
362
+ "ecosystemDevDependencyCount": 1,
363
+ "totalExternalDependencyCount": 0,
364
+ "totalExternalDevDependencyCount": 7
365
+ },
366
+ {
367
+ "name": "pict-section-flow",
368
+ "group": "pict",
369
+ "category": "module",
370
+ "version": "0.0.1",
371
+ "description": "Pict Section Flow Diagram",
372
+ "path": "./modules/pict/pict-section-flow",
373
+ "ecosystemProductionDependencyCount": 3,
374
+ "ecosystemDevDependencyCount": 2,
375
+ "totalExternalDependencyCount": 0,
376
+ "totalExternalDevDependencyCount": 0
377
+ },
378
+ {
379
+ "name": "pict-section-entitymanagement",
380
+ "group": "pict",
381
+ "category": "module",
382
+ "version": "1.0.0",
383
+ "description": "Dynamic entity management sections leveraging pict-section-forms metatemplates.",
384
+ "path": "./modules/pict/pict-section-entitymanagement",
385
+ "ecosystemProductionDependencyCount": 2,
386
+ "ecosystemDevDependencyCount": 1,
387
+ "totalExternalDependencyCount": 0,
388
+ "totalExternalDevDependencyCount": 0
389
+ },
390
+ {
391
+ "name": "pict-section-recordset",
392
+ "group": "pict",
393
+ "category": "module",
394
+ "version": "1.0.63",
395
+ "description": "Pict dynamic record set management views",
396
+ "path": "./modules/pict/pict-section-recordset",
397
+ "ecosystemProductionDependencyCount": 6,
398
+ "ecosystemDevDependencyCount": 4,
399
+ "totalExternalDependencyCount": 1,
400
+ "totalExternalDevDependencyCount": 7
401
+ },
402
+ {
403
+ "name": "pict-section-content",
404
+ "group": "pict",
405
+ "category": "module",
406
+ "version": "0.0.6",
407
+ "description": "Pict content rendering section - markdown parsing, Mermaid diagrams, and KaTeX equations",
408
+ "path": "./modules/pict/pict-section-content",
409
+ "ecosystemProductionDependencyCount": 3,
410
+ "ecosystemDevDependencyCount": 2,
411
+ "totalExternalDependencyCount": 0,
412
+ "totalExternalDevDependencyCount": 0
413
+ },
414
+ {
415
+ "name": "pict-service-commandlineutility",
416
+ "group": "pict",
417
+ "category": "module",
418
+ "version": "1.0.18",
419
+ "description": "Pict Command-Line Utility Service",
420
+ "path": "./modules/pict/pict-service-commandlineutility",
421
+ "ecosystemProductionDependencyCount": 2,
422
+ "ecosystemDevDependencyCount": 1,
423
+ "totalExternalDependencyCount": 1,
424
+ "totalExternalDevDependencyCount": 3
425
+ },
426
+ {
427
+ "name": "pict-section-markdowneditor",
428
+ "group": "pict",
429
+ "category": "module",
430
+ "version": "1.0.0",
431
+ "description": "Pict segmented markdown editor section built on CodeMirror",
432
+ "path": "./modules/pict/pict-section-markdowneditor",
433
+ "ecosystemProductionDependencyCount": 2,
434
+ "ecosystemDevDependencyCount": 2,
435
+ "totalExternalDependencyCount": 0,
436
+ "totalExternalDevDependencyCount": 3
437
+ },
438
+ {
439
+ "name": "informary",
440
+ "group": "pict",
441
+ "category": "module",
442
+ "version": "2.0.22",
443
+ "description": "Informary form data marshaling library.",
444
+ "path": "./modules/pict/informary",
445
+ "ecosystemProductionDependencyCount": 1,
446
+ "ecosystemDevDependencyCount": 1,
447
+ "totalExternalDependencyCount": 1,
448
+ "totalExternalDevDependencyCount": 5
449
+ },
450
+ {
451
+ "name": "pict-template",
452
+ "group": "pict",
453
+ "category": "module",
454
+ "version": "1.0.14",
455
+ "description": "Pict Template Base Class",
456
+ "path": "./modules/pict/pict-template",
457
+ "ecosystemProductionDependencyCount": 1,
458
+ "ecosystemDevDependencyCount": 2,
459
+ "totalExternalDependencyCount": 0,
460
+ "totalExternalDevDependencyCount": 1
461
+ },
462
+ {
463
+ "name": "pict-section-form",
464
+ "group": "pict",
465
+ "category": "module",
466
+ "version": "1.0.192",
467
+ "description": "Pict dynamic form sections",
468
+ "path": "./modules/pict/pict-section-form",
469
+ "ecosystemProductionDependencyCount": 5,
470
+ "ecosystemDevDependencyCount": 4,
471
+ "totalExternalDependencyCount": 2,
472
+ "totalExternalDevDependencyCount": 6
473
+ },
474
+ {
475
+ "name": "pict-provider",
476
+ "group": "pict",
477
+ "category": "module",
478
+ "version": "1.0.11",
479
+ "description": "Pict Provider Base Class",
480
+ "path": "./modules/pict/pict-provider",
481
+ "ecosystemProductionDependencyCount": 1,
482
+ "ecosystemDevDependencyCount": 2,
483
+ "totalExternalDependencyCount": 0,
484
+ "totalExternalDevDependencyCount": 3
485
+ },
486
+ {
487
+ "name": "pict-chance",
488
+ "group": "pict",
489
+ "category": "module",
490
+ "version": "1.0.0",
491
+ "description": "Chance library random function goodness, packaged for pict templates.",
492
+ "path": "./modules/pict/pict-chance",
493
+ "ecosystemProductionDependencyCount": 1,
494
+ "ecosystemDevDependencyCount": 1,
495
+ "totalExternalDependencyCount": 1,
496
+ "totalExternalDevDependencyCount": 0
497
+ },
498
+ {
499
+ "name": "pict-terminalui",
500
+ "group": "pict",
501
+ "category": "module",
502
+ "version": "0.0.2",
503
+ "description": "Pict Terminal UI - Blessed-based terminal interface for Pict views",
504
+ "path": "./modules/pict/pict-terminalui",
505
+ "ecosystemProductionDependencyCount": 5,
506
+ "ecosystemDevDependencyCount": 1,
507
+ "totalExternalDependencyCount": 1,
508
+ "totalExternalDevDependencyCount": 0
509
+ },
510
+ {
511
+ "name": "pict-section-tuigrid",
512
+ "group": "pict",
513
+ "category": "module",
514
+ "version": "1.0.30",
515
+ "description": "Pict Toast UI Grid Section",
516
+ "path": "./modules/pict/pict-section-tuigrid",
517
+ "ecosystemProductionDependencyCount": 1,
518
+ "ecosystemDevDependencyCount": 2,
519
+ "totalExternalDependencyCount": 0,
520
+ "totalExternalDevDependencyCount": 4
521
+ },
522
+ {
523
+ "name": "pict-docuserve",
524
+ "group": "pict",
525
+ "category": "module",
526
+ "version": "0.0.27",
527
+ "description": "Pict Documentation Server - A single-page documentation viewer built on Pict",
528
+ "path": "./modules/pict/pict-docuserve",
529
+ "ecosystemProductionDependencyCount": 6,
530
+ "ecosystemDevDependencyCount": 1,
531
+ "totalExternalDependencyCount": 1,
532
+ "totalExternalDevDependencyCount": 0
533
+ },
534
+ {
535
+ "name": "pict-section-code",
536
+ "group": "pict",
537
+ "category": "module",
538
+ "version": "1.0.2",
539
+ "description": "Pict code editor section wrapping CodeJar",
540
+ "path": "./modules/pict/pict-section-code",
541
+ "ecosystemProductionDependencyCount": 1,
542
+ "ecosystemDevDependencyCount": 2,
543
+ "totalExternalDependencyCount": 0,
544
+ "totalExternalDevDependencyCount": 2
545
+ },
546
+ {
547
+ "name": "fable-serviceproviderbase",
548
+ "group": "fable",
549
+ "category": "module",
550
+ "version": "3.0.18",
551
+ "description": "Simple base classes for fable services.",
552
+ "path": "./modules/fable/fable-serviceproviderbase",
553
+ "ecosystemProductionDependencyCount": 0,
554
+ "ecosystemDevDependencyCount": 2,
555
+ "totalExternalDependencyCount": 0,
556
+ "totalExternalDevDependencyCount": 2
557
+ },
558
+ {
559
+ "name": "fable-log",
560
+ "group": "fable",
561
+ "category": "module",
562
+ "version": "3.0.17",
563
+ "description": "A simple logging wrapper.",
564
+ "path": "./modules/fable/fable-log",
565
+ "ecosystemProductionDependencyCount": 1,
566
+ "ecosystemDevDependencyCount": 1,
567
+ "totalExternalDependencyCount": 0,
568
+ "totalExternalDevDependencyCount": 0
569
+ },
570
+ {
571
+ "name": "fable-operationstep",
572
+ "group": "fable",
573
+ "category": "module",
574
+ "version": "3.0.1",
575
+ "description": "Simple base class for fable operation steps.",
576
+ "path": "./modules/fable/fable-operationstep",
577
+ "ecosystemProductionDependencyCount": 1,
578
+ "ecosystemDevDependencyCount": 2,
579
+ "totalExternalDependencyCount": 0,
580
+ "totalExternalDevDependencyCount": 0
581
+ },
582
+ {
583
+ "name": "fable-settings",
584
+ "group": "fable",
585
+ "category": "module",
586
+ "version": "3.0.15",
587
+ "description": "A simple, tolerant configuration chain.",
588
+ "path": "./modules/fable/fable-settings",
589
+ "ecosystemProductionDependencyCount": 2,
590
+ "ecosystemDevDependencyCount": 1,
591
+ "totalExternalDependencyCount": 0,
592
+ "totalExternalDevDependencyCount": 0
593
+ },
594
+ {
595
+ "name": "fable-uuid",
596
+ "group": "fable",
597
+ "category": "module",
598
+ "version": "3.0.12",
599
+ "description": "A simple UUID Generator.",
600
+ "path": "./modules/fable/fable-uuid",
601
+ "ecosystemProductionDependencyCount": 1,
602
+ "ecosystemDevDependencyCount": 1,
603
+ "totalExternalDependencyCount": 0,
604
+ "totalExternalDevDependencyCount": 0
605
+ },
606
+ {
607
+ "name": "fable",
608
+ "group": "fable",
609
+ "category": "module",
610
+ "version": "3.1.62",
611
+ "description": "A service dependency injection, configuration and logging library.",
612
+ "path": "./modules/fable/fable",
613
+ "ecosystemProductionDependencyCount": 6,
614
+ "ecosystemDevDependencyCount": 1,
615
+ "totalExternalDependencyCount": 7,
616
+ "totalExternalDevDependencyCount": 0
617
+ },
618
+ {
619
+ "name": "fable-log-logger-bunyan",
620
+ "group": "fable",
621
+ "category": "module",
622
+ "version": "1.0.4",
623
+ "description": "Bunyan logger for fable-log.",
624
+ "path": "./modules/fable/fable-log-logger-bunyan",
625
+ "ecosystemProductionDependencyCount": 1,
626
+ "ecosystemDevDependencyCount": 2,
627
+ "totalExternalDependencyCount": 1,
628
+ "totalExternalDevDependencyCount": 0
629
+ },
630
+ {
631
+ "name": "retold-harness",
632
+ "group": "meadow",
633
+ "category": "module",
634
+ "version": "1.1.0",
635
+ "description": "Restful API harness. Serves on 8086.",
636
+ "path": "./modules/meadow/retold-harness",
637
+ "ecosystemProductionDependencyCount": 2,
638
+ "ecosystemDevDependencyCount": 2,
639
+ "totalExternalDependencyCount": 0,
640
+ "totalExternalDevDependencyCount": 1
641
+ },
642
+ {
643
+ "name": "meadow-graph-client",
644
+ "group": "meadow",
645
+ "category": "module",
646
+ "version": "1.0.0",
647
+ "description": "Meadow graph client for pulling sets of records and comprehensions.",
648
+ "path": "./modules/meadow/meadow-graph-client",
649
+ "ecosystemProductionDependencyCount": 1,
650
+ "ecosystemDevDependencyCount": 2,
651
+ "totalExternalDependencyCount": 0,
652
+ "totalExternalDevDependencyCount": 0
653
+ },
654
+ {
655
+ "name": "meadow-connection-mysql",
656
+ "group": "meadow",
657
+ "category": "module",
658
+ "version": "1.0.8",
659
+ "description": "Meadow MySQL Plugin",
660
+ "path": "./modules/meadow/meadow-connection-mysql",
661
+ "ecosystemProductionDependencyCount": 1,
662
+ "ecosystemDevDependencyCount": 2,
663
+ "totalExternalDependencyCount": 1,
664
+ "totalExternalDevDependencyCount": 1
665
+ },
666
+ {
667
+ "name": "bibliograph-storage-lmdb",
668
+ "group": "meadow",
669
+ "category": "module",
670
+ "version": "1.0.0",
671
+ "description": "",
672
+ "path": "./modules/meadow/bibliograph-storage-lmdb",
673
+ "ecosystemProductionDependencyCount": 0,
674
+ "ecosystemDevDependencyCount": 0,
675
+ "totalExternalDependencyCount": 1,
676
+ "totalExternalDevDependencyCount": 0
677
+ },
678
+ {
679
+ "name": "stricture",
680
+ "group": "meadow",
681
+ "category": "module",
682
+ "version": "3.0.0",
683
+ "description": "Stricture MicroDDL JSON Parser — compiler and multi-target schema code generator",
684
+ "path": "./modules/meadow/stricture",
685
+ "ecosystemProductionDependencyCount": 5,
686
+ "ecosystemDevDependencyCount": 1,
687
+ "totalExternalDependencyCount": 3,
688
+ "totalExternalDevDependencyCount": 0
689
+ },
690
+ {
691
+ "name": "meadow-connection-sqlite",
692
+ "group": "meadow",
693
+ "category": "module",
694
+ "version": "1.0.12",
695
+ "description": "Meadow SQLite Plugin",
696
+ "path": "./modules/meadow/meadow-connection-sqlite",
697
+ "ecosystemProductionDependencyCount": 1,
698
+ "ecosystemDevDependencyCount": 2,
699
+ "totalExternalDependencyCount": 1,
700
+ "totalExternalDevDependencyCount": 0
701
+ },
702
+ {
703
+ "name": "meadow-connection-mssql",
704
+ "group": "meadow",
705
+ "category": "module",
706
+ "version": "1.0.11",
707
+ "description": "Meadow MSSQL Plugin",
708
+ "path": "./modules/meadow/meadow-connection-mssql",
709
+ "ecosystemProductionDependencyCount": 1,
710
+ "ecosystemDevDependencyCount": 2,
711
+ "totalExternalDependencyCount": 1,
712
+ "totalExternalDevDependencyCount": 0
713
+ },
714
+ {
715
+ "name": "meadow-endpoints",
716
+ "group": "meadow",
717
+ "category": "module",
718
+ "version": "4.0.9",
719
+ "description": "Automatic API endpoints for Meadow data.",
720
+ "path": "./modules/meadow/meadow-endpoints",
721
+ "ecosystemProductionDependencyCount": 3,
722
+ "ecosystemDevDependencyCount": 3,
723
+ "totalExternalDependencyCount": 4,
724
+ "totalExternalDevDependencyCount": 9
725
+ },
726
+ {
727
+ "name": "foxhound",
728
+ "group": "meadow",
729
+ "category": "module",
730
+ "version": "2.0.17",
731
+ "description": "A Database Query generation library.",
732
+ "path": "./modules/meadow/foxhound",
733
+ "ecosystemProductionDependencyCount": 1,
734
+ "ecosystemDevDependencyCount": 1,
735
+ "totalExternalDependencyCount": 0,
736
+ "totalExternalDevDependencyCount": 0
737
+ },
738
+ {
739
+ "name": "meadow-integration",
740
+ "group": "meadow",
741
+ "category": "module",
742
+ "version": "1.0.4",
743
+ "description": "Meadow Data Integration",
744
+ "path": "./modules/meadow/meadow-integration",
745
+ "ecosystemProductionDependencyCount": 5,
746
+ "ecosystemDevDependencyCount": 1,
747
+ "totalExternalDependencyCount": 0,
748
+ "totalExternalDevDependencyCount": 0
749
+ },
750
+ {
751
+ "name": "parime",
752
+ "group": "meadow",
753
+ "category": "module",
754
+ "version": "1.0.1",
755
+ "description": "Simple generic data lake behaviors.",
756
+ "path": "./modules/meadow/parime",
757
+ "ecosystemProductionDependencyCount": 4,
758
+ "ecosystemDevDependencyCount": 2,
759
+ "totalExternalDependencyCount": 0,
760
+ "totalExternalDevDependencyCount": 0
761
+ },
762
+ {
763
+ "name": "bibliograph-storage-rocksdb",
764
+ "group": "meadow",
765
+ "category": "module",
766
+ "version": "1.0.0",
767
+ "description": "",
768
+ "path": "./modules/meadow/bibliograph-storage-leveldb",
769
+ "ecosystemProductionDependencyCount": 1,
770
+ "ecosystemDevDependencyCount": 1,
771
+ "totalExternalDependencyCount": 0,
772
+ "totalExternalDevDependencyCount": 0
773
+ },
774
+ {
775
+ "name": "bibliograph-storage-rocksdb",
776
+ "group": "meadow",
777
+ "category": "module",
778
+ "version": "1.0.0",
779
+ "description": "",
780
+ "path": "./modules/meadow/bibliograph-storage-rocksdb",
781
+ "ecosystemProductionDependencyCount": 1,
782
+ "ecosystemDevDependencyCount": 1,
783
+ "totalExternalDependencyCount": 0,
784
+ "totalExternalDevDependencyCount": 0
785
+ },
786
+ {
787
+ "name": "meadow",
788
+ "group": "meadow",
789
+ "category": "module",
790
+ "version": "2.0.22",
791
+ "description": "A data access library.",
792
+ "path": "./modules/meadow/meadow",
793
+ "ecosystemProductionDependencyCount": 1,
794
+ "ecosystemDevDependencyCount": 5,
795
+ "totalExternalDependencyCount": 3,
796
+ "totalExternalDevDependencyCount": 4
797
+ },
798
+ {
799
+ "name": "retold-data-service",
800
+ "group": "meadow",
801
+ "category": "module",
802
+ "version": "2.0.11",
803
+ "description": "Serve up a whole model!",
804
+ "path": "./modules/meadow/retold-data-service",
805
+ "ecosystemProductionDependencyCount": 9,
806
+ "ecosystemDevDependencyCount": 3,
807
+ "totalExternalDependencyCount": 0,
808
+ "totalExternalDevDependencyCount": 1
809
+ },
810
+ {
811
+ "name": "bibliograph",
812
+ "group": "meadow",
813
+ "category": "module",
814
+ "version": "0.1.2",
815
+ "description": "Key value record comprehension service. Raw data.",
816
+ "path": "./modules/meadow/bibliograph",
817
+ "ecosystemProductionDependencyCount": 2,
818
+ "ecosystemDevDependencyCount": 1,
819
+ "totalExternalDependencyCount": 0,
820
+ "totalExternalDevDependencyCount": 0
821
+ },
822
+ {
823
+ "name": "retold-content-system",
824
+ "group": "apps",
825
+ "category": "module",
826
+ "version": "1.0.1",
827
+ "description": "Retold Content System - Markdown content viewer and editor",
828
+ "path": "./modules/apps/retold-content-system",
829
+ "ecosystemProductionDependencyCount": 13,
830
+ "ecosystemDevDependencyCount": 1,
831
+ "totalExternalDependencyCount": 0,
832
+ "totalExternalDevDependencyCount": 7
833
+ },
834
+ {
835
+ "name": "retold-remote",
836
+ "group": "apps",
837
+ "category": "module",
838
+ "version": "0.0.1",
839
+ "description": "Retold Remote - NAS media browser with gallery views and keyboard navigation",
840
+ "path": "./modules/apps/retold-remote",
841
+ "ecosystemProductionDependencyCount": 12,
842
+ "ecosystemDevDependencyCount": 1,
843
+ "totalExternalDependencyCount": 2,
844
+ "totalExternalDevDependencyCount": 0
845
+ },
846
+ {
847
+ "name": "quackage",
848
+ "group": "utility",
849
+ "category": "module",
850
+ "version": "1.0.58",
851
+ "description": "Building. Testing. Quacking. Reloading.",
852
+ "path": "./modules/utility/quackage",
853
+ "ecosystemProductionDependencyCount": 3,
854
+ "ecosystemDevDependencyCount": 0,
855
+ "totalExternalDependencyCount": 16,
856
+ "totalExternalDevDependencyCount": 0
857
+ },
858
+ {
859
+ "name": "precedent",
860
+ "group": "utility",
861
+ "category": "module",
862
+ "version": "1.0.16",
863
+ "description": "Precedent Meta-Templating",
864
+ "path": "./modules/utility/precedent",
865
+ "ecosystemProductionDependencyCount": 0,
866
+ "ecosystemDevDependencyCount": 1,
867
+ "totalExternalDependencyCount": 0,
868
+ "totalExternalDevDependencyCount": 0
869
+ },
870
+ {
871
+ "name": "indoctrinate",
872
+ "group": "utility",
873
+ "category": "module",
874
+ "version": "1.0.7",
875
+ "description": "Documentation generation and indoctrination.",
876
+ "path": "./modules/utility/indoctrinate",
877
+ "ecosystemProductionDependencyCount": 1,
878
+ "ecosystemDevDependencyCount": 1,
879
+ "totalExternalDependencyCount": 6,
880
+ "totalExternalDevDependencyCount": 0
881
+ },
882
+ {
883
+ "name": "cachetrax",
884
+ "group": "utility",
885
+ "category": "module",
886
+ "version": "1.0.5",
887
+ "description": "Caching Money.",
888
+ "path": "./modules/utility/cachetrax",
889
+ "ecosystemProductionDependencyCount": 1,
890
+ "ecosystemDevDependencyCount": 1,
891
+ "totalExternalDependencyCount": 0,
892
+ "totalExternalDevDependencyCount": 0
893
+ },
894
+ {
895
+ "name": "manyfest",
896
+ "group": "utility",
897
+ "category": "module",
898
+ "version": "1.0.47",
899
+ "description": "JSON Object Manifest for Data Description and Parsing",
900
+ "path": "./modules/utility/manyfest",
901
+ "ecosystemProductionDependencyCount": 1,
902
+ "ecosystemDevDependencyCount": 1,
903
+ "totalExternalDependencyCount": 0,
904
+ "totalExternalDevDependencyCount": 1
905
+ },
906
+ {
907
+ "name": "cumulation",
908
+ "group": "utility",
909
+ "category": "module",
910
+ "version": "1.0.18",
911
+ "description": "Cumulation data sync library.",
912
+ "path": "./modules/utility/cumulation",
913
+ "ecosystemProductionDependencyCount": 0,
914
+ "ecosystemDevDependencyCount": 0,
915
+ "totalExternalDependencyCount": 6,
916
+ "totalExternalDevDependencyCount": 13
917
+ },
918
+ {
919
+ "name": "pict-cruisecontrol",
920
+ "group": "utility",
921
+ "category": "module",
922
+ "version": "1.0.0",
923
+ "description": "Automated and user-assisted web page navigation and data marshaling.",
924
+ "path": "./modules/utility/pict-cruisecontrol",
925
+ "ecosystemProductionDependencyCount": 1,
926
+ "ecosystemDevDependencyCount": 2,
927
+ "totalExternalDependencyCount": 0,
928
+ "totalExternalDevDependencyCount": 0
929
+ },
930
+ {
931
+ "name": "ultravisor",
932
+ "group": "utility",
933
+ "category": "module",
934
+ "version": "1.0.2",
935
+ "description": "Cyclic process execution with ai integration.",
936
+ "path": "./modules/utility/ultravisor",
937
+ "ecosystemProductionDependencyCount": 5,
938
+ "ecosystemDevDependencyCount": 1,
939
+ "totalExternalDependencyCount": 1,
940
+ "totalExternalDevDependencyCount": 0
941
+ }
942
+ ],
943
+ "edges": [
944
+ {
945
+ "from": "retold-manager",
946
+ "to": "fable",
947
+ "version": "^3.0.232",
948
+ "type": "production"
949
+ },
950
+ {
951
+ "from": "retold-manager",
952
+ "to": "fable-serviceproviderbase",
953
+ "version": "^3.0.16",
954
+ "type": "production"
955
+ },
956
+ {
957
+ "from": "retold-manager",
958
+ "to": "pict",
959
+ "version": "^1.0.345",
960
+ "type": "production"
961
+ },
962
+ {
963
+ "from": "retold-manager",
964
+ "to": "pict-application",
965
+ "version": "^1.0.28",
966
+ "type": "production"
967
+ },
968
+ {
969
+ "from": "retold-manager",
970
+ "to": "pict-terminalui",
971
+ "version": "^0.0.2",
972
+ "type": "production"
973
+ },
974
+ {
975
+ "from": "retold-manager",
976
+ "to": "pict-view",
977
+ "version": "^1.0.64",
978
+ "type": "production"
979
+ },
980
+ {
981
+ "from": "retold",
982
+ "to": "retold-content-system",
983
+ "version": "^1.0.0",
984
+ "type": "production"
985
+ },
986
+ {
987
+ "from": "retold",
988
+ "to": "indoctrinate",
989
+ "version": "^1.0.7",
990
+ "type": "development"
991
+ },
992
+ {
993
+ "from": "retold",
994
+ "to": "pict-docuserve",
995
+ "version": "^0.0.16",
996
+ "type": "development"
997
+ },
998
+ {
999
+ "from": "retold",
1000
+ "to": "quackage",
1001
+ "version": "^1.0.51",
1002
+ "type": "development"
1003
+ },
1004
+ {
1005
+ "from": "retold-example-todo-cli",
1006
+ "to": "pict-service-commandlineutility",
1007
+ "version": "^1.0.18",
1008
+ "type": "production"
1009
+ },
1010
+ {
1011
+ "from": "retold-example-todo-console-client",
1012
+ "to": "fable",
1013
+ "version": "^3.0.232",
1014
+ "type": "production"
1015
+ },
1016
+ {
1017
+ "from": "retold-example-todo-console-client",
1018
+ "to": "pict",
1019
+ "version": "^1.0.343",
1020
+ "type": "production"
1021
+ },
1022
+ {
1023
+ "from": "retold-example-todo-console-client",
1024
+ "to": "pict-application",
1025
+ "version": "^1.0.28",
1026
+ "type": "production"
1027
+ },
1028
+ {
1029
+ "from": "retold-example-todo-console-client",
1030
+ "to": "pict-view",
1031
+ "version": "^1.0.64",
1032
+ "type": "production"
1033
+ },
1034
+ {
1035
+ "from": "retold-example-todo-console-client",
1036
+ "to": "pict-terminalui",
1037
+ "version": "^0.0.1",
1038
+ "type": "production"
1039
+ },
1040
+ {
1041
+ "from": "retold-example-todo-server",
1042
+ "to": "fable",
1043
+ "version": "^3.1.51",
1044
+ "type": "production"
1045
+ },
1046
+ {
1047
+ "from": "retold-example-todo-server",
1048
+ "to": "meadow",
1049
+ "version": "^2.0.18",
1050
+ "type": "production"
1051
+ },
1052
+ {
1053
+ "from": "retold-example-todo-server",
1054
+ "to": "meadow-connection-sqlite",
1055
+ "version": "^1.0.11",
1056
+ "type": "production"
1057
+ },
1058
+ {
1059
+ "from": "retold-example-todo-server",
1060
+ "to": "meadow-endpoints",
1061
+ "version": "^4.0.7",
1062
+ "type": "production"
1063
+ },
1064
+ {
1065
+ "from": "retold-example-todo-server",
1066
+ "to": "orator",
1067
+ "version": "^5.0.2",
1068
+ "type": "production"
1069
+ },
1070
+ {
1071
+ "from": "retold-example-todo-server",
1072
+ "to": "orator-serviceserver-restify",
1073
+ "version": "^2.0.5",
1074
+ "type": "production"
1075
+ },
1076
+ {
1077
+ "from": "retold-example-todo-web-client",
1078
+ "to": "pict",
1079
+ "version": "^1.0.343",
1080
+ "type": "production"
1081
+ },
1082
+ {
1083
+ "from": "retold-example-todo-web-client",
1084
+ "to": "pict-application",
1085
+ "version": "^1.0.28",
1086
+ "type": "production"
1087
+ },
1088
+ {
1089
+ "from": "retold-example-todo-web-client",
1090
+ "to": "pict-router",
1091
+ "version": "^1.0.4",
1092
+ "type": "production"
1093
+ },
1094
+ {
1095
+ "from": "retold-example-todo-web-client",
1096
+ "to": "pict-view",
1097
+ "version": "^1.0.64",
1098
+ "type": "production"
1099
+ },
1100
+ {
1101
+ "from": "retold-example-todo-web-client",
1102
+ "to": "pict-provider",
1103
+ "version": "^1.0.3",
1104
+ "type": "production"
1105
+ },
1106
+ {
1107
+ "from": "retold-example-todo-web-client",
1108
+ "to": "quackage",
1109
+ "version": "^1.0.41",
1110
+ "type": "development"
1111
+ },
1112
+ {
1113
+ "from": "retold-quickstart-layer1-fable",
1114
+ "to": "fable",
1115
+ "version": "^3.1.51",
1116
+ "type": "production"
1117
+ },
1118
+ {
1119
+ "from": "retold-quickstart-layer2-meadow",
1120
+ "to": "fable",
1121
+ "version": "^3.1.51",
1122
+ "type": "production"
1123
+ },
1124
+ {
1125
+ "from": "retold-quickstart-layer2-meadow",
1126
+ "to": "meadow",
1127
+ "version": "^2.0.18",
1128
+ "type": "production"
1129
+ },
1130
+ {
1131
+ "from": "retold-quickstart-layer2-meadow",
1132
+ "to": "meadow-connection-mysql",
1133
+ "version": "^1.0.6",
1134
+ "type": "production"
1135
+ },
1136
+ {
1137
+ "from": "retold-quickstart-layer5-utility",
1138
+ "to": "fable",
1139
+ "version": "^3.1.51",
1140
+ "type": "production"
1141
+ },
1142
+ {
1143
+ "from": "retold-quickstart-layer5-utility",
1144
+ "to": "manyfest",
1145
+ "version": "^1.0.44",
1146
+ "type": "production"
1147
+ },
1148
+ {
1149
+ "from": "retold-quickstart-layer4-pict",
1150
+ "to": "pict",
1151
+ "version": "^1.0.343",
1152
+ "type": "production"
1153
+ },
1154
+ {
1155
+ "from": "retold-quickstart-layer4-pict",
1156
+ "to": "pict-application",
1157
+ "version": "^1.0.28",
1158
+ "type": "production"
1159
+ },
1160
+ {
1161
+ "from": "retold-quickstart-layer4-pict",
1162
+ "to": "pict-router",
1163
+ "version": "^1.0.4",
1164
+ "type": "production"
1165
+ },
1166
+ {
1167
+ "from": "retold-quickstart-layer4-pict",
1168
+ "to": "pict-view",
1169
+ "version": "^1.0.64",
1170
+ "type": "production"
1171
+ },
1172
+ {
1173
+ "from": "retold-quickstart-layer4-pict",
1174
+ "to": "pict-provider",
1175
+ "version": "^1.0.3",
1176
+ "type": "production"
1177
+ },
1178
+ {
1179
+ "from": "retold-quickstart-layer4-pict",
1180
+ "to": "orator",
1181
+ "version": "^5.0.2",
1182
+ "type": "production"
1183
+ },
1184
+ {
1185
+ "from": "retold-quickstart-layer4-pict",
1186
+ "to": "orator-serviceserver-restify",
1187
+ "version": "^2.0.5",
1188
+ "type": "production"
1189
+ },
1190
+ {
1191
+ "from": "retold-quickstart-layer4-pict",
1192
+ "to": "fable",
1193
+ "version": "^3.1.51",
1194
+ "type": "production"
1195
+ },
1196
+ {
1197
+ "from": "retold-quickstart-layer4-pict",
1198
+ "to": "quackage",
1199
+ "version": "^1.0.41",
1200
+ "type": "development"
1201
+ },
1202
+ {
1203
+ "from": "retold-quickstart-layer3-orator",
1204
+ "to": "fable",
1205
+ "version": "^3.1.51",
1206
+ "type": "production"
1207
+ },
1208
+ {
1209
+ "from": "retold-quickstart-layer3-orator",
1210
+ "to": "orator",
1211
+ "version": "^5.0.2",
1212
+ "type": "production"
1213
+ },
1214
+ {
1215
+ "from": "retold-quickstart-layer3-orator",
1216
+ "to": "orator-serviceserver-restify",
1217
+ "version": "^2.0.5",
1218
+ "type": "production"
1219
+ },
1220
+ {
1221
+ "from": "orator-serviceserver-restify",
1222
+ "to": "orator-serviceserver-base",
1223
+ "version": "^1.0.5",
1224
+ "type": "production"
1225
+ },
1226
+ {
1227
+ "from": "orator-serviceserver-restify",
1228
+ "to": "fable",
1229
+ "version": "^3.1.61",
1230
+ "type": "development"
1231
+ },
1232
+ {
1233
+ "from": "orator-serviceserver-restify",
1234
+ "to": "orator",
1235
+ "version": "^6.0.2",
1236
+ "type": "development"
1237
+ },
1238
+ {
1239
+ "from": "orator-serviceserver-restify",
1240
+ "to": "quackage",
1241
+ "version": "^1.0.58",
1242
+ "type": "development"
1243
+ },
1244
+ {
1245
+ "from": "orator-http-proxy",
1246
+ "to": "orator-serviceserver-base",
1247
+ "version": "^1.0.2",
1248
+ "type": "production"
1249
+ },
1250
+ {
1251
+ "from": "orator-http-proxy",
1252
+ "to": "fable",
1253
+ "version": "^3.1.55",
1254
+ "type": "development"
1255
+ },
1256
+ {
1257
+ "from": "orator-http-proxy",
1258
+ "to": "orator",
1259
+ "version": "^6.0.1",
1260
+ "type": "development"
1261
+ },
1262
+ {
1263
+ "from": "orator-http-proxy",
1264
+ "to": "orator-serviceserver-restify",
1265
+ "version": "^2.0.7",
1266
+ "type": "development"
1267
+ },
1268
+ {
1269
+ "from": "orator-http-proxy",
1270
+ "to": "quackage",
1271
+ "version": "^1.0.58",
1272
+ "type": "development"
1273
+ },
1274
+ {
1275
+ "from": "orator",
1276
+ "to": "fable-serviceproviderbase",
1277
+ "version": "^3.0.18",
1278
+ "type": "production"
1279
+ },
1280
+ {
1281
+ "from": "orator",
1282
+ "to": "orator-serviceserver-base",
1283
+ "version": "^1.0.2",
1284
+ "type": "production"
1285
+ },
1286
+ {
1287
+ "from": "orator",
1288
+ "to": "orator-static-server",
1289
+ "version": "^2.0.3",
1290
+ "type": "production"
1291
+ },
1292
+ {
1293
+ "from": "orator",
1294
+ "to": "fable",
1295
+ "version": "^3.1.57",
1296
+ "type": "development"
1297
+ },
1298
+ {
1299
+ "from": "orator",
1300
+ "to": "quackage",
1301
+ "version": "^1.0.58",
1302
+ "type": "development"
1303
+ },
1304
+ {
1305
+ "from": "orator-static-server",
1306
+ "to": "fable-serviceproviderbase",
1307
+ "version": "^3.0.18",
1308
+ "type": "production"
1309
+ },
1310
+ {
1311
+ "from": "orator-static-server",
1312
+ "to": "fable",
1313
+ "version": "^3.1.57",
1314
+ "type": "development"
1315
+ },
1316
+ {
1317
+ "from": "orator-static-server",
1318
+ "to": "orator",
1319
+ "version": "^6.0.1",
1320
+ "type": "development"
1321
+ },
1322
+ {
1323
+ "from": "orator-static-server",
1324
+ "to": "orator-serviceserver-restify",
1325
+ "version": "^2.0.7",
1326
+ "type": "development"
1327
+ },
1328
+ {
1329
+ "from": "orator-static-server",
1330
+ "to": "quackage",
1331
+ "version": "^1.0.58",
1332
+ "type": "development"
1333
+ },
1334
+ {
1335
+ "from": "orator-conversion",
1336
+ "to": "fable-serviceproviderbase",
1337
+ "version": "^3.0.18",
1338
+ "type": "production"
1339
+ },
1340
+ {
1341
+ "from": "orator-conversion",
1342
+ "to": "fable",
1343
+ "version": "^3.1.55",
1344
+ "type": "development"
1345
+ },
1346
+ {
1347
+ "from": "orator-conversion",
1348
+ "to": "orator",
1349
+ "version": "^6.0.1",
1350
+ "type": "development"
1351
+ },
1352
+ {
1353
+ "from": "orator-conversion",
1354
+ "to": "orator-serviceserver-restify",
1355
+ "version": "^2.0.7",
1356
+ "type": "development"
1357
+ },
1358
+ {
1359
+ "from": "orator-conversion",
1360
+ "to": "quackage",
1361
+ "version": "^1.0.58",
1362
+ "type": "development"
1363
+ },
1364
+ {
1365
+ "from": "orator-serviceserver-base",
1366
+ "to": "fable-serviceproviderbase",
1367
+ "version": "^3.0.18",
1368
+ "type": "production"
1369
+ },
1370
+ {
1371
+ "from": "orator-serviceserver-base",
1372
+ "to": "fable",
1373
+ "version": "^3.1.61",
1374
+ "type": "development"
1375
+ },
1376
+ {
1377
+ "from": "orator-serviceserver-base",
1378
+ "to": "orator",
1379
+ "version": "^6.0.2",
1380
+ "type": "development"
1381
+ },
1382
+ {
1383
+ "from": "orator-serviceserver-base",
1384
+ "to": "quackage",
1385
+ "version": "^1.0.58",
1386
+ "type": "development"
1387
+ },
1388
+ {
1389
+ "from": "tidings",
1390
+ "to": "fable",
1391
+ "version": "^2.0.5",
1392
+ "type": "production"
1393
+ },
1394
+ {
1395
+ "from": "tidings",
1396
+ "to": "orator",
1397
+ "version": "^2.0.4",
1398
+ "type": "production"
1399
+ },
1400
+ {
1401
+ "from": "tidings",
1402
+ "to": "quackage",
1403
+ "version": "^1.0.58",
1404
+ "type": "development"
1405
+ },
1406
+ {
1407
+ "from": "pict-panel",
1408
+ "to": "fable-serviceproviderbase",
1409
+ "version": "^3.0.18",
1410
+ "type": "production"
1411
+ },
1412
+ {
1413
+ "from": "pict-panel",
1414
+ "to": "pict-provider",
1415
+ "version": "^1.0.10",
1416
+ "type": "production"
1417
+ },
1418
+ {
1419
+ "from": "pict-panel",
1420
+ "to": "pict-template",
1421
+ "version": "^1.0.14",
1422
+ "type": "production"
1423
+ },
1424
+ {
1425
+ "from": "pict-panel",
1426
+ "to": "pict-view",
1427
+ "version": "^1.0.66",
1428
+ "type": "production"
1429
+ },
1430
+ {
1431
+ "from": "pict-panel",
1432
+ "to": "pict",
1433
+ "version": "^1.0.348",
1434
+ "type": "development"
1435
+ },
1436
+ {
1437
+ "from": "pict-panel",
1438
+ "to": "pict-section-form",
1439
+ "version": "^1.0.189",
1440
+ "type": "development"
1441
+ },
1442
+ {
1443
+ "from": "pict-panel",
1444
+ "to": "quackage",
1445
+ "version": "^1.0.58",
1446
+ "type": "development"
1447
+ },
1448
+ {
1449
+ "from": "pict-section-filebrowser",
1450
+ "to": "fable",
1451
+ "version": "^3.1.58",
1452
+ "type": "production"
1453
+ },
1454
+ {
1455
+ "from": "pict-section-filebrowser",
1456
+ "to": "fable-serviceproviderbase",
1457
+ "version": "^3.0.16",
1458
+ "type": "production"
1459
+ },
1460
+ {
1461
+ "from": "pict-section-filebrowser",
1462
+ "to": "orator",
1463
+ "version": "^6.0.2",
1464
+ "type": "production"
1465
+ },
1466
+ {
1467
+ "from": "pict-section-filebrowser",
1468
+ "to": "orator-serviceserver-restify",
1469
+ "version": "^2.0.7",
1470
+ "type": "production"
1471
+ },
1472
+ {
1473
+ "from": "pict-section-filebrowser",
1474
+ "to": "pict-provider",
1475
+ "version": "^1.0.10",
1476
+ "type": "production"
1477
+ },
1478
+ {
1479
+ "from": "pict-section-filebrowser",
1480
+ "to": "pict-view",
1481
+ "version": "^1.0.66",
1482
+ "type": "production"
1483
+ },
1484
+ {
1485
+ "from": "pict-section-filebrowser",
1486
+ "to": "pict",
1487
+ "version": "^1.0.350",
1488
+ "type": "development"
1489
+ },
1490
+ {
1491
+ "from": "pict-section-filebrowser",
1492
+ "to": "quackage",
1493
+ "version": "^1.0.58",
1494
+ "type": "development"
1495
+ },
1496
+ {
1497
+ "from": "pict-application",
1498
+ "to": "fable-serviceproviderbase",
1499
+ "version": "^3.0.18",
1500
+ "type": "production"
1501
+ },
1502
+ {
1503
+ "from": "pict-application",
1504
+ "to": "pict",
1505
+ "version": "^1.0.348",
1506
+ "type": "development"
1507
+ },
1508
+ {
1509
+ "from": "pict-application",
1510
+ "to": "pict-provider",
1511
+ "version": "^1.0.10",
1512
+ "type": "development"
1513
+ },
1514
+ {
1515
+ "from": "pict-application",
1516
+ "to": "pict-view",
1517
+ "version": "^1.0.66",
1518
+ "type": "development"
1519
+ },
1520
+ {
1521
+ "from": "pict-application",
1522
+ "to": "quackage",
1523
+ "version": "^1.0.58",
1524
+ "type": "development"
1525
+ },
1526
+ {
1527
+ "from": "pict-view",
1528
+ "to": "fable",
1529
+ "version": "^3.1.57",
1530
+ "type": "production"
1531
+ },
1532
+ {
1533
+ "from": "pict-view",
1534
+ "to": "fable-serviceproviderbase",
1535
+ "version": "^3.0.18",
1536
+ "type": "production"
1537
+ },
1538
+ {
1539
+ "from": "pict-view",
1540
+ "to": "pict",
1541
+ "version": "^1.0.348",
1542
+ "type": "development"
1543
+ },
1544
+ {
1545
+ "from": "pict-view",
1546
+ "to": "quackage",
1547
+ "version": "^1.0.58",
1548
+ "type": "development"
1549
+ },
1550
+ {
1551
+ "from": "pict-nonlinearconfig",
1552
+ "to": "pict",
1553
+ "version": "^1.0.343",
1554
+ "type": "production"
1555
+ },
1556
+ {
1557
+ "from": "pict-nonlinearconfig",
1558
+ "to": "pict-application",
1559
+ "version": "^1.0.28",
1560
+ "type": "production"
1561
+ },
1562
+ {
1563
+ "from": "pict-nonlinearconfig",
1564
+ "to": "pict-router",
1565
+ "version": "^1.0.4",
1566
+ "type": "production"
1567
+ },
1568
+ {
1569
+ "from": "pict-nonlinearconfig",
1570
+ "to": "pict-view",
1571
+ "version": "^1.0.64",
1572
+ "type": "production"
1573
+ },
1574
+ {
1575
+ "from": "pict-nonlinearconfig",
1576
+ "to": "pict-provider",
1577
+ "version": "^1.0.3",
1578
+ "type": "production"
1579
+ },
1580
+ {
1581
+ "from": "pict-nonlinearconfig",
1582
+ "to": "quackage",
1583
+ "version": "^1.0.58",
1584
+ "type": "development"
1585
+ },
1586
+ {
1587
+ "from": "pict-router",
1588
+ "to": "pict-provider",
1589
+ "version": "^1.0.10",
1590
+ "type": "production"
1591
+ },
1592
+ {
1593
+ "from": "pict-router",
1594
+ "to": "quackage",
1595
+ "version": "^1.0.58",
1596
+ "type": "development"
1597
+ },
1598
+ {
1599
+ "from": "pict-section-objecteditor",
1600
+ "to": "pict-view",
1601
+ "version": "^1.0.66",
1602
+ "type": "production"
1603
+ },
1604
+ {
1605
+ "from": "pict-section-objecteditor",
1606
+ "to": "pict",
1607
+ "version": "^1.0.348",
1608
+ "type": "development"
1609
+ },
1610
+ {
1611
+ "from": "pict-section-objecteditor",
1612
+ "to": "quackage",
1613
+ "version": "^1.0.58",
1614
+ "type": "development"
1615
+ },
1616
+ {
1617
+ "from": "cryptbrau",
1618
+ "to": "quackage",
1619
+ "version": "^1.0.58",
1620
+ "type": "development"
1621
+ },
1622
+ {
1623
+ "from": "pict-section-formeditor",
1624
+ "to": "pict-section-code",
1625
+ "version": "^1.0.2",
1626
+ "type": "production"
1627
+ },
1628
+ {
1629
+ "from": "pict-section-formeditor",
1630
+ "to": "pict-section-content",
1631
+ "version": "^0.0.6",
1632
+ "type": "production"
1633
+ },
1634
+ {
1635
+ "from": "pict-section-formeditor",
1636
+ "to": "pict-section-form",
1637
+ "version": "^1.0.192",
1638
+ "type": "production"
1639
+ },
1640
+ {
1641
+ "from": "pict-section-formeditor",
1642
+ "to": "pict-section-markdowneditor",
1643
+ "version": "^1.0.0",
1644
+ "type": "production"
1645
+ },
1646
+ {
1647
+ "from": "pict-section-formeditor",
1648
+ "to": "pict-section-objecteditor",
1649
+ "version": "^1.0.0",
1650
+ "type": "production"
1651
+ },
1652
+ {
1653
+ "from": "pict-section-formeditor",
1654
+ "to": "pict-view",
1655
+ "version": "^1.0.66",
1656
+ "type": "production"
1657
+ },
1658
+ {
1659
+ "from": "pict-section-formeditor",
1660
+ "to": "pict",
1661
+ "version": "^1.0.354",
1662
+ "type": "development"
1663
+ },
1664
+ {
1665
+ "from": "pict-section-formeditor",
1666
+ "to": "quackage",
1667
+ "version": "^1.0.58",
1668
+ "type": "development"
1669
+ },
1670
+ {
1671
+ "from": "pict-serviceproviderbase",
1672
+ "to": "fable-serviceproviderbase",
1673
+ "version": "^3.0.18",
1674
+ "type": "production"
1675
+ },
1676
+ {
1677
+ "from": "pict-serviceproviderbase",
1678
+ "to": "pict",
1679
+ "version": "^1.0.348",
1680
+ "type": "production"
1681
+ },
1682
+ {
1683
+ "from": "pict-serviceproviderbase",
1684
+ "to": "quackage",
1685
+ "version": "^1.0.58",
1686
+ "type": "development"
1687
+ },
1688
+ {
1689
+ "from": "pict",
1690
+ "to": "cachetrax",
1691
+ "version": "^1.0.5",
1692
+ "type": "production"
1693
+ },
1694
+ {
1695
+ "from": "pict",
1696
+ "to": "fable",
1697
+ "version": "^3.1.62",
1698
+ "type": "production"
1699
+ },
1700
+ {
1701
+ "from": "pict",
1702
+ "to": "pict-application",
1703
+ "version": "^1.0.32",
1704
+ "type": "production"
1705
+ },
1706
+ {
1707
+ "from": "pict",
1708
+ "to": "pict-provider",
1709
+ "version": "^1.0.11",
1710
+ "type": "production"
1711
+ },
1712
+ {
1713
+ "from": "pict",
1714
+ "to": "pict-template",
1715
+ "version": "^1.0.14",
1716
+ "type": "production"
1717
+ },
1718
+ {
1719
+ "from": "pict",
1720
+ "to": "pict-view",
1721
+ "version": "^1.0.66",
1722
+ "type": "production"
1723
+ },
1724
+ {
1725
+ "from": "pict",
1726
+ "to": "quackage",
1727
+ "version": "^1.0.58",
1728
+ "type": "development"
1729
+ },
1730
+ {
1731
+ "from": "pict-section-flow",
1732
+ "to": "pict-view",
1733
+ "version": "^1.0.66",
1734
+ "type": "production"
1735
+ },
1736
+ {
1737
+ "from": "pict-section-flow",
1738
+ "to": "pict-provider",
1739
+ "version": "^1.0.11",
1740
+ "type": "production"
1741
+ },
1742
+ {
1743
+ "from": "pict-section-flow",
1744
+ "to": "fable-serviceproviderbase",
1745
+ "version": "^3.0.18",
1746
+ "type": "production"
1747
+ },
1748
+ {
1749
+ "from": "pict-section-flow",
1750
+ "to": "pict",
1751
+ "version": "^1.0.354",
1752
+ "type": "development"
1753
+ },
1754
+ {
1755
+ "from": "pict-section-flow",
1756
+ "to": "quackage",
1757
+ "version": "^1.0.58",
1758
+ "type": "development"
1759
+ },
1760
+ {
1761
+ "from": "pict-section-entitymanagement",
1762
+ "to": "pict-router",
1763
+ "version": "^1.0.1",
1764
+ "type": "production"
1765
+ },
1766
+ {
1767
+ "from": "pict-section-entitymanagement",
1768
+ "to": "pict-section-form",
1769
+ "version": "^1.0.39",
1770
+ "type": "production"
1771
+ },
1772
+ {
1773
+ "from": "pict-section-entitymanagement",
1774
+ "to": "quackage",
1775
+ "version": "^1.0.58",
1776
+ "type": "development"
1777
+ },
1778
+ {
1779
+ "from": "pict-section-recordset",
1780
+ "to": "fable-serviceproviderbase",
1781
+ "version": "^3.0.18",
1782
+ "type": "production"
1783
+ },
1784
+ {
1785
+ "from": "pict-section-recordset",
1786
+ "to": "pict-provider",
1787
+ "version": "^1.0.10",
1788
+ "type": "production"
1789
+ },
1790
+ {
1791
+ "from": "pict-section-recordset",
1792
+ "to": "pict-router",
1793
+ "version": "^1.0.4",
1794
+ "type": "production"
1795
+ },
1796
+ {
1797
+ "from": "pict-section-recordset",
1798
+ "to": "pict-section-form",
1799
+ "version": "^1.0.189",
1800
+ "type": "production"
1801
+ },
1802
+ {
1803
+ "from": "pict-section-recordset",
1804
+ "to": "pict-template",
1805
+ "version": "^1.0.14",
1806
+ "type": "production"
1807
+ },
1808
+ {
1809
+ "from": "pict-section-recordset",
1810
+ "to": "pict-view",
1811
+ "version": "^1.0.66",
1812
+ "type": "production"
1813
+ },
1814
+ {
1815
+ "from": "pict-section-recordset",
1816
+ "to": "pict",
1817
+ "version": "^1.0.350",
1818
+ "type": "development"
1819
+ },
1820
+ {
1821
+ "from": "pict-section-recordset",
1822
+ "to": "pict-application",
1823
+ "version": "^1.0.32",
1824
+ "type": "development"
1825
+ },
1826
+ {
1827
+ "from": "pict-section-recordset",
1828
+ "to": "pict-service-commandlineutility",
1829
+ "version": "^1.0.18",
1830
+ "type": "development"
1831
+ },
1832
+ {
1833
+ "from": "pict-section-recordset",
1834
+ "to": "quackage",
1835
+ "version": "^1.0.58",
1836
+ "type": "development"
1837
+ },
1838
+ {
1839
+ "from": "pict-section-content",
1840
+ "to": "pict-provider",
1841
+ "version": "^1.0.10",
1842
+ "type": "production"
1843
+ },
1844
+ {
1845
+ "from": "pict-section-content",
1846
+ "to": "pict-section-code",
1847
+ "version": "^0.0.1",
1848
+ "type": "production"
1849
+ },
1850
+ {
1851
+ "from": "pict-section-content",
1852
+ "to": "pict-view",
1853
+ "version": "^1.0.66",
1854
+ "type": "production"
1855
+ },
1856
+ {
1857
+ "from": "pict-section-content",
1858
+ "to": "pict",
1859
+ "version": "^1.0.350",
1860
+ "type": "development"
1861
+ },
1862
+ {
1863
+ "from": "pict-section-content",
1864
+ "to": "quackage",
1865
+ "version": "^1.0.58",
1866
+ "type": "development"
1867
+ },
1868
+ {
1869
+ "from": "pict-service-commandlineutility",
1870
+ "to": "fable-serviceproviderbase",
1871
+ "version": "^3.0.16",
1872
+ "type": "production"
1873
+ },
1874
+ {
1875
+ "from": "pict-service-commandlineutility",
1876
+ "to": "pict",
1877
+ "version": "^1.0.345",
1878
+ "type": "production"
1879
+ },
1880
+ {
1881
+ "from": "pict-service-commandlineutility",
1882
+ "to": "quackage",
1883
+ "version": "^1.0.58",
1884
+ "type": "development"
1885
+ },
1886
+ {
1887
+ "from": "pict-section-markdowneditor",
1888
+ "to": "pict-section-content",
1889
+ "version": "^0.0.6",
1890
+ "type": "production"
1891
+ },
1892
+ {
1893
+ "from": "pict-section-markdowneditor",
1894
+ "to": "pict-view",
1895
+ "version": "^1.0.66",
1896
+ "type": "production"
1897
+ },
1898
+ {
1899
+ "from": "pict-section-markdowneditor",
1900
+ "to": "pict",
1901
+ "version": "^1.0.350",
1902
+ "type": "development"
1903
+ },
1904
+ {
1905
+ "from": "pict-section-markdowneditor",
1906
+ "to": "quackage",
1907
+ "version": "^1.0.58",
1908
+ "type": "development"
1909
+ },
1910
+ {
1911
+ "from": "informary",
1912
+ "to": "cachetrax",
1913
+ "version": "^1.0.0",
1914
+ "type": "production"
1915
+ },
1916
+ {
1917
+ "from": "informary",
1918
+ "to": "quackage",
1919
+ "version": "^1.0.58",
1920
+ "type": "development"
1921
+ },
1922
+ {
1923
+ "from": "pict-template",
1924
+ "to": "fable-serviceproviderbase",
1925
+ "version": "^3.0.18",
1926
+ "type": "production"
1927
+ },
1928
+ {
1929
+ "from": "pict-template",
1930
+ "to": "pict",
1931
+ "version": "^1.0.348",
1932
+ "type": "development"
1933
+ },
1934
+ {
1935
+ "from": "pict-template",
1936
+ "to": "quackage",
1937
+ "version": "^1.0.58",
1938
+ "type": "development"
1939
+ },
1940
+ {
1941
+ "from": "pict-section-form",
1942
+ "to": "fable-serviceproviderbase",
1943
+ "version": "^3.0.18",
1944
+ "type": "production"
1945
+ },
1946
+ {
1947
+ "from": "pict-section-form",
1948
+ "to": "pict-provider",
1949
+ "version": "^1.0.11",
1950
+ "type": "production"
1951
+ },
1952
+ {
1953
+ "from": "pict-section-form",
1954
+ "to": "pict-section-tuigrid",
1955
+ "version": "^1.0.30",
1956
+ "type": "production"
1957
+ },
1958
+ {
1959
+ "from": "pict-section-form",
1960
+ "to": "pict-template",
1961
+ "version": "^1.0.14",
1962
+ "type": "production"
1963
+ },
1964
+ {
1965
+ "from": "pict-section-form",
1966
+ "to": "pict-view",
1967
+ "version": "^1.0.66",
1968
+ "type": "production"
1969
+ },
1970
+ {
1971
+ "from": "pict-section-form",
1972
+ "to": "pict",
1973
+ "version": "^1.0.353",
1974
+ "type": "development"
1975
+ },
1976
+ {
1977
+ "from": "pict-section-form",
1978
+ "to": "pict-application",
1979
+ "version": "^1.0.32",
1980
+ "type": "development"
1981
+ },
1982
+ {
1983
+ "from": "pict-section-form",
1984
+ "to": "pict-service-commandlineutility",
1985
+ "version": "^1.0.18",
1986
+ "type": "development"
1987
+ },
1988
+ {
1989
+ "from": "pict-section-form",
1990
+ "to": "quackage",
1991
+ "version": "^1.0.58",
1992
+ "type": "development"
1993
+ },
1994
+ {
1995
+ "from": "pict-provider",
1996
+ "to": "fable-serviceproviderbase",
1997
+ "version": "^3.0.18",
1998
+ "type": "production"
1999
+ },
2000
+ {
2001
+ "from": "pict-provider",
2002
+ "to": "pict",
2003
+ "version": "^1.0.351",
2004
+ "type": "development"
2005
+ },
2006
+ {
2007
+ "from": "pict-provider",
2008
+ "to": "quackage",
2009
+ "version": "^1.0.58",
2010
+ "type": "development"
2011
+ },
2012
+ {
2013
+ "from": "pict-chance",
2014
+ "to": "fable-serviceproviderbase",
2015
+ "version": "^3.0.5",
2016
+ "type": "production"
2017
+ },
2018
+ {
2019
+ "from": "pict-chance",
2020
+ "to": "quackage",
2021
+ "version": "^1.0.58",
2022
+ "type": "development"
2023
+ },
2024
+ {
2025
+ "from": "pict-terminalui",
2026
+ "to": "fable",
2027
+ "version": "^3.0.232",
2028
+ "type": "production"
2029
+ },
2030
+ {
2031
+ "from": "pict-terminalui",
2032
+ "to": "fable-serviceproviderbase",
2033
+ "version": "^3.0.16",
2034
+ "type": "production"
2035
+ },
2036
+ {
2037
+ "from": "pict-terminalui",
2038
+ "to": "pict",
2039
+ "version": "^1.0.343",
2040
+ "type": "production"
2041
+ },
2042
+ {
2043
+ "from": "pict-terminalui",
2044
+ "to": "pict-application",
2045
+ "version": "^1.0.28",
2046
+ "type": "production"
2047
+ },
2048
+ {
2049
+ "from": "pict-terminalui",
2050
+ "to": "pict-view",
2051
+ "version": "^1.0.64",
2052
+ "type": "production"
2053
+ },
2054
+ {
2055
+ "from": "pict-terminalui",
2056
+ "to": "quackage",
2057
+ "version": "^1.0.58",
2058
+ "type": "development"
2059
+ },
2060
+ {
2061
+ "from": "pict-section-tuigrid",
2062
+ "to": "pict-view",
2063
+ "version": "^1.0.66",
2064
+ "type": "production"
2065
+ },
2066
+ {
2067
+ "from": "pict-section-tuigrid",
2068
+ "to": "pict",
2069
+ "version": "^1.0.348",
2070
+ "type": "development"
2071
+ },
2072
+ {
2073
+ "from": "pict-section-tuigrid",
2074
+ "to": "quackage",
2075
+ "version": "^1.0.58",
2076
+ "type": "development"
2077
+ },
2078
+ {
2079
+ "from": "pict-docuserve",
2080
+ "to": "pict",
2081
+ "version": "^1.0.348",
2082
+ "type": "production"
2083
+ },
2084
+ {
2085
+ "from": "pict-docuserve",
2086
+ "to": "pict-application",
2087
+ "version": "^1.0.32",
2088
+ "type": "production"
2089
+ },
2090
+ {
2091
+ "from": "pict-docuserve",
2092
+ "to": "pict-provider",
2093
+ "version": "^1.0.10",
2094
+ "type": "production"
2095
+ },
2096
+ {
2097
+ "from": "pict-docuserve",
2098
+ "to": "pict-section-content",
2099
+ "version": "^0.0.5",
2100
+ "type": "production"
2101
+ },
2102
+ {
2103
+ "from": "pict-docuserve",
2104
+ "to": "pict-service-commandlineutility",
2105
+ "version": "^1.0.18",
2106
+ "type": "production"
2107
+ },
2108
+ {
2109
+ "from": "pict-docuserve",
2110
+ "to": "pict-view",
2111
+ "version": "^1.0.66",
2112
+ "type": "production"
2113
+ },
2114
+ {
2115
+ "from": "pict-docuserve",
2116
+ "to": "quackage",
2117
+ "version": "^1.0.58",
2118
+ "type": "development"
2119
+ },
2120
+ {
2121
+ "from": "pict-section-code",
2122
+ "to": "pict-view",
2123
+ "version": "^1.0.66",
2124
+ "type": "production"
2125
+ },
2126
+ {
2127
+ "from": "pict-section-code",
2128
+ "to": "pict",
2129
+ "version": "^1.0.350",
2130
+ "type": "development"
2131
+ },
2132
+ {
2133
+ "from": "pict-section-code",
2134
+ "to": "quackage",
2135
+ "version": "^1.0.58",
2136
+ "type": "development"
2137
+ },
2138
+ {
2139
+ "from": "fable-serviceproviderbase",
2140
+ "to": "fable",
2141
+ "version": "^3.1.55",
2142
+ "type": "development"
2143
+ },
2144
+ {
2145
+ "from": "fable-serviceproviderbase",
2146
+ "to": "quackage",
2147
+ "version": "^1.0.58",
2148
+ "type": "development"
2149
+ },
2150
+ {
2151
+ "from": "fable-log",
2152
+ "to": "fable-serviceproviderbase",
2153
+ "version": "^3.0.17",
2154
+ "type": "production"
2155
+ },
2156
+ {
2157
+ "from": "fable-log",
2158
+ "to": "quackage",
2159
+ "version": "^1.0.58",
2160
+ "type": "development"
2161
+ },
2162
+ {
2163
+ "from": "fable-operationstep",
2164
+ "to": "fable-serviceproviderbase",
2165
+ "version": "^3.0.13",
2166
+ "type": "production"
2167
+ },
2168
+ {
2169
+ "from": "fable-operationstep",
2170
+ "to": "fable",
2171
+ "version": "^3.0.118",
2172
+ "type": "development"
2173
+ },
2174
+ {
2175
+ "from": "fable-operationstep",
2176
+ "to": "quackage",
2177
+ "version": "^1.0.58",
2178
+ "type": "development"
2179
+ },
2180
+ {
2181
+ "from": "fable-settings",
2182
+ "to": "fable-serviceproviderbase",
2183
+ "version": "^3.0.17",
2184
+ "type": "production"
2185
+ },
2186
+ {
2187
+ "from": "fable-settings",
2188
+ "to": "precedent",
2189
+ "version": "^1.0.15",
2190
+ "type": "production"
2191
+ },
2192
+ {
2193
+ "from": "fable-settings",
2194
+ "to": "quackage",
2195
+ "version": "^1.0.58",
2196
+ "type": "development"
2197
+ },
2198
+ {
2199
+ "from": "fable-uuid",
2200
+ "to": "fable-serviceproviderbase",
2201
+ "version": "^3.0.17",
2202
+ "type": "production"
2203
+ },
2204
+ {
2205
+ "from": "fable-uuid",
2206
+ "to": "quackage",
2207
+ "version": "^1.0.58",
2208
+ "type": "development"
2209
+ },
2210
+ {
2211
+ "from": "fable",
2212
+ "to": "cachetrax",
2213
+ "version": "^1.0.5",
2214
+ "type": "production"
2215
+ },
2216
+ {
2217
+ "from": "fable",
2218
+ "to": "fable-log",
2219
+ "version": "^3.0.17",
2220
+ "type": "production"
2221
+ },
2222
+ {
2223
+ "from": "fable",
2224
+ "to": "fable-serviceproviderbase",
2225
+ "version": "^3.0.18",
2226
+ "type": "production"
2227
+ },
2228
+ {
2229
+ "from": "fable",
2230
+ "to": "fable-settings",
2231
+ "version": "^3.0.15",
2232
+ "type": "production"
2233
+ },
2234
+ {
2235
+ "from": "fable",
2236
+ "to": "fable-uuid",
2237
+ "version": "^3.0.12",
2238
+ "type": "production"
2239
+ },
2240
+ {
2241
+ "from": "fable",
2242
+ "to": "manyfest",
2243
+ "version": "^1.0.47",
2244
+ "type": "production"
2245
+ },
2246
+ {
2247
+ "from": "fable",
2248
+ "to": "quackage",
2249
+ "version": "^1.0.58",
2250
+ "type": "development"
2251
+ },
2252
+ {
2253
+ "from": "fable-log-logger-bunyan",
2254
+ "to": "fable-log",
2255
+ "version": "^3.0.16",
2256
+ "type": "production"
2257
+ },
2258
+ {
2259
+ "from": "fable-log-logger-bunyan",
2260
+ "to": "fable",
2261
+ "version": "^3.1.55",
2262
+ "type": "development"
2263
+ },
2264
+ {
2265
+ "from": "fable-log-logger-bunyan",
2266
+ "to": "quackage",
2267
+ "version": "^1.0.58",
2268
+ "type": "development"
2269
+ },
2270
+ {
2271
+ "from": "retold-harness",
2272
+ "to": "meadow-connection-sqlite",
2273
+ "version": "^1.0.11",
2274
+ "type": "production"
2275
+ },
2276
+ {
2277
+ "from": "retold-harness",
2278
+ "to": "retold-data-service",
2279
+ "version": "^2.0.11",
2280
+ "type": "production"
2281
+ },
2282
+ {
2283
+ "from": "retold-harness",
2284
+ "to": "quackage",
2285
+ "version": "^1.0.58",
2286
+ "type": "development"
2287
+ },
2288
+ {
2289
+ "from": "retold-harness",
2290
+ "to": "stricture",
2291
+ "version": "^1.0.38",
2292
+ "type": "development"
2293
+ },
2294
+ {
2295
+ "from": "meadow-graph-client",
2296
+ "to": "fable-serviceproviderbase",
2297
+ "version": "^3.0.13",
2298
+ "type": "production"
2299
+ },
2300
+ {
2301
+ "from": "meadow-graph-client",
2302
+ "to": "quackage",
2303
+ "version": "^1.0.58",
2304
+ "type": "development"
2305
+ },
2306
+ {
2307
+ "from": "meadow-graph-client",
2308
+ "to": "stricture",
2309
+ "version": "^1.0.36",
2310
+ "type": "development"
2311
+ },
2312
+ {
2313
+ "from": "meadow-connection-mysql",
2314
+ "to": "fable-serviceproviderbase",
2315
+ "version": "^3.0.18",
2316
+ "type": "production"
2317
+ },
2318
+ {
2319
+ "from": "meadow-connection-mysql",
2320
+ "to": "fable",
2321
+ "version": "^3.1.55",
2322
+ "type": "development"
2323
+ },
2324
+ {
2325
+ "from": "meadow-connection-mysql",
2326
+ "to": "quackage",
2327
+ "version": "^1.0.58",
2328
+ "type": "development"
2329
+ },
2330
+ {
2331
+ "from": "stricture",
2332
+ "to": "pict",
2333
+ "version": "^1.0.347",
2334
+ "type": "production"
2335
+ },
2336
+ {
2337
+ "from": "stricture",
2338
+ "to": "pict-application",
2339
+ "version": "^1.0.32",
2340
+ "type": "production"
2341
+ },
2342
+ {
2343
+ "from": "stricture",
2344
+ "to": "pict-service-commandlineutility",
2345
+ "version": "^1.0.18",
2346
+ "type": "production"
2347
+ },
2348
+ {
2349
+ "from": "stricture",
2350
+ "to": "pict-terminalui",
2351
+ "version": "^0.0.2",
2352
+ "type": "production"
2353
+ },
2354
+ {
2355
+ "from": "stricture",
2356
+ "to": "pict-view",
2357
+ "version": "^1.0.66",
2358
+ "type": "production"
2359
+ },
2360
+ {
2361
+ "from": "stricture",
2362
+ "to": "quackage",
2363
+ "version": "^1.0.58",
2364
+ "type": "development"
2365
+ },
2366
+ {
2367
+ "from": "meadow-connection-sqlite",
2368
+ "to": "fable-serviceproviderbase",
2369
+ "version": "^3.0.18",
2370
+ "type": "production"
2371
+ },
2372
+ {
2373
+ "from": "meadow-connection-sqlite",
2374
+ "to": "quackage",
2375
+ "version": "^1.0.58",
2376
+ "type": "development"
2377
+ },
2378
+ {
2379
+ "from": "meadow-connection-sqlite",
2380
+ "to": "retold-harness",
2381
+ "version": "^1.1.0",
2382
+ "type": "development"
2383
+ },
2384
+ {
2385
+ "from": "meadow-connection-mssql",
2386
+ "to": "fable-serviceproviderbase",
2387
+ "version": "^3.0.18",
2388
+ "type": "production"
2389
+ },
2390
+ {
2391
+ "from": "meadow-connection-mssql",
2392
+ "to": "fable",
2393
+ "version": "^3.1.55",
2394
+ "type": "development"
2395
+ },
2396
+ {
2397
+ "from": "meadow-connection-mssql",
2398
+ "to": "quackage",
2399
+ "version": "^1.0.58",
2400
+ "type": "development"
2401
+ },
2402
+ {
2403
+ "from": "meadow-endpoints",
2404
+ "to": "fable",
2405
+ "version": "^3.1.55",
2406
+ "type": "production"
2407
+ },
2408
+ {
2409
+ "from": "meadow-endpoints",
2410
+ "to": "meadow",
2411
+ "version": "^2.0.22",
2412
+ "type": "production"
2413
+ },
2414
+ {
2415
+ "from": "meadow-endpoints",
2416
+ "to": "orator",
2417
+ "version": "^5.0.2",
2418
+ "type": "production"
2419
+ },
2420
+ {
2421
+ "from": "meadow-endpoints",
2422
+ "to": "meadow-connection-sqlite",
2423
+ "version": "meadow-connection-sqlite",
2424
+ "type": "development"
2425
+ },
2426
+ {
2427
+ "from": "meadow-endpoints",
2428
+ "to": "orator-serviceserver-restify",
2429
+ "version": "^2.0.5",
2430
+ "type": "development"
2431
+ },
2432
+ {
2433
+ "from": "meadow-endpoints",
2434
+ "to": "quackage",
2435
+ "version": "^1.0.58",
2436
+ "type": "development"
2437
+ },
2438
+ {
2439
+ "from": "foxhound",
2440
+ "to": "fable",
2441
+ "version": "^3.1.53",
2442
+ "type": "production"
2443
+ },
2444
+ {
2445
+ "from": "foxhound",
2446
+ "to": "quackage",
2447
+ "version": "^1.0.58",
2448
+ "type": "development"
2449
+ },
2450
+ {
2451
+ "from": "meadow-integration",
2452
+ "to": "fable",
2453
+ "version": "^3.1.55",
2454
+ "type": "production"
2455
+ },
2456
+ {
2457
+ "from": "meadow-integration",
2458
+ "to": "fable-serviceproviderbase",
2459
+ "version": "^3.0.18",
2460
+ "type": "production"
2461
+ },
2462
+ {
2463
+ "from": "meadow-integration",
2464
+ "to": "orator",
2465
+ "version": "^6.0.0",
2466
+ "type": "production"
2467
+ },
2468
+ {
2469
+ "from": "meadow-integration",
2470
+ "to": "orator-serviceserver-restify",
2471
+ "version": "^2.0.5",
2472
+ "type": "production"
2473
+ },
2474
+ {
2475
+ "from": "meadow-integration",
2476
+ "to": "pict-service-commandlineutility",
2477
+ "version": "^1.0.18",
2478
+ "type": "production"
2479
+ },
2480
+ {
2481
+ "from": "meadow-integration",
2482
+ "to": "quackage",
2483
+ "version": "^1.0.58",
2484
+ "type": "development"
2485
+ },
2486
+ {
2487
+ "from": "parime",
2488
+ "to": "bibliograph",
2489
+ "version": "^0.1.1",
2490
+ "type": "production"
2491
+ },
2492
+ {
2493
+ "from": "parime",
2494
+ "to": "orator",
2495
+ "version": "^6.0.0",
2496
+ "type": "production"
2497
+ },
2498
+ {
2499
+ "from": "parime",
2500
+ "to": "orator-serviceserver-restify",
2501
+ "version": "^2.0.5",
2502
+ "type": "production"
2503
+ },
2504
+ {
2505
+ "from": "parime",
2506
+ "to": "pict",
2507
+ "version": "^1.0.347",
2508
+ "type": "production"
2509
+ },
2510
+ {
2511
+ "from": "parime",
2512
+ "to": "orator-http-proxy",
2513
+ "version": "^1.0.1",
2514
+ "type": "development"
2515
+ },
2516
+ {
2517
+ "from": "parime",
2518
+ "to": "quackage",
2519
+ "version": "^1.0.51",
2520
+ "type": "development"
2521
+ },
2522
+ {
2523
+ "from": "bibliograph-storage-rocksdb",
2524
+ "to": "bibliograph",
2525
+ "version": "^0.1.0",
2526
+ "type": "production"
2527
+ },
2528
+ {
2529
+ "from": "bibliograph-storage-rocksdb",
2530
+ "to": "quackage",
2531
+ "version": "^1.0.58",
2532
+ "type": "development"
2533
+ },
2534
+ {
2535
+ "from": "bibliograph-storage-rocksdb",
2536
+ "to": "bibliograph",
2537
+ "version": "^0.1.0",
2538
+ "type": "production"
2539
+ },
2540
+ {
2541
+ "from": "bibliograph-storage-rocksdb",
2542
+ "to": "quackage",
2543
+ "version": "^1.0.58",
2544
+ "type": "development"
2545
+ },
2546
+ {
2547
+ "from": "meadow",
2548
+ "to": "foxhound",
2549
+ "version": "^2.0.16",
2550
+ "type": "production"
2551
+ },
2552
+ {
2553
+ "from": "meadow",
2554
+ "to": "fable",
2555
+ "version": "^3.1.53",
2556
+ "type": "development"
2557
+ },
2558
+ {
2559
+ "from": "meadow",
2560
+ "to": "meadow-connection-mssql",
2561
+ "version": "^1.0.10",
2562
+ "type": "development"
2563
+ },
2564
+ {
2565
+ "from": "meadow",
2566
+ "to": "meadow-connection-mysql",
2567
+ "version": "^1.0.7",
2568
+ "type": "development"
2569
+ },
2570
+ {
2571
+ "from": "meadow",
2572
+ "to": "meadow-connection-sqlite",
2573
+ "version": "meadow-connection-sqlite",
2574
+ "type": "development"
2575
+ },
2576
+ {
2577
+ "from": "meadow",
2578
+ "to": "quackage",
2579
+ "version": "^1.0.58",
2580
+ "type": "development"
2581
+ },
2582
+ {
2583
+ "from": "retold-data-service",
2584
+ "to": "fable",
2585
+ "version": "^3.1.11",
2586
+ "type": "production"
2587
+ },
2588
+ {
2589
+ "from": "retold-data-service",
2590
+ "to": "fable-serviceproviderbase",
2591
+ "version": "^3.0.15",
2592
+ "type": "production"
2593
+ },
2594
+ {
2595
+ "from": "retold-data-service",
2596
+ "to": "meadow",
2597
+ "version": "^2.0.21",
2598
+ "type": "production"
2599
+ },
2600
+ {
2601
+ "from": "retold-data-service",
2602
+ "to": "meadow-connection-mysql",
2603
+ "version": "^1.0.4",
2604
+ "type": "production"
2605
+ },
2606
+ {
2607
+ "from": "retold-data-service",
2608
+ "to": "meadow-endpoints",
2609
+ "version": "^4.0.7",
2610
+ "type": "production"
2611
+ },
2612
+ {
2613
+ "from": "retold-data-service",
2614
+ "to": "orator",
2615
+ "version": "^5.0.1",
2616
+ "type": "production"
2617
+ },
2618
+ {
2619
+ "from": "retold-data-service",
2620
+ "to": "orator-http-proxy",
2621
+ "version": "^1.0.1",
2622
+ "type": "production"
2623
+ },
2624
+ {
2625
+ "from": "retold-data-service",
2626
+ "to": "orator-serviceserver-restify",
2627
+ "version": "^2.0.4",
2628
+ "type": "production"
2629
+ },
2630
+ {
2631
+ "from": "retold-data-service",
2632
+ "to": "orator-static-server",
2633
+ "version": "^1.0.1",
2634
+ "type": "production"
2635
+ },
2636
+ {
2637
+ "from": "retold-data-service",
2638
+ "to": "meadow-connection-sqlite",
2639
+ "version": "^1.0.11",
2640
+ "type": "development"
2641
+ },
2642
+ {
2643
+ "from": "retold-data-service",
2644
+ "to": "quackage",
2645
+ "version": "^1.0.58",
2646
+ "type": "development"
2647
+ },
2648
+ {
2649
+ "from": "retold-data-service",
2650
+ "to": "stricture",
2651
+ "version": "^1.0.37",
2652
+ "type": "development"
2653
+ },
2654
+ {
2655
+ "from": "bibliograph",
2656
+ "to": "pict",
2657
+ "version": "^1.0.347",
2658
+ "type": "production"
2659
+ },
2660
+ {
2661
+ "from": "bibliograph",
2662
+ "to": "pict-provider",
2663
+ "version": "^1.0.9",
2664
+ "type": "production"
2665
+ },
2666
+ {
2667
+ "from": "bibliograph",
2668
+ "to": "quackage",
2669
+ "version": "^1.0.51",
2670
+ "type": "development"
2671
+ },
2672
+ {
2673
+ "from": "retold-content-system",
2674
+ "to": "fable",
2675
+ "version": "^3.1.58",
2676
+ "type": "production"
2677
+ },
2678
+ {
2679
+ "from": "retold-content-system",
2680
+ "to": "orator",
2681
+ "version": "^6.0.2",
2682
+ "type": "production"
2683
+ },
2684
+ {
2685
+ "from": "retold-content-system",
2686
+ "to": "orator-serviceserver-restify",
2687
+ "version": "^2.0.7",
2688
+ "type": "production"
2689
+ },
2690
+ {
2691
+ "from": "retold-content-system",
2692
+ "to": "pict",
2693
+ "version": "^1.0.350",
2694
+ "type": "production"
2695
+ },
2696
+ {
2697
+ "from": "retold-content-system",
2698
+ "to": "pict-application",
2699
+ "version": "^1.0.32",
2700
+ "type": "production"
2701
+ },
2702
+ {
2703
+ "from": "retold-content-system",
2704
+ "to": "pict-docuserve",
2705
+ "version": "^0.0.27",
2706
+ "type": "production"
2707
+ },
2708
+ {
2709
+ "from": "retold-content-system",
2710
+ "to": "pict-provider",
2711
+ "version": "^1.0.10",
2712
+ "type": "production"
2713
+ },
2714
+ {
2715
+ "from": "retold-content-system",
2716
+ "to": "pict-section-code",
2717
+ "version": "^1.0.0",
2718
+ "type": "production"
2719
+ },
2720
+ {
2721
+ "from": "retold-content-system",
2722
+ "to": "pict-section-content",
2723
+ "version": "^0.0.6",
2724
+ "type": "production"
2725
+ },
2726
+ {
2727
+ "from": "retold-content-system",
2728
+ "to": "pict-section-filebrowser",
2729
+ "version": "^0.0.1",
2730
+ "type": "production"
2731
+ },
2732
+ {
2733
+ "from": "retold-content-system",
2734
+ "to": "pict-section-markdowneditor",
2735
+ "version": "^1.0.0",
2736
+ "type": "production"
2737
+ },
2738
+ {
2739
+ "from": "retold-content-system",
2740
+ "to": "pict-service-commandlineutility",
2741
+ "version": "^1.0.18",
2742
+ "type": "production"
2743
+ },
2744
+ {
2745
+ "from": "retold-content-system",
2746
+ "to": "pict-view",
2747
+ "version": "^1.0.66",
2748
+ "type": "production"
2749
+ },
2750
+ {
2751
+ "from": "retold-content-system",
2752
+ "to": "quackage",
2753
+ "version": "^1.0.58",
2754
+ "type": "development"
2755
+ },
2756
+ {
2757
+ "from": "retold-remote",
2758
+ "to": "fable",
2759
+ "version": "^3.1.58",
2760
+ "type": "production"
2761
+ },
2762
+ {
2763
+ "from": "retold-remote",
2764
+ "to": "fable-serviceproviderbase",
2765
+ "version": "^3.0.16",
2766
+ "type": "production"
2767
+ },
2768
+ {
2769
+ "from": "retold-remote",
2770
+ "to": "orator",
2771
+ "version": "^6.0.2",
2772
+ "type": "production"
2773
+ },
2774
+ {
2775
+ "from": "retold-remote",
2776
+ "to": "orator-serviceserver-restify",
2777
+ "version": "^2.0.7",
2778
+ "type": "production"
2779
+ },
2780
+ {
2781
+ "from": "retold-remote",
2782
+ "to": "pict",
2783
+ "version": "^1.0.350",
2784
+ "type": "production"
2785
+ },
2786
+ {
2787
+ "from": "retold-remote",
2788
+ "to": "pict-application",
2789
+ "version": "^1.0.32",
2790
+ "type": "production"
2791
+ },
2792
+ {
2793
+ "from": "retold-remote",
2794
+ "to": "pict-provider",
2795
+ "version": "^1.0.10",
2796
+ "type": "production"
2797
+ },
2798
+ {
2799
+ "from": "retold-remote",
2800
+ "to": "pict-section-code",
2801
+ "version": "^1.0.2",
2802
+ "type": "production"
2803
+ },
2804
+ {
2805
+ "from": "retold-remote",
2806
+ "to": "pict-section-filebrowser",
2807
+ "version": "^0.0.1",
2808
+ "type": "production"
2809
+ },
2810
+ {
2811
+ "from": "retold-remote",
2812
+ "to": "pict-service-commandlineutility",
2813
+ "version": "^1.0.18",
2814
+ "type": "production"
2815
+ },
2816
+ {
2817
+ "from": "retold-remote",
2818
+ "to": "pict-view",
2819
+ "version": "^1.0.66",
2820
+ "type": "production"
2821
+ },
2822
+ {
2823
+ "from": "retold-remote",
2824
+ "to": "retold-content-system",
2825
+ "version": "^1.0.1",
2826
+ "type": "production"
2827
+ },
2828
+ {
2829
+ "from": "retold-remote",
2830
+ "to": "quackage",
2831
+ "version": "^1.0.58",
2832
+ "type": "development"
2833
+ },
2834
+ {
2835
+ "from": "quackage",
2836
+ "to": "indoctrinate",
2837
+ "version": "^1.0.6",
2838
+ "type": "production"
2839
+ },
2840
+ {
2841
+ "from": "quackage",
2842
+ "to": "pict-docuserve",
2843
+ "version": "^0.0.16",
2844
+ "type": "production"
2845
+ },
2846
+ {
2847
+ "from": "quackage",
2848
+ "to": "pict-service-commandlineutility",
2849
+ "version": "^1.0.18",
2850
+ "type": "production"
2851
+ },
2852
+ {
2853
+ "from": "precedent",
2854
+ "to": "quackage",
2855
+ "version": "^1.0.48",
2856
+ "type": "development"
2857
+ },
2858
+ {
2859
+ "from": "indoctrinate",
2860
+ "to": "pict-service-commandlineutility",
2861
+ "version": "^1.0.18",
2862
+ "type": "production"
2863
+ },
2864
+ {
2865
+ "from": "indoctrinate",
2866
+ "to": "quackage",
2867
+ "version": "^1.0.51",
2868
+ "type": "development"
2869
+ },
2870
+ {
2871
+ "from": "cachetrax",
2872
+ "to": "fable-serviceproviderbase",
2873
+ "version": "^3.0.18",
2874
+ "type": "production"
2875
+ },
2876
+ {
2877
+ "from": "cachetrax",
2878
+ "to": "quackage",
2879
+ "version": "^1.0.51",
2880
+ "type": "development"
2881
+ },
2882
+ {
2883
+ "from": "manyfest",
2884
+ "to": "fable-serviceproviderbase",
2885
+ "version": "^3.0.17",
2886
+ "type": "production"
2887
+ },
2888
+ {
2889
+ "from": "manyfest",
2890
+ "to": "quackage",
2891
+ "version": "^1.0.51",
2892
+ "type": "development"
2893
+ },
2894
+ {
2895
+ "from": "pict-cruisecontrol",
2896
+ "to": "pict-view",
2897
+ "version": "^1.0.37",
2898
+ "type": "production"
2899
+ },
2900
+ {
2901
+ "from": "pict-cruisecontrol",
2902
+ "to": "pict",
2903
+ "version": "^1.0.152",
2904
+ "type": "development"
2905
+ },
2906
+ {
2907
+ "from": "pict-cruisecontrol",
2908
+ "to": "quackage",
2909
+ "version": "^1.0.25",
2910
+ "type": "development"
2911
+ },
2912
+ {
2913
+ "from": "ultravisor",
2914
+ "to": "orator",
2915
+ "version": "^6.0.2",
2916
+ "type": "production"
2917
+ },
2918
+ {
2919
+ "from": "ultravisor",
2920
+ "to": "orator-serviceserver-restify",
2921
+ "version": "^2.0.8",
2922
+ "type": "production"
2923
+ },
2924
+ {
2925
+ "from": "ultravisor",
2926
+ "to": "pict",
2927
+ "version": "^1.0.354",
2928
+ "type": "production"
2929
+ },
2930
+ {
2931
+ "from": "ultravisor",
2932
+ "to": "pict-service-commandlineutility",
2933
+ "version": "^1.0.18",
2934
+ "type": "production"
2935
+ },
2936
+ {
2937
+ "from": "ultravisor",
2938
+ "to": "pict-serviceproviderbase",
2939
+ "version": "^1.0.3",
2940
+ "type": "production"
2941
+ },
2942
+ {
2943
+ "from": "ultravisor",
2944
+ "to": "quackage",
2945
+ "version": "^1.0.58",
2946
+ "type": "development"
2947
+ }
2948
+ ],
2949
+ "groups": {
2950
+ "root": [
2951
+ "retold-manager",
2952
+ "retold",
2953
+ "retold-example-todo-cli",
2954
+ "retold-example-todo-console-client",
2955
+ "retold-example-todo-server",
2956
+ "retold-example-todo-web-client",
2957
+ "retold-quickstart-layer1-fable",
2958
+ "retold-quickstart-layer2-meadow",
2959
+ "retold-quickstart-layer5-utility",
2960
+ "retold-quickstart-layer4-pict",
2961
+ "retold-quickstart-layer3-orator"
2962
+ ],
2963
+ "orator": [
2964
+ "orator-serviceserver-restify",
2965
+ "orator-http-proxy",
2966
+ "orator",
2967
+ "orator-static-server",
2968
+ "orator-conversion",
2969
+ "orator-serviceserver-base",
2970
+ "tidings"
2971
+ ],
2972
+ "pict": [
2973
+ "pict-panel",
2974
+ "pict-section-filebrowser",
2975
+ "pict-application",
2976
+ "pict-view",
2977
+ "pict-nonlinearconfig",
2978
+ "pict-router",
2979
+ "pict-section-objecteditor",
2980
+ "cryptbrau",
2981
+ "pict-section-formeditor",
2982
+ "pict-serviceproviderbase",
2983
+ "pict",
2984
+ "pict-section-flow",
2985
+ "pict-section-entitymanagement",
2986
+ "pict-section-recordset",
2987
+ "pict-section-content",
2988
+ "pict-service-commandlineutility",
2989
+ "pict-section-markdowneditor",
2990
+ "informary",
2991
+ "pict-template",
2992
+ "pict-section-form",
2993
+ "pict-provider",
2994
+ "pict-chance",
2995
+ "pict-terminalui",
2996
+ "pict-section-tuigrid",
2997
+ "pict-docuserve",
2998
+ "pict-section-code"
2999
+ ],
3000
+ "fable": [
3001
+ "fable-serviceproviderbase",
3002
+ "fable-log",
3003
+ "fable-operationstep",
3004
+ "fable-settings",
3005
+ "fable-uuid",
3006
+ "fable",
3007
+ "fable-log-logger-bunyan"
3008
+ ],
3009
+ "meadow": [
3010
+ "retold-harness",
3011
+ "meadow-graph-client",
3012
+ "meadow-connection-mysql",
3013
+ "bibliograph-storage-lmdb",
3014
+ "stricture",
3015
+ "meadow-connection-sqlite",
3016
+ "meadow-connection-mssql",
3017
+ "meadow-endpoints",
3018
+ "foxhound",
3019
+ "meadow-integration",
3020
+ "parime",
3021
+ "bibliograph-storage-rocksdb",
3022
+ "bibliograph-storage-rocksdb",
3023
+ "meadow",
3024
+ "retold-data-service",
3025
+ "bibliograph"
3026
+ ],
3027
+ "apps": [
3028
+ "retold-content-system",
3029
+ "retold-remote"
3030
+ ],
3031
+ "utility": [
3032
+ "quackage",
3033
+ "precedent",
3034
+ "indoctrinate",
3035
+ "cachetrax",
3036
+ "manyfest",
3037
+ "cumulation",
3038
+ "pict-cruisecontrol",
3039
+ "ultravisor"
3040
+ ]
3041
+ },
3042
+ "analytics": {
3043
+ "leafNodes": [
3044
+ "bibliograph-storage-lmdb",
3045
+ "cumulation"
3046
+ ],
3047
+ "rootNodes": [
3048
+ "retold-manager",
3049
+ "retold",
3050
+ "retold-example-todo-cli",
3051
+ "retold-example-todo-console-client",
3052
+ "retold-example-todo-server",
3053
+ "retold-example-todo-web-client",
3054
+ "retold-quickstart-layer1-fable",
3055
+ "retold-quickstart-layer2-meadow",
3056
+ "retold-quickstart-layer5-utility",
3057
+ "retold-quickstart-layer4-pict",
3058
+ "retold-quickstart-layer3-orator",
3059
+ "orator-conversion",
3060
+ "tidings",
3061
+ "pict-panel",
3062
+ "pict-nonlinearconfig",
3063
+ "cryptbrau",
3064
+ "pict-section-formeditor",
3065
+ "pict-section-flow",
3066
+ "pict-section-entitymanagement",
3067
+ "pict-section-recordset",
3068
+ "informary",
3069
+ "pict-chance",
3070
+ "fable-operationstep",
3071
+ "fable-log-logger-bunyan",
3072
+ "meadow-graph-client",
3073
+ "bibliograph-storage-lmdb",
3074
+ "meadow-integration",
3075
+ "parime",
3076
+ "bibliograph-storage-rocksdb",
3077
+ "bibliograph-storage-rocksdb",
3078
+ "retold-remote",
3079
+ "cumulation",
3080
+ "pict-cruisecontrol",
3081
+ "ultravisor"
3082
+ ],
3083
+ "mostDependedUpon": [
3084
+ {
3085
+ "name": "quackage",
3086
+ "dependedUponBy": 66
3087
+ },
3088
+ {
3089
+ "name": "fable-serviceproviderbase",
3090
+ "dependedUponBy": 32
3091
+ },
3092
+ {
3093
+ "name": "fable",
3094
+ "dependedUponBy": 31
3095
+ },
3096
+ {
3097
+ "name": "pict",
3098
+ "dependedUponBy": 31
3099
+ },
3100
+ {
3101
+ "name": "pict-view",
3102
+ "dependedUponBy": 24
3103
+ },
3104
+ {
3105
+ "name": "orator",
3106
+ "dependedUponBy": 17
3107
+ },
3108
+ {
3109
+ "name": "pict-provider",
3110
+ "dependedUponBy": 16
3111
+ },
3112
+ {
3113
+ "name": "orator-serviceserver-restify",
3114
+ "dependedUponBy": 14
3115
+ },
3116
+ {
3117
+ "name": "pict-application",
3118
+ "dependedUponBy": 13
3119
+ },
3120
+ {
3121
+ "name": "pict-service-commandlineutility",
3122
+ "dependedUponBy": 11
3123
+ },
3124
+ {
3125
+ "name": "meadow-connection-sqlite",
3126
+ "dependedUponBy": 5
3127
+ },
3128
+ {
3129
+ "name": "pict-router",
3130
+ "dependedUponBy": 5
3131
+ },
3132
+ {
3133
+ "name": "meadow",
3134
+ "dependedUponBy": 4
3135
+ },
3136
+ {
3137
+ "name": "pict-template",
3138
+ "dependedUponBy": 4
3139
+ },
3140
+ {
3141
+ "name": "pict-section-form",
3142
+ "dependedUponBy": 4
3143
+ },
3144
+ {
3145
+ "name": "pict-section-code",
3146
+ "dependedUponBy": 4
3147
+ },
3148
+ {
3149
+ "name": "pict-section-content",
3150
+ "dependedUponBy": 4
3151
+ },
3152
+ {
3153
+ "name": "pict-terminalui",
3154
+ "dependedUponBy": 3
3155
+ },
3156
+ {
3157
+ "name": "pict-docuserve",
3158
+ "dependedUponBy": 3
3159
+ },
3160
+ {
3161
+ "name": "meadow-connection-mysql",
3162
+ "dependedUponBy": 3
3163
+ }
3164
+ ],
3165
+ "totalProductionEdges": 212,
3166
+ "totalDevelopmentEdges": 122
3167
+ }
3168
+ }