-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@intentius/behold",
"version": "0.18.0",
"license": "Apache-2.0",
"type": "module",
"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.",
"bin": {
"behold": "./bin/behold.js"
},
"files": [
"bin",
"dist",
"web",
"example-writes",
"example-k8s",
"example-flux-estate",
"example-argo-estate",
"example-carve",
"example-choudoufu-estate",
"demos.json",
"AGENTS.md",
"LICENSE",
"THIRD_PARTY.md",
"licenses"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "tsx src/cli.ts",
"demo": "npm --prefix example-writes install && tsx src/cli.ts serve example-writes --local --env prod",
"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",
"smoke:ui": "tsx smoke/ui-smoke.mjs",
"tsc": "tsc --noEmit",
"test": "vitest run",
"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",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hono/node-server": "^2.0.5",
"@intentius/chant": "^0.61.0",
"@intentius/chant-k8s-client": "^0.61.0",
"@intentius/pinhole": "^0.3.8",
"hono": "^4.12.34"
},
"peerDependencies": {
"@intentius/chant-lexicon-terraform": "^0.61.0",
"@cdktf/hcl2json": "^0.21.0"
},
"peerDependenciesMeta": {
"@intentius/chant-lexicon-terraform": {
"optional": true
},
"@cdktf/hcl2json": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^26.4.1",
"esbuild": "^0.28.0",
"playwright": "^1.62.1",
"tsx": "^4.19.0",
"typescript": "^7.0.2",
"vitest": "^4.1.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/INTENTIUS/behold.git"
},
"bugs": {
"url": "https://github.com/INTENTIUS/behold/issues"
},
"homepage": "https://github.com/INTENTIUS/behold#readme"
}