retold 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +26 -1
- package/README.md +20 -0
- package/docs/_sidebar.md +2 -1
- package/docs/architecture/architecture.md +2 -2
- package/docs/architecture/modules.md +3 -4
- package/docs/contributing.md +50 -0
- package/docs/modules/orator.md +0 -7
- package/docs/retold-catalog.json +110 -26
- package/docs/retold-keyword-index.json +15118 -15139
- package/docs/testing.md +122 -0
- package/modules/Include-Retold-Module-List.sh +1 -1
- package/package.json +7 -4
- package/source/retold-manager/package.json +23 -0
- package/source/retold-manager/retold-manager.js +65 -0
- package/source/retold-manager/source/Retold-Manager-App.js +1532 -0
- package/source/retold-manager/source/Retold-Manager-ModuleCatalog.js +75 -0
- package/source/retold-manager/source/Retold-Manager-ProcessRunner.js +706 -0
- package/source/retold-manager/source/views/PictView-TUI-Checkout.js +45 -0
- package/source/retold-manager/source/views/PictView-TUI-Header.js +41 -0
- package/source/retold-manager/source/views/PictView-TUI-Layout.js +53 -0
- package/source/retold-manager/source/views/PictView-TUI-Status.js +45 -0
- package/source/retold-manager/source/views/PictView-TUI-StatusBar.js +41 -0
- package/source/retold-manager/source/views/PictView-TUI-Update.js +45 -0
- package/examples/quickstart/layer1/package-lock.json +0 -344
- package/examples/quickstart/layer2/package-lock.json +0 -4468
- package/examples/quickstart/layer3/package-lock.json +0 -1936
- package/examples/quickstart/layer4/package-lock.json +0 -13206
- package/examples/quickstart/layer5/package-lock.json +0 -345
- package/examples/todo-list/cli-client/package-lock.json +0 -418
- package/examples/todo-list/console-client/package-lock.json +0 -426
- package/examples/todo-list/server/package-lock.json +0 -6113
- package/examples/todo-list/web-client/package-lock.json +0 -12030
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-Checkout',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-Checkout-Content',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-TerminalOutput',
|
|
9
|
+
|
|
10
|
+
AutoRender: false,
|
|
11
|
+
|
|
12
|
+
Templates:
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
Hash: 'TUI-Checkout-Template',
|
|
16
|
+
Template: ''
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
|
|
20
|
+
Renderables:
|
|
21
|
+
[
|
|
22
|
+
{
|
|
23
|
+
RenderableHash: 'TUI-Checkout-Content',
|
|
24
|
+
TemplateHash: 'TUI-Checkout-Template',
|
|
25
|
+
ContentDestinationAddress: '#TUI-TerminalOutput',
|
|
26
|
+
RenderMethod: 'replace'
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
class TUICheckoutView extends libPictView
|
|
32
|
+
{
|
|
33
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
34
|
+
{
|
|
35
|
+
super(pFable, pOptions, pServiceHash);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
runScript(pProcessRunner, pModulesPath)
|
|
39
|
+
{
|
|
40
|
+
pProcessRunner.run('bash', ['./Checkout.sh'], pModulesPath);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
module.exports = TUICheckoutView;
|
|
45
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-Header',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-Header-Content',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-Header',
|
|
9
|
+
DefaultTemplateRecordAddress: 'AppData.Manager',
|
|
10
|
+
|
|
11
|
+
AutoRender: false,
|
|
12
|
+
|
|
13
|
+
Templates:
|
|
14
|
+
[
|
|
15
|
+
{
|
|
16
|
+
Hash: 'TUI-Header-Template',
|
|
17
|
+
Template: '{bold} Retold Manager{/bold} | [g] groups [Tab] focus [q] quit'
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
|
|
21
|
+
Renderables:
|
|
22
|
+
[
|
|
23
|
+
{
|
|
24
|
+
RenderableHash: 'TUI-Header-Content',
|
|
25
|
+
TemplateHash: 'TUI-Header-Template',
|
|
26
|
+
ContentDestinationAddress: '#TUI-Header',
|
|
27
|
+
RenderMethod: 'replace'
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
class TUIHeaderView extends libPictView
|
|
33
|
+
{
|
|
34
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
35
|
+
{
|
|
36
|
+
super(pFable, pOptions, pServiceHash);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
module.exports = TUIHeaderView;
|
|
41
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-Layout',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-Layout-Main',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-Application-Container',
|
|
9
|
+
|
|
10
|
+
AutoRender: false,
|
|
11
|
+
|
|
12
|
+
Templates:
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
Hash: 'TUI-Layout-Template',
|
|
16
|
+
Template: ''
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
|
|
20
|
+
Renderables:
|
|
21
|
+
[
|
|
22
|
+
{
|
|
23
|
+
RenderableHash: 'TUI-Layout-Main',
|
|
24
|
+
TemplateHash: 'TUI-Layout-Template',
|
|
25
|
+
ContentDestinationAddress: '#TUI-Application-Container',
|
|
26
|
+
RenderMethod: 'replace'
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
class TUILayoutView extends libPictView
|
|
32
|
+
{
|
|
33
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
34
|
+
{
|
|
35
|
+
super(pFable, pOptions, pServiceHash);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
onAfterRender(pRenderable)
|
|
39
|
+
{
|
|
40
|
+
if (this.pict.views['TUI-Header'])
|
|
41
|
+
{
|
|
42
|
+
this.pict.views['TUI-Header'].render();
|
|
43
|
+
}
|
|
44
|
+
if (this.pict.views['TUI-StatusBar'])
|
|
45
|
+
{
|
|
46
|
+
this.pict.views['TUI-StatusBar'].render();
|
|
47
|
+
}
|
|
48
|
+
return super.onAfterRender(pRenderable);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
module.exports = TUILayoutView;
|
|
53
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-Status',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-Status-Content',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-TerminalOutput',
|
|
9
|
+
|
|
10
|
+
AutoRender: false,
|
|
11
|
+
|
|
12
|
+
Templates:
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
Hash: 'TUI-Status-Template',
|
|
16
|
+
Template: ''
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
|
|
20
|
+
Renderables:
|
|
21
|
+
[
|
|
22
|
+
{
|
|
23
|
+
RenderableHash: 'TUI-Status-Content',
|
|
24
|
+
TemplateHash: 'TUI-Status-Template',
|
|
25
|
+
ContentDestinationAddress: '#TUI-TerminalOutput',
|
|
26
|
+
RenderMethod: 'replace'
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
class TUIStatusView extends libPictView
|
|
32
|
+
{
|
|
33
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
34
|
+
{
|
|
35
|
+
super(pFable, pOptions, pServiceHash);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
runScript(pProcessRunner, pModulesPath)
|
|
39
|
+
{
|
|
40
|
+
pProcessRunner.run('bash', ['./Status.sh'], pModulesPath);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
module.exports = TUIStatusView;
|
|
45
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-StatusBar',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-StatusBar-Content',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-StatusBar',
|
|
9
|
+
DefaultTemplateRecordAddress: 'AppData.Manager',
|
|
10
|
+
|
|
11
|
+
AutoRender: false,
|
|
12
|
+
|
|
13
|
+
Templates:
|
|
14
|
+
[
|
|
15
|
+
{
|
|
16
|
+
Hash: 'TUI-StatusBar-Template',
|
|
17
|
+
Template: ' {~D:Record.Browser.CurrentPath~} | {~D:Record.StatusMessage~}'
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
|
|
21
|
+
Renderables:
|
|
22
|
+
[
|
|
23
|
+
{
|
|
24
|
+
RenderableHash: 'TUI-StatusBar-Content',
|
|
25
|
+
TemplateHash: 'TUI-StatusBar-Template',
|
|
26
|
+
ContentDestinationAddress: '#TUI-StatusBar',
|
|
27
|
+
RenderMethod: 'replace'
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
class TUIStatusBarView extends libPictView
|
|
33
|
+
{
|
|
34
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
35
|
+
{
|
|
36
|
+
super(pFable, pOptions, pServiceHash);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
module.exports = TUIStatusBarView;
|
|
41
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const libPictView = require('pict-view');
|
|
2
|
+
|
|
3
|
+
const _ViewConfiguration =
|
|
4
|
+
{
|
|
5
|
+
ViewIdentifier: 'TUI-Update',
|
|
6
|
+
|
|
7
|
+
DefaultRenderable: 'TUI-Update-Content',
|
|
8
|
+
DefaultDestinationAddress: '#TUI-TerminalOutput',
|
|
9
|
+
|
|
10
|
+
AutoRender: false,
|
|
11
|
+
|
|
12
|
+
Templates:
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
Hash: 'TUI-Update-Template',
|
|
16
|
+
Template: ''
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
|
|
20
|
+
Renderables:
|
|
21
|
+
[
|
|
22
|
+
{
|
|
23
|
+
RenderableHash: 'TUI-Update-Content',
|
|
24
|
+
TemplateHash: 'TUI-Update-Template',
|
|
25
|
+
ContentDestinationAddress: '#TUI-TerminalOutput',
|
|
26
|
+
RenderMethod: 'replace'
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
class TUIUpdateView extends libPictView
|
|
32
|
+
{
|
|
33
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
34
|
+
{
|
|
35
|
+
super(pFable, pOptions, pServiceHash);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
runScript(pProcessRunner, pModulesPath)
|
|
39
|
+
{
|
|
40
|
+
pProcessRunner.run('bash', ['./Update.sh'], pModulesPath);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
module.exports = TUIUpdateView;
|
|
45
|
+
module.exports.default_configuration = _ViewConfiguration;
|
|
@@ -1,344 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "retold-quickstart-layer1-fable",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "retold-quickstart-layer1-fable",
|
|
9
|
-
"version": "1.0.0",
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"fable": "^3.1.51"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"node_modules/async.eachlimit": {
|
|
15
|
-
"version": "0.5.2",
|
|
16
|
-
"resolved": "https://registry.npmjs.org/async.eachlimit/-/async.eachlimit-0.5.2.tgz",
|
|
17
|
-
"integrity": "sha512-emWKSFjCbXnrCJfM2NBMyriJQrdem+LrchiMQtCavBQnJ80N2C7IBhUz8vXnjYYh+aAkY0zZSofNxVYJMTDMIw==",
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"async.util.eachoflimit": "0.5.2",
|
|
21
|
-
"async.util.withoutindex": "0.5.2"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"node_modules/async.iterator": {
|
|
25
|
-
"version": "0.5.2",
|
|
26
|
-
"resolved": "https://registry.npmjs.org/async.iterator/-/async.iterator-0.5.2.tgz",
|
|
27
|
-
"integrity": "sha512-Ryg+D9tPYvcHbI3HknGfd6cgQaevwv/9lBpa3KbFrNWDcpsvc4BbpQLGpvaLNCJXM0Uzty/GDKuI2XktiIe0Ng==",
|
|
28
|
-
"license": "MIT"
|
|
29
|
-
},
|
|
30
|
-
"node_modules/async.util.eachoflimit": {
|
|
31
|
-
"version": "0.5.2",
|
|
32
|
-
"resolved": "https://registry.npmjs.org/async.util.eachoflimit/-/async.util.eachoflimit-0.5.2.tgz",
|
|
33
|
-
"integrity": "sha512-oZksH0sBW0AEOJKgBCQ79io9DZruoRBLTAea/Ik36pejR7pDpByvtXeuJsoZdPwSVslsrQcsUfucbUaiXYBnAQ==",
|
|
34
|
-
"license": "MIT",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"async.util.keyiterator": "0.5.2",
|
|
37
|
-
"async.util.noop": "0.5.2",
|
|
38
|
-
"async.util.once": "0.5.2",
|
|
39
|
-
"async.util.onlyonce": "0.5.2"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"node_modules/async.util.ensureasync": {
|
|
43
|
-
"version": "0.5.2",
|
|
44
|
-
"resolved": "https://registry.npmjs.org/async.util.ensureasync/-/async.util.ensureasync-0.5.2.tgz",
|
|
45
|
-
"integrity": "sha512-sQufNz4JYLHO/7ZUklaTGJtiX36gCp28McNNcMZfVYPm/wqi1pKk4xRCPr2DOZDM6KfA54zjG36jQjBU2mLzXg==",
|
|
46
|
-
"license": "MIT",
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"async.util.restparam": "0.5.2",
|
|
49
|
-
"async.util.setimmediate": "0.5.2"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"node_modules/async.util.isarray": {
|
|
53
|
-
"version": "0.5.2",
|
|
54
|
-
"resolved": "https://registry.npmjs.org/async.util.isarray/-/async.util.isarray-0.5.2.tgz",
|
|
55
|
-
"integrity": "sha512-wbUzlrwON8RUgi+v/rhF0U99Ce8Osjcn+JP/mFNg6ymvShcobAOvE6cvLajSY5dPqKCOE1xfdhefgBif11zZgw==",
|
|
56
|
-
"license": "MIT"
|
|
57
|
-
},
|
|
58
|
-
"node_modules/async.util.isarraylike": {
|
|
59
|
-
"version": "0.5.2",
|
|
60
|
-
"resolved": "https://registry.npmjs.org/async.util.isarraylike/-/async.util.isarraylike-0.5.2.tgz",
|
|
61
|
-
"integrity": "sha512-DbFpsz3ZFNkohAW8IpGTlm8gotU32zpqe3Y2XkEA/G3XNO6rmUTKPpo7XgXUruoI+AsGi8+0zWpJHe7t1sLiAg==",
|
|
62
|
-
"license": "MIT",
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"async.util.isarray": "0.5.2"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"node_modules/async.util.keyiterator": {
|
|
68
|
-
"version": "0.5.2",
|
|
69
|
-
"resolved": "https://registry.npmjs.org/async.util.keyiterator/-/async.util.keyiterator-0.5.2.tgz",
|
|
70
|
-
"integrity": "sha512-cktrETawCwgu13y3KZs2uMGFnNHc+IjKPZsavtRaoCjLELkePb2co4zrr+ghPvEqLXZIJPTKqC2HFZgJTssMVw==",
|
|
71
|
-
"license": "MIT",
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"async.util.isarraylike": "0.5.2",
|
|
74
|
-
"async.util.keys": "0.5.2"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"node_modules/async.util.keys": {
|
|
78
|
-
"version": "0.5.2",
|
|
79
|
-
"resolved": "https://registry.npmjs.org/async.util.keys/-/async.util.keys-0.5.2.tgz",
|
|
80
|
-
"integrity": "sha512-umCOCRCRYwIC2Ho3fbuhKwIIe7OhQsVoVKGoF5GoQiGJUmjP4TG0Bmmcdpm7yW/znoIGKpnjKzVQz0niH4tfqw==",
|
|
81
|
-
"license": "MIT"
|
|
82
|
-
},
|
|
83
|
-
"node_modules/async.util.noop": {
|
|
84
|
-
"version": "0.5.2",
|
|
85
|
-
"resolved": "https://registry.npmjs.org/async.util.noop/-/async.util.noop-0.5.2.tgz",
|
|
86
|
-
"integrity": "sha512-AdwShXwE0KoskgqVJAck8zcM32nIHj3AC8ZN62ZaR5srhrY235Nw18vOJZWxcOfhxdVM0hRVKM8kMx7lcl7cCQ==",
|
|
87
|
-
"license": "MIT"
|
|
88
|
-
},
|
|
89
|
-
"node_modules/async.util.once": {
|
|
90
|
-
"version": "0.5.2",
|
|
91
|
-
"resolved": "https://registry.npmjs.org/async.util.once/-/async.util.once-0.5.2.tgz",
|
|
92
|
-
"integrity": "sha512-YQ5WPzDTt2jlblUDkq2I5RV/KiAJErJ4/0cEFhYPaZzqIuF/xDzdGvnEKe7UeuoMszsVPeajzcpKgkbwdb9MUA==",
|
|
93
|
-
"license": "MIT"
|
|
94
|
-
},
|
|
95
|
-
"node_modules/async.util.onlyonce": {
|
|
96
|
-
"version": "0.5.2",
|
|
97
|
-
"resolved": "https://registry.npmjs.org/async.util.onlyonce/-/async.util.onlyonce-0.5.2.tgz",
|
|
98
|
-
"integrity": "sha512-UgQvkU9JZ+I0Cm1f56XyGXcII+J3d/5XWUuHpcevlItuA3WFSJcqZrsyAUck2FkRSD8BwYQX1zUTDp3SJMVESg==",
|
|
99
|
-
"license": "MIT"
|
|
100
|
-
},
|
|
101
|
-
"node_modules/async.util.restparam": {
|
|
102
|
-
"version": "0.5.2",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/async.util.restparam/-/async.util.restparam-0.5.2.tgz",
|
|
104
|
-
"integrity": "sha512-Q9Z+zgmtMxFX5i7CnBvNOkgrL5hptztCqwarQluyNudUUk4iCmyjmsQl8MuQEjNh3gGqP5ayvDaextL1VXXgIg==",
|
|
105
|
-
"license": "MIT"
|
|
106
|
-
},
|
|
107
|
-
"node_modules/async.util.setimmediate": {
|
|
108
|
-
"version": "0.5.2",
|
|
109
|
-
"resolved": "https://registry.npmjs.org/async.util.setimmediate/-/async.util.setimmediate-0.5.2.tgz",
|
|
110
|
-
"integrity": "sha512-aCYF85ZFCQ9Xn0106GcOVx+LvFguIIzfbfRTOlQoie3G4KeSjURfA6f7CfpFAF09FNP2A1MtdjeFdvYeTGDebw==",
|
|
111
|
-
"license": "MIT"
|
|
112
|
-
},
|
|
113
|
-
"node_modules/async.util.withoutindex": {
|
|
114
|
-
"version": "0.5.2",
|
|
115
|
-
"resolved": "https://registry.npmjs.org/async.util.withoutindex/-/async.util.withoutindex-0.5.2.tgz",
|
|
116
|
-
"integrity": "sha512-CTHbQc+1kHkK6izoXIVIiYjePgmAzvXecETn/eVuzhwL9BDC3oFLNiIrr57fKwyarZyy8PedVIpQNrqgA9KzNA==",
|
|
117
|
-
"license": "MIT"
|
|
118
|
-
},
|
|
119
|
-
"node_modules/async.waterfall": {
|
|
120
|
-
"version": "0.5.2",
|
|
121
|
-
"resolved": "https://registry.npmjs.org/async.waterfall/-/async.waterfall-0.5.2.tgz",
|
|
122
|
-
"integrity": "sha512-3eC5jwgBF0/CNTAwBQYCMybqd6ResDwsdyl3+i5qf1L7fYekVR5gbMzpBca7VoZj1W0BFsHcvjW3UeJstEt2kQ==",
|
|
123
|
-
"license": "MIT",
|
|
124
|
-
"dependencies": {
|
|
125
|
-
"async.iterator": "0.5.2",
|
|
126
|
-
"async.util.ensureasync": "0.5.2",
|
|
127
|
-
"async.util.isarray": "0.5.2",
|
|
128
|
-
"async.util.noop": "0.5.2",
|
|
129
|
-
"async.util.once": "0.5.2",
|
|
130
|
-
"async.util.restparam": "0.5.2"
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
"node_modules/big.js": {
|
|
134
|
-
"version": "7.0.1",
|
|
135
|
-
"resolved": "https://registry.npmjs.org/big.js/-/big.js-7.0.1.tgz",
|
|
136
|
-
"integrity": "sha512-iFgV784tD8kq4ccF1xtNMZnXeZzVuXWWM+ERFzKQjv+A5G9HC8CY3DuV45vgzFFcW+u2tIvmF95+AzWgs6BjCg==",
|
|
137
|
-
"license": "MIT",
|
|
138
|
-
"engines": {
|
|
139
|
-
"node": "*"
|
|
140
|
-
},
|
|
141
|
-
"funding": {
|
|
142
|
-
"type": "opencollective",
|
|
143
|
-
"url": "https://opencollective.com/bigjs"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"node_modules/cachetrax": {
|
|
147
|
-
"version": "1.0.4",
|
|
148
|
-
"resolved": "https://registry.npmjs.org/cachetrax/-/cachetrax-1.0.4.tgz",
|
|
149
|
-
"integrity": "sha512-VoqtXp+tEdcbmiR0eJcdERsaBKhmdeVjpZ2jeVadDq25iM7hvZAFu+BCKMHitWzpkgb/Dw4RAouQBGnXbADPBg==",
|
|
150
|
-
"license": "MIT",
|
|
151
|
-
"dependencies": {
|
|
152
|
-
"fable-serviceproviderbase": "^3.0.7"
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
"node_modules/cookie": {
|
|
156
|
-
"version": "1.1.1",
|
|
157
|
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
158
|
-
"integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
|
|
159
|
-
"license": "MIT",
|
|
160
|
-
"engines": {
|
|
161
|
-
"node": ">=18"
|
|
162
|
-
},
|
|
163
|
-
"funding": {
|
|
164
|
-
"type": "opencollective",
|
|
165
|
-
"url": "https://opencollective.com/express"
|
|
166
|
-
}
|
|
167
|
-
},
|
|
168
|
-
"node_modules/data-arithmatic": {
|
|
169
|
-
"version": "1.0.7",
|
|
170
|
-
"resolved": "https://registry.npmjs.org/data-arithmatic/-/data-arithmatic-1.0.7.tgz",
|
|
171
|
-
"integrity": "sha512-Z1SBuORrjrlCx9AAx2Cy4yBYrsqtKEz7BzdcLWLMT/t78q3N5/4qjA+63zeMYUAvp9EsIKfQ8X0++Ls9xwaLag==",
|
|
172
|
-
"license": "MIT",
|
|
173
|
-
"dependencies": {
|
|
174
|
-
"fable-serviceproviderbase": "^3.0.2"
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
|
-
"node_modules/dayjs": {
|
|
178
|
-
"version": "1.11.19",
|
|
179
|
-
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.19.tgz",
|
|
180
|
-
"integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
|
|
181
|
-
"license": "MIT"
|
|
182
|
-
},
|
|
183
|
-
"node_modules/decompress-response": {
|
|
184
|
-
"version": "6.0.0",
|
|
185
|
-
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
|
186
|
-
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
|
187
|
-
"license": "MIT",
|
|
188
|
-
"dependencies": {
|
|
189
|
-
"mimic-response": "^3.1.0"
|
|
190
|
-
},
|
|
191
|
-
"engines": {
|
|
192
|
-
"node": ">=10"
|
|
193
|
-
},
|
|
194
|
-
"funding": {
|
|
195
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
196
|
-
}
|
|
197
|
-
},
|
|
198
|
-
"node_modules/fable": {
|
|
199
|
-
"version": "3.1.53",
|
|
200
|
-
"resolved": "https://registry.npmjs.org/fable/-/fable-3.1.53.tgz",
|
|
201
|
-
"integrity": "sha512-2b7sWs1K3Bl9V8biZ5VSy36YvojanAAKvOZM7hGMg+opLLt/Pk/lIEvucz4m16Vz+C3UDLWf7WKJqdBoEj8A1w==",
|
|
202
|
-
"license": "MIT",
|
|
203
|
-
"dependencies": {
|
|
204
|
-
"async.eachlimit": "^0.5.2",
|
|
205
|
-
"async.waterfall": "^0.5.2",
|
|
206
|
-
"big.js": "^7.0.1",
|
|
207
|
-
"cachetrax": "^1.0.4",
|
|
208
|
-
"cookie": "^1.0.2",
|
|
209
|
-
"data-arithmatic": "^1.0.7",
|
|
210
|
-
"dayjs": "^1.11.19",
|
|
211
|
-
"fable-log": "^3.0.16",
|
|
212
|
-
"fable-serviceproviderbase": "^3.0.16",
|
|
213
|
-
"fable-settings": "^3.0.12",
|
|
214
|
-
"fable-uuid": "^3.0.11",
|
|
215
|
-
"manyfest": "^1.0.43",
|
|
216
|
-
"simple-get": "^4.0.1"
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
"node_modules/fable-log": {
|
|
220
|
-
"version": "3.0.16",
|
|
221
|
-
"resolved": "https://registry.npmjs.org/fable-log/-/fable-log-3.0.16.tgz",
|
|
222
|
-
"integrity": "sha512-o9/eIdak/iDy8Cc+Q8NeYUf7AwqYZvr3EaeeGmVd6X7+Ao/c1y5u9x5I54WZmwcYcySukmf2BEiQvS/itoliVw==",
|
|
223
|
-
"license": "MIT",
|
|
224
|
-
"dependencies": {
|
|
225
|
-
"fable-serviceproviderbase": "^3.0.15"
|
|
226
|
-
}
|
|
227
|
-
},
|
|
228
|
-
"node_modules/fable-serviceproviderbase": {
|
|
229
|
-
"version": "3.0.16",
|
|
230
|
-
"resolved": "https://registry.npmjs.org/fable-serviceproviderbase/-/fable-serviceproviderbase-3.0.16.tgz",
|
|
231
|
-
"integrity": "sha512-jvv1MO/xSNTInRwCFZz56ON4UNVwcOnLuLJlkfzqKXSbN9O8M6E7TYFExkM/UsG35dzDnApilz6Zmg3FvES4Cg==",
|
|
232
|
-
"license": "MIT"
|
|
233
|
-
},
|
|
234
|
-
"node_modules/fable-settings": {
|
|
235
|
-
"version": "3.0.12",
|
|
236
|
-
"resolved": "https://registry.npmjs.org/fable-settings/-/fable-settings-3.0.12.tgz",
|
|
237
|
-
"integrity": "sha512-zzvoLcsIp06vNu5dXYV5FSQD1V1APj2IaYbhj8SJ3IHmb9pUrQm63ejGEC4fEEk+jBznHHe+RH6OEwtx6plh+g==",
|
|
238
|
-
"license": "MIT",
|
|
239
|
-
"dependencies": {
|
|
240
|
-
"fable-serviceproviderbase": "^3.0.15",
|
|
241
|
-
"precedent": "^1.0.15"
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
"node_modules/fable-uuid": {
|
|
245
|
-
"version": "3.0.11",
|
|
246
|
-
"resolved": "https://registry.npmjs.org/fable-uuid/-/fable-uuid-3.0.11.tgz",
|
|
247
|
-
"integrity": "sha512-ZNFmcc2HI16J6rqiLfkShzzNgeHjbInM0Ur70tAgXlQm/jWqIpU3OFAyTesrz4dVQ5+wCxjp7PQadF7YJ0hNIw==",
|
|
248
|
-
"license": "MIT",
|
|
249
|
-
"dependencies": {
|
|
250
|
-
"fable-serviceproviderbase": "^3.0.15"
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
"node_modules/manyfest": {
|
|
254
|
-
"version": "1.0.44",
|
|
255
|
-
"resolved": "https://registry.npmjs.org/manyfest/-/manyfest-1.0.44.tgz",
|
|
256
|
-
"integrity": "sha512-8sI1zQ5lysMW879Lb5VtksmpOy4M2vZIl2IjIzMo5lOWu1MmLZGX/MQxdBu0Klnf4fJwscainclMYs9/P3JXUQ==",
|
|
257
|
-
"license": "MIT",
|
|
258
|
-
"dependencies": {
|
|
259
|
-
"fable-serviceproviderbase": "^3.0.15"
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
"node_modules/mimic-response": {
|
|
263
|
-
"version": "3.1.0",
|
|
264
|
-
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
|
265
|
-
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
|
|
266
|
-
"license": "MIT",
|
|
267
|
-
"engines": {
|
|
268
|
-
"node": ">=10"
|
|
269
|
-
},
|
|
270
|
-
"funding": {
|
|
271
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
"node_modules/once": {
|
|
275
|
-
"version": "1.4.0",
|
|
276
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
277
|
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
278
|
-
"license": "ISC",
|
|
279
|
-
"dependencies": {
|
|
280
|
-
"wrappy": "1"
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
"node_modules/precedent": {
|
|
284
|
-
"version": "1.0.15",
|
|
285
|
-
"resolved": "https://registry.npmjs.org/precedent/-/precedent-1.0.15.tgz",
|
|
286
|
-
"integrity": "sha512-tidXY4JvTudvJ/Jmb8OzHFpX6qUSPwmS7K/BChA7xDb7eqmfHjH3AAO+IhCz3k7k+bh31YNdblSIEkYnCIYelw==",
|
|
287
|
-
"license": "MIT",
|
|
288
|
-
"bin": {
|
|
289
|
-
"precedent": "bin/Precedent"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
"node_modules/simple-concat": {
|
|
293
|
-
"version": "1.0.1",
|
|
294
|
-
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
295
|
-
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
|
|
296
|
-
"funding": [
|
|
297
|
-
{
|
|
298
|
-
"type": "github",
|
|
299
|
-
"url": "https://github.com/sponsors/feross"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"type": "patreon",
|
|
303
|
-
"url": "https://www.patreon.com/feross"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"type": "consulting",
|
|
307
|
-
"url": "https://feross.org/support"
|
|
308
|
-
}
|
|
309
|
-
],
|
|
310
|
-
"license": "MIT"
|
|
311
|
-
},
|
|
312
|
-
"node_modules/simple-get": {
|
|
313
|
-
"version": "4.0.1",
|
|
314
|
-
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
|
|
315
|
-
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
|
|
316
|
-
"funding": [
|
|
317
|
-
{
|
|
318
|
-
"type": "github",
|
|
319
|
-
"url": "https://github.com/sponsors/feross"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"type": "patreon",
|
|
323
|
-
"url": "https://www.patreon.com/feross"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"type": "consulting",
|
|
327
|
-
"url": "https://feross.org/support"
|
|
328
|
-
}
|
|
329
|
-
],
|
|
330
|
-
"license": "MIT",
|
|
331
|
-
"dependencies": {
|
|
332
|
-
"decompress-response": "^6.0.0",
|
|
333
|
-
"once": "^1.3.1",
|
|
334
|
-
"simple-concat": "^1.0.0"
|
|
335
|
-
}
|
|
336
|
-
},
|
|
337
|
-
"node_modules/wrappy": {
|
|
338
|
-
"version": "1.0.2",
|
|
339
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
340
|
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
341
|
-
"license": "ISC"
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
}
|