@clarity-tools/cli 0.1.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/README.md +158 -0
- package/dist/index.js +2610 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clarity-tools/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Generate architecture diagrams from Infrastructure-as-Code files (Docker Compose, Helm charts)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"iac-diagrams": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": ["dist", "README.md"],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsup",
|
|
12
|
+
"dev": "bun run src/index.ts",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"commander": "^12.1.0",
|
|
17
|
+
"elkjs": "0.11.0",
|
|
18
|
+
"puppeteer": "^24.0.0",
|
|
19
|
+
"yaml": "^2.6.1",
|
|
20
|
+
"zod": "^3.24.1"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@clarity-tools/core": "workspace:*",
|
|
24
|
+
"tsup": "^8.0.0",
|
|
25
|
+
"typescript": "^5.7.2"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/BrennerSpear/colombo"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"docker-compose",
|
|
36
|
+
"helm",
|
|
37
|
+
"architecture",
|
|
38
|
+
"diagrams",
|
|
39
|
+
"excalidraw",
|
|
40
|
+
"infrastructure-as-code",
|
|
41
|
+
"iac"
|
|
42
|
+
],
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
}
|
|
47
|
+
}
|