@intentius/behold 0.8.0 → 0.9.1
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/AGENTS.md +85 -0
- package/README.md +124 -2
- package/demos.json +17 -1
- package/dist/cli.js +2553 -315
- package/example-argo-estate/README.md +43 -18
- package/example-argo-estate/app-a/chant.config.ts +10 -2
- package/example-argo-estate/app-a/package.json +2 -2
- package/example-argo-estate/app-b/chant.config.ts +11 -2
- package/example-argo-estate/app-b/package.json +2 -2
- package/example-argo-estate/control-plane/chant.config.ts +20 -5
- package/example-argo-estate/control-plane/package.json +2 -2
- package/example-argo-estate/package-lock.json +20 -20
- package/example-carve/README.md +221 -0
- package/example-carve/app/chant.config.ts +6 -0
- package/example-carve/app/package-lock.json +1075 -0
- package/example-carve/app/package.json +13 -0
- package/example-carve/app/src/carved.ts +30 -0
- package/example-carve/app/tsconfig.json +1 -0
- package/example-carve/carve-report.json +962 -0
- package/example-carve/legacy-tf/cdn.tf +23 -0
- package/example-carve/legacy-tf/compute.tf +63 -0
- package/example-carve/legacy-tf/floci-override.tf.disabled +61 -0
- package/example-carve/legacy-tf/modules/cdn/main.tf +72 -0
- package/example-carve/legacy-tf/naming.tf +10 -0
- package/example-carve/legacy-tf/network.tf +119 -0
- package/example-carve/legacy-tf/observability.tf +18 -0
- package/example-carve/legacy-tf/outputs.tf +21 -0
- package/example-carve/legacy-tf/storage.tf +33 -0
- package/example-carve/legacy-tf/terraform.tfstate +602 -0
- package/example-carve/legacy-tf/versions.tf +40 -0
- package/example-flux-estate/README.md +9 -4
- package/example-flux-estate/app-a/package.json +2 -2
- package/example-flux-estate/app-a/src/app.ts +2 -1
- package/example-flux-estate/app-b/chant.config.ts +4 -3
- package/example-flux-estate/app-b/package.json +2 -2
- package/example-flux-estate/app-b/src/app.ts +5 -3
- package/example-flux-estate/control-plane/package.json +2 -2
- package/example-flux-estate/control-plane/src/flux.ts +4 -2
- package/example-flux-estate/package-lock.json +20 -20
- package/example-k8s/package-lock.json +21 -21
- package/example-k8s/package.json +3 -3
- package/example-writes/package-lock.json +14 -14
- package/example-writes/package.json +3 -3
- package/package.json +8 -6
- package/web/app.js +714 -57
- package/web/carve-steps.js +621 -0
- package/web/carve-steps.test.js +248 -0
- package/web/demos.js +71 -0
- package/web/demos.test.js +83 -0
- package/web/index.html +93 -1
- package/web/json-view.js +334 -0
- package/web/json-view.test.js +218 -0
- package/web/layout-store.js +164 -4
- package/web/layout-store.test.js +226 -1
- package/web/panel.js +28 -0
- package/web/theme.js +57 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
// App A: one small web workload, namespace declared EXPLICITLY on every
|
|
2
2
|
// object. Contrast app-b, which leaves namespace to the control plane's
|
|
3
3
|
// targetNamespace — the two apps together show both halves of the Flux
|
|
4
|
-
// namespace story
|
|
4
|
+
// namespace story: behold#192's note when app-b is served alone, behold#221's
|
|
5
|
+
// estate join when the three projects are served composed.
|
|
5
6
|
import { Deployment, Service } from "@intentius/chant-lexicon-k8s";
|
|
6
7
|
|
|
7
8
|
const labels = { app: "app-a" };
|
|
@@ -4,9 +4,10 @@ import type { K8sChantConfig } from "@intentius/chant-lexicon-k8s";
|
|
|
4
4
|
// App project B — the targetNamespace half of the estate: its objects declare
|
|
5
5
|
// no metadata.namespace (see src/app.ts), so the control plane's
|
|
6
6
|
// Kustomization stamps `app-b` at apply time. That is idiomatic Flux, AND it
|
|
7
|
-
// means a
|
|
8
|
-
// namespace-mismatch note (behold#192) names exactly this,
|
|
9
|
-
// this demo.
|
|
7
|
+
// means a live read of THIS PROJECT ALONE scopes to `default` and finds
|
|
8
|
+
// nothing — behold's namespace-mismatch note (behold#192) names exactly this,
|
|
9
|
+
// on purpose, in this demo. Composed with the control plane, behold joins the
|
|
10
|
+
// binding and reads `app-b` instead (behold#221).
|
|
10
11
|
export default {
|
|
11
12
|
lexicons: ["k8s"],
|
|
12
13
|
sourceDir: "src",
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
// App B: same small workload as app-a, with NO metadata.namespace anywhere —
|
|
2
2
|
// the control plane's Kustomization stamps targetNamespace: app-b at apply
|
|
3
3
|
// time. Idiomatic Flux (that's what the field is for), and the deliberate
|
|
4
|
-
// exhibit of behold's namespace
|
|
5
|
-
// scopes to `default`, finds nothing, and behold explains
|
|
6
|
-
//
|
|
4
|
+
// exhibit of behold's estate namespace join (behold#221): served ALONE this
|
|
5
|
+
// project's live read scopes to `default`, finds nothing, and behold explains
|
|
6
|
+
// the all-pending paint with its namespace-mismatch note (behold#192) rather
|
|
7
|
+
// than letting it read as "not deployed". Served COMPOSED, the estate reads
|
|
8
|
+
// the binding off ../../control-plane and scopes the read to `app-b`.
|
|
7
9
|
import { Deployment, Service } from "@intentius/chant-lexicon-k8s";
|
|
8
10
|
|
|
9
11
|
const labels = { app: "app-b" };
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
// Kustomization applies one app project's committed manifests into that app's
|
|
4
4
|
// namespace via targetNamespace — which is why app-b's objects declare no
|
|
5
5
|
// metadata.namespace (see ../../app-b/src/app.ts): Flux stamps it at apply
|
|
6
|
-
// time. That is the normal Flux estate shape
|
|
7
|
-
//
|
|
6
|
+
// time. That is the normal Flux estate shape — the one behold#192's note
|
|
7
|
+
// explains for a project served alone, and the one behold#221's estate join
|
|
8
|
+
// resolves outright by reading `targetNamespace` off the Kustomizations
|
|
9
|
+
// below and scoping app-b's live read to it.
|
|
8
10
|
//
|
|
9
11
|
// scripts/estate-up.sh applies the BUILT form of this project (chant build →
|
|
10
12
|
// dist/control-plane.yaml) once, after installing Flux; from then on the
|
|
@@ -14,22 +14,22 @@
|
|
|
14
14
|
"app-a": {
|
|
15
15
|
"name": "behold-example-flux-app-a",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@intentius/chant": "^0.44.
|
|
18
|
-
"@intentius/chant-lexicon-k8s": "^0.44.
|
|
17
|
+
"@intentius/chant": "^0.44.7",
|
|
18
|
+
"@intentius/chant-lexicon-k8s": "^0.44.7"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"app-b": {
|
|
22
22
|
"name": "behold-example-flux-app-b",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@intentius/chant": "^0.44.
|
|
25
|
-
"@intentius/chant-lexicon-k8s": "^0.44.
|
|
24
|
+
"@intentius/chant": "^0.44.7",
|
|
25
|
+
"@intentius/chant-lexicon-k8s": "^0.44.7"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"control-plane": {
|
|
29
29
|
"name": "behold-example-flux-control-plane",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@intentius/chant": "^0.44.
|
|
32
|
-
"@intentius/chant-lexicon-k8s": "^0.44.
|
|
31
|
+
"@intentius/chant": "^0.44.7",
|
|
32
|
+
"@intentius/chant-lexicon-k8s": "^0.44.7"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"node_modules/@dagrejs/dagre": {
|
|
@@ -464,9 +464,9 @@
|
|
|
464
464
|
}
|
|
465
465
|
},
|
|
466
466
|
"node_modules/@intentius/chant": {
|
|
467
|
-
"version": "0.44.
|
|
468
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.
|
|
469
|
-
"integrity": "sha512-
|
|
467
|
+
"version": "0.44.7",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.7.tgz",
|
|
469
|
+
"integrity": "sha512-etCchkfbWFHJ+XnTYVVn9GT4/gZi/O8SVphDXHeuPOfK5VvRxo0unveIUEsuRoHGHgzN9Y+aj0Jk15xhIE7Gzg==",
|
|
470
470
|
"license": "Apache-2.0",
|
|
471
471
|
"dependencies": {
|
|
472
472
|
"@dagrejs/dagre": "^3.0.0",
|
|
@@ -482,9 +482,9 @@
|
|
|
482
482
|
}
|
|
483
483
|
},
|
|
484
484
|
"node_modules/@intentius/chant-k8s-client": {
|
|
485
|
-
"version": "0.44.
|
|
486
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-k8s-client/-/chant-k8s-client-0.44.
|
|
487
|
-
"integrity": "sha512-
|
|
485
|
+
"version": "0.44.7",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-k8s-client/-/chant-k8s-client-0.44.7.tgz",
|
|
487
|
+
"integrity": "sha512-G9VVki/qHZ+hbKrxDDnVVhfeZWoHgozLA7tjcY/lsa/fDIwI0xMJnAN/DJNcQLBpRscXm3y3Ki/PNQ9SxshmLA==",
|
|
488
488
|
"license": "Apache-2.0",
|
|
489
489
|
"optional": true,
|
|
490
490
|
"dependencies": {
|
|
@@ -492,19 +492,19 @@
|
|
|
492
492
|
}
|
|
493
493
|
},
|
|
494
494
|
"node_modules/@intentius/chant-lexicon-k8s": {
|
|
495
|
-
"version": "0.44.
|
|
496
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-k8s/-/chant-lexicon-k8s-0.44.
|
|
497
|
-
"integrity": "sha512-
|
|
495
|
+
"version": "0.44.7",
|
|
496
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-k8s/-/chant-lexicon-k8s-0.44.7.tgz",
|
|
497
|
+
"integrity": "sha512-h8QXOYoxjsAeA1w8koLQlZqOuSQcvWpEHKmwlf0AKPgwuVRiapwJI+UtuoBwL/AOrBKDh6Z5pW3zbo6vDltGvA==",
|
|
498
498
|
"license": "Apache-2.0",
|
|
499
499
|
"dependencies": {
|
|
500
500
|
"@types/js-yaml": "^4.0.9",
|
|
501
501
|
"js-yaml": "^4.1.1"
|
|
502
502
|
},
|
|
503
503
|
"optionalDependencies": {
|
|
504
|
-
"@intentius/chant-k8s-client": "^0.44.
|
|
504
|
+
"@intentius/chant-k8s-client": "^0.44.7"
|
|
505
505
|
},
|
|
506
506
|
"peerDependencies": {
|
|
507
|
-
"@intentius/chant": "^0.44.
|
|
507
|
+
"@intentius/chant": "^0.44.7",
|
|
508
508
|
"typescript": "^5.9.3",
|
|
509
509
|
"zod": "^4.3.6"
|
|
510
510
|
}
|
|
@@ -1071,9 +1071,9 @@
|
|
|
1071
1071
|
}
|
|
1072
1072
|
},
|
|
1073
1073
|
"node_modules/ip-address": {
|
|
1074
|
-
"version": "10.
|
|
1075
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.
|
|
1076
|
-
"integrity": "sha512-
|
|
1074
|
+
"version": "10.5.0",
|
|
1075
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.5.0.tgz",
|
|
1076
|
+
"integrity": "sha512-R5SnVLJmgYYvf2F2ZgwSBnelz5G4q5AxIC277GDfUaNbrZKNANcBC7RHqYYePlszf4kBolVkJauG0ZjHHFh55g==",
|
|
1077
1077
|
"license": "MIT",
|
|
1078
1078
|
"optional": true,
|
|
1079
1079
|
"engines": {
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "behold-example-k8s",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@intentius/chant": "^0.44.
|
|
10
|
-
"@intentius/chant-lexicon-k8s": "^0.44.
|
|
11
|
-
"@intentius/chant-lexicon-temporal": "^0.44.
|
|
9
|
+
"@intentius/chant": "^0.44.7",
|
|
10
|
+
"@intentius/chant-lexicon-k8s": "^0.44.7",
|
|
11
|
+
"@intentius/chant-lexicon-temporal": "^0.44.7"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"node_modules/@dagrejs/dagre": {
|
|
@@ -443,9 +443,9 @@
|
|
|
443
443
|
}
|
|
444
444
|
},
|
|
445
445
|
"node_modules/@intentius/chant": {
|
|
446
|
-
"version": "0.44.
|
|
447
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.
|
|
448
|
-
"integrity": "sha512-
|
|
446
|
+
"version": "0.44.7",
|
|
447
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.7.tgz",
|
|
448
|
+
"integrity": "sha512-etCchkfbWFHJ+XnTYVVn9GT4/gZi/O8SVphDXHeuPOfK5VvRxo0unveIUEsuRoHGHgzN9Y+aj0Jk15xhIE7Gzg==",
|
|
449
449
|
"license": "Apache-2.0",
|
|
450
450
|
"dependencies": {
|
|
451
451
|
"@dagrejs/dagre": "^3.0.0",
|
|
@@ -461,9 +461,9 @@
|
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"node_modules/@intentius/chant-k8s-client": {
|
|
464
|
-
"version": "0.44.
|
|
465
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-k8s-client/-/chant-k8s-client-0.44.
|
|
466
|
-
"integrity": "sha512-
|
|
464
|
+
"version": "0.44.7",
|
|
465
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-k8s-client/-/chant-k8s-client-0.44.7.tgz",
|
|
466
|
+
"integrity": "sha512-G9VVki/qHZ+hbKrxDDnVVhfeZWoHgozLA7tjcY/lsa/fDIwI0xMJnAN/DJNcQLBpRscXm3y3Ki/PNQ9SxshmLA==",
|
|
467
467
|
"license": "Apache-2.0",
|
|
468
468
|
"optional": true,
|
|
469
469
|
"dependencies": {
|
|
@@ -471,34 +471,34 @@
|
|
|
471
471
|
}
|
|
472
472
|
},
|
|
473
473
|
"node_modules/@intentius/chant-lexicon-k8s": {
|
|
474
|
-
"version": "0.44.
|
|
475
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-k8s/-/chant-lexicon-k8s-0.44.
|
|
476
|
-
"integrity": "sha512-
|
|
474
|
+
"version": "0.44.7",
|
|
475
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-k8s/-/chant-lexicon-k8s-0.44.7.tgz",
|
|
476
|
+
"integrity": "sha512-h8QXOYoxjsAeA1w8koLQlZqOuSQcvWpEHKmwlf0AKPgwuVRiapwJI+UtuoBwL/AOrBKDh6Z5pW3zbo6vDltGvA==",
|
|
477
477
|
"license": "Apache-2.0",
|
|
478
478
|
"dependencies": {
|
|
479
479
|
"@types/js-yaml": "^4.0.9",
|
|
480
480
|
"js-yaml": "^4.1.1"
|
|
481
481
|
},
|
|
482
482
|
"optionalDependencies": {
|
|
483
|
-
"@intentius/chant-k8s-client": "^0.44.
|
|
483
|
+
"@intentius/chant-k8s-client": "^0.44.7"
|
|
484
484
|
},
|
|
485
485
|
"peerDependencies": {
|
|
486
|
-
"@intentius/chant": "^0.44.
|
|
486
|
+
"@intentius/chant": "^0.44.7",
|
|
487
487
|
"typescript": "^5.9.3",
|
|
488
488
|
"zod": "^4.3.6"
|
|
489
489
|
}
|
|
490
490
|
},
|
|
491
491
|
"node_modules/@intentius/chant-lexicon-temporal": {
|
|
492
|
-
"version": "0.44.
|
|
493
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-temporal/-/chant-lexicon-temporal-0.44.
|
|
494
|
-
"integrity": "sha512-
|
|
492
|
+
"version": "0.44.7",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-temporal/-/chant-lexicon-temporal-0.44.7.tgz",
|
|
494
|
+
"integrity": "sha512-tA7DaXGG9dsHwbMO7SNQhdVnpgsdTtZNyRexS9MdVgS4xuWHIV9N76oISEd2hK76vwPXBD/d/e+2OT6amlse1A==",
|
|
495
495
|
"license": "Apache-2.0",
|
|
496
496
|
"dependencies": {
|
|
497
497
|
"@temporalio/common": "^1.17.2",
|
|
498
498
|
"js-yaml": "^4.1.1"
|
|
499
499
|
},
|
|
500
500
|
"peerDependencies": {
|
|
501
|
-
"@intentius/chant": "^0.44.
|
|
501
|
+
"@intentius/chant": "^0.44.7",
|
|
502
502
|
"typescript": "^5.9.3",
|
|
503
503
|
"zod": "^4.3.6"
|
|
504
504
|
}
|
|
@@ -1145,9 +1145,9 @@
|
|
|
1145
1145
|
}
|
|
1146
1146
|
},
|
|
1147
1147
|
"node_modules/ip-address": {
|
|
1148
|
-
"version": "10.
|
|
1149
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.
|
|
1150
|
-
"integrity": "sha512-
|
|
1148
|
+
"version": "10.5.0",
|
|
1149
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.5.0.tgz",
|
|
1150
|
+
"integrity": "sha512-R5SnVLJmgYYvf2F2ZgwSBnelz5G4q5AxIC277GDfUaNbrZKNANcBC7RHqYYePlszf4kBolVkJauG0ZjHHFh55g==",
|
|
1151
1151
|
"license": "MIT",
|
|
1152
1152
|
"optional": true,
|
|
1153
1153
|
"engines": {
|
package/example-k8s/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"build": "./node_modules/.bin/chant build src --lexicon k8s -o app.yaml"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@intentius/chant": "^0.44.
|
|
11
|
-
"@intentius/chant-lexicon-k8s": "^0.44.
|
|
12
|
-
"@intentius/chant-lexicon-temporal": "^0.44.
|
|
10
|
+
"@intentius/chant": "^0.44.7",
|
|
11
|
+
"@intentius/chant-lexicon-k8s": "^0.44.7",
|
|
12
|
+
"@intentius/chant-lexicon-temporal": "^0.44.7"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "behold-example-writes",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@intentius/chant": "^0.44.
|
|
10
|
-
"@intentius/chant-lexicon-aws": "^0.44.
|
|
11
|
-
"@intentius/chant-lexicon-temporal": "^0.44.
|
|
9
|
+
"@intentius/chant": "^0.44.7",
|
|
10
|
+
"@intentius/chant-lexicon-aws": "^0.44.7",
|
|
11
|
+
"@intentius/chant-lexicon-temporal": "^0.44.7"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"node_modules/@dagrejs/dagre": {
|
|
@@ -443,9 +443,9 @@
|
|
|
443
443
|
}
|
|
444
444
|
},
|
|
445
445
|
"node_modules/@intentius/chant": {
|
|
446
|
-
"version": "0.44.
|
|
447
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.
|
|
448
|
-
"integrity": "sha512-
|
|
446
|
+
"version": "0.44.7",
|
|
447
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant/-/chant-0.44.7.tgz",
|
|
448
|
+
"integrity": "sha512-etCchkfbWFHJ+XnTYVVn9GT4/gZi/O8SVphDXHeuPOfK5VvRxo0unveIUEsuRoHGHgzN9Y+aj0Jk15xhIE7Gzg==",
|
|
449
449
|
"license": "Apache-2.0",
|
|
450
450
|
"dependencies": {
|
|
451
451
|
"@dagrejs/dagre": "^3.0.0",
|
|
@@ -461,30 +461,30 @@
|
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"node_modules/@intentius/chant-lexicon-aws": {
|
|
464
|
-
"version": "0.44.
|
|
465
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-aws/-/chant-lexicon-aws-0.44.
|
|
466
|
-
"integrity": "sha512-
|
|
464
|
+
"version": "0.44.7",
|
|
465
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-aws/-/chant-lexicon-aws-0.44.7.tgz",
|
|
466
|
+
"integrity": "sha512-tlwcUv0zN5rTupRdJHdcYSsKbodiVjYaBAwG/omK4hYPtys3dZMjLVOt8bszBeTKp+h8boIEjhwpgQKpDAGmcQ==",
|
|
467
467
|
"license": "Apache-2.0",
|
|
468
468
|
"dependencies": {
|
|
469
469
|
"fflate": "^0.8.2",
|
|
470
470
|
"js-yaml": "^4.1.0"
|
|
471
471
|
},
|
|
472
472
|
"peerDependencies": {
|
|
473
|
-
"@intentius/chant": "^0.44.
|
|
473
|
+
"@intentius/chant": "^0.44.7",
|
|
474
474
|
"typescript": "^5.9.3"
|
|
475
475
|
}
|
|
476
476
|
},
|
|
477
477
|
"node_modules/@intentius/chant-lexicon-temporal": {
|
|
478
|
-
"version": "0.44.
|
|
479
|
-
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-temporal/-/chant-lexicon-temporal-0.44.
|
|
480
|
-
"integrity": "sha512-
|
|
478
|
+
"version": "0.44.7",
|
|
479
|
+
"resolved": "https://registry.npmjs.org/@intentius/chant-lexicon-temporal/-/chant-lexicon-temporal-0.44.7.tgz",
|
|
480
|
+
"integrity": "sha512-tA7DaXGG9dsHwbMO7SNQhdVnpgsdTtZNyRexS9MdVgS4xuWHIV9N76oISEd2hK76vwPXBD/d/e+2OT6amlse1A==",
|
|
481
481
|
"license": "Apache-2.0",
|
|
482
482
|
"dependencies": {
|
|
483
483
|
"@temporalio/common": "^1.17.2",
|
|
484
484
|
"js-yaml": "^4.1.1"
|
|
485
485
|
},
|
|
486
486
|
"peerDependencies": {
|
|
487
|
-
"@intentius/chant": "^0.44.
|
|
487
|
+
"@intentius/chant": "^0.44.7",
|
|
488
488
|
"typescript": "^5.9.3",
|
|
489
489
|
"zod": "^4.3.6"
|
|
490
490
|
}
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"build": "./node_modules/.bin/chant build src --lexicon aws -o template.json"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@intentius/chant": "^0.44.
|
|
11
|
-
"@intentius/chant-lexicon-aws": "^0.44.
|
|
12
|
-
"@intentius/chant-lexicon-temporal": "^0.44.
|
|
10
|
+
"@intentius/chant": "^0.44.7",
|
|
11
|
+
"@intentius/chant-lexicon-aws": "^0.44.7",
|
|
12
|
+
"@intentius/chant-lexicon-temporal": "^0.44.7"
|
|
13
13
|
}
|
|
14
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/behold",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "behold — a live control plane on chant. See your whole estate (every substrate in one graph), coloured by drift; act through delegated, gated Ops.",
|
|
6
6
|
"bin": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"example-k8s",
|
|
15
15
|
"example-flux-estate",
|
|
16
16
|
"example-argo-estate",
|
|
17
|
+
"example-carve",
|
|
17
18
|
"demos.json",
|
|
18
19
|
"AGENTS.md"
|
|
19
20
|
],
|
|
@@ -25,18 +26,19 @@
|
|
|
25
26
|
"dev": "tsx src/cli.ts",
|
|
26
27
|
"demo": "npm --prefix example-writes install && tsx src/cli.ts serve example-writes --local --env prod",
|
|
27
28
|
"demo:k8s": "bash example-k8s/scripts/local/local-up.sh; npm --prefix example-k8s install && tsx src/cli.ts serve example-k8s --local --env local; bash example-k8s/scripts/local/local-down.sh",
|
|
28
|
-
"smoke:ui": "
|
|
29
|
+
"smoke:ui": "tsx smoke/ui-smoke.mjs",
|
|
29
30
|
"tsc": "tsc --noEmit",
|
|
30
31
|
"test": "vitest run",
|
|
31
|
-
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --external:hono --external:@hono/node-server --external:@intentius/pinhole --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
32
|
+
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --external:hono --external:@hono/node-server --external:@intentius/pinhole --external:@kubernetes/client-node --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
32
33
|
"prepare": "npm run build",
|
|
33
34
|
"prepublishOnly": "npm run build"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"@hono/node-server": "^
|
|
37
|
+
"@hono/node-server": "^2.0.5",
|
|
37
38
|
"@intentius/chant": "^0.38.0",
|
|
38
|
-
"@intentius/
|
|
39
|
-
"
|
|
39
|
+
"@intentius/chant-k8s-client": "^0.44.5",
|
|
40
|
+
"@intentius/pinhole": "^0.3.3",
|
|
41
|
+
"hono": "^4.12.34"
|
|
40
42
|
},
|
|
41
43
|
"devDependencies": {
|
|
42
44
|
"@types/node": "^22.0.0",
|