@goah/cli 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +191 -13
- package/dist/cli.js.map +1 -1
- package/dist/console/assets/index-TOZF8bTI.js +50 -0
- package/dist/console/assets/index-TOZF8bTI.js.map +1 -0
- package/dist/console/assets/index-ouh3W9al.css +1 -0
- package/dist/console/goah-orbital-mark.png +0 -0
- package/dist/console/index.html +14 -0
- package/dist/control.d.ts +70 -0
- package/dist/control.d.ts.map +1 -0
- package/dist/control.js +173 -0
- package/dist/control.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/web-console.d.ts +33 -0
- package/dist/web-console.d.ts.map +1 -0
- package/dist/web-console.js +200 -0
- package/dist/web-console.js.map +1 -0
- package/node_modules/goah-ledger-contract/dist/execution.d.ts +10 -1
- package/node_modules/goah-ledger-contract/dist/execution.d.ts.map +1 -1
- package/node_modules/goah-ledger-contract/dist/execution.js +10 -3
- package/node_modules/goah-ledger-contract/dist/execution.js.map +1 -1
- package/node_modules/goah-ledger-contract/dist/kernel.d.ts +1 -1
- package/node_modules/goah-ledger-contract/dist/kernel.js +1 -1
- package/node_modules/goah-ledger-contract/package.json +2 -2
- package/node_modules/goah-ledger-sqlite/dist/index.d.ts +3 -2
- package/node_modules/goah-ledger-sqlite/dist/index.d.ts.map +1 -1
- package/node_modules/goah-ledger-sqlite/dist/index.js +52 -16
- package/node_modules/goah-ledger-sqlite/dist/index.js.map +1 -1
- package/node_modules/goah-ledger-sqlite/package.json +3 -3
- package/node_modules/goah-runner-pi/dist/pi-worker.d.ts.map +1 -1
- package/node_modules/goah-runner-pi/dist/pi-worker.js +33 -16
- package/node_modules/goah-runner-pi/dist/pi-worker.js.map +1 -1
- package/node_modules/goah-runner-pi/package.json +3 -3
- package/node_modules/goah-supervisor/dist/context-view.d.ts +1 -0
- package/node_modules/goah-supervisor/dist/context-view.d.ts.map +1 -1
- package/node_modules/goah-supervisor/dist/context-view.js +5 -1
- package/node_modules/goah-supervisor/dist/context-view.js.map +1 -1
- package/node_modules/goah-supervisor/dist/index.d.ts +5 -2
- package/node_modules/goah-supervisor/dist/index.d.ts.map +1 -1
- package/node_modules/goah-supervisor/dist/index.js +72 -32
- package/node_modules/goah-supervisor/dist/index.js.map +1 -1
- package/node_modules/goah-supervisor/dist/roles.d.ts.map +1 -1
- package/node_modules/goah-supervisor/dist/roles.js +4 -2
- package/node_modules/goah-supervisor/dist/roles.js.map +1 -1
- package/node_modules/goah-supervisor/package.json +3 -3
- package/node_modules/goah-testkit/dist/faux-runner-worker.js +17 -1
- package/node_modules/goah-testkit/dist/faux-runner-worker.js.map +1 -1
- package/node_modules/goah-testkit/dist/index.d.ts.map +1 -1
- package/node_modules/goah-testkit/dist/index.js +7 -5
- package/node_modules/goah-testkit/dist/index.js.map +1 -1
- package/node_modules/goah-testkit/package.json +6 -6
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goah/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/billc8128/
|
|
7
|
+
"url": "git+https://github.com/billc8128/opengoah.git",
|
|
8
8
|
"directory": "packages/cli"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"postpack": "node ../../scripts/cleanup-single-package.mjs"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"goah-ledger-contract": "0.
|
|
44
|
-
"goah-ledger-sqlite": "0.
|
|
45
|
-
"goah-runner-pi": "0.
|
|
46
|
-
"goah-supervisor": "0.
|
|
47
|
-
"goah-testkit": "0.
|
|
43
|
+
"goah-ledger-contract": "0.5.0",
|
|
44
|
+
"goah-ledger-sqlite": "0.5.0",
|
|
45
|
+
"goah-runner-pi": "0.5.0",
|
|
46
|
+
"goah-supervisor": "0.5.0",
|
|
47
|
+
"goah-testkit": "0.5.0",
|
|
48
48
|
"@earendil-works/pi-agent-core": "0.84.2",
|
|
49
49
|
"@earendil-works/pi-ai": "0.84.2"
|
|
50
50
|
},
|