@iacmp/cli 1.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/LICENSE +21 -0
- package/bin/run.js +73 -0
- package/dist/chat.js +4068 -0
- package/dist/commands/ai.js +3985 -0
- package/dist/commands/audit-all.js +1039 -0
- package/dist/commands/audit-dr.js +351 -0
- package/dist/commands/audit-ha.js +375 -0
- package/dist/commands/audit-improvements.js +373 -0
- package/dist/commands/audit-security.js +351 -0
- package/dist/commands/dashboard.js +417 -0
- package/dist/commands/deploy.js +188 -0
- package/dist/commands/destroy.js +194 -0
- package/dist/commands/diagram.js +896 -0
- package/dist/commands/diff.js +4420 -0
- package/dist/commands/doctor.js +191 -0
- package/dist/commands/init.js +507 -0
- package/dist/commands/ls.js +75 -0
- package/dist/commands/registry.js +170 -0
- package/dist/commands/registry.json +29 -0
- package/dist/commands/synth.js +4458 -0
- package/dist/commands/watch.js +133 -0
- package/dist/index.js +30 -0
- package/oclif.manifest.json +727 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iacmp/cli",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "IaC Multi Plataforma — CLI inteligente para AWS, Azure, GCP e Terraform com geração de stacks via IA",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"iac",
|
|
7
|
+
"cli",
|
|
8
|
+
"aws",
|
|
9
|
+
"azure",
|
|
10
|
+
"gcp",
|
|
11
|
+
"terraform",
|
|
12
|
+
"ai",
|
|
13
|
+
"devops",
|
|
14
|
+
"infrastructure",
|
|
15
|
+
"cdk"
|
|
16
|
+
],
|
|
17
|
+
"author": "Claudio Melo",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/Claudio-Fontes/iacmp"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/Claudio-Fontes/iacmp#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/Claudio-Fontes/iacmp/issues"
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"iacmp": "./bin/run.js"
|
|
29
|
+
},
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"files": [
|
|
32
|
+
"/bin/run.js",
|
|
33
|
+
"/dist",
|
|
34
|
+
"/oclif.manifest.json",
|
|
35
|
+
"/LICENSE"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"manifest": "oclif manifest",
|
|
40
|
+
"prepack": "cp ../../LICENSE ./LICENSE && tsup && oclif manifest",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"clean": "rm -rf dist oclif.manifest.json",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"test": "jest"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@anthropic-ai/sdk": "^0.30.0",
|
|
48
|
+
"@iacmp/core": "^1.1.0",
|
|
49
|
+
"@oclif/core": "^4.0.0",
|
|
50
|
+
"chalk": "^4.1.2",
|
|
51
|
+
"diff": "^5.2.0",
|
|
52
|
+
"ora": "^5.4.1"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@iacmp/ai": "*",
|
|
56
|
+
"@iacmp/dashboard": "*",
|
|
57
|
+
"@iacmp/plugin-sdk": "*",
|
|
58
|
+
"@iacmp/provider-aws": "*",
|
|
59
|
+
"@iacmp/provider-azure": "*",
|
|
60
|
+
"@iacmp/provider-gcp": "*",
|
|
61
|
+
"@iacmp/provider-terraform": "*",
|
|
62
|
+
"@iacmp/registry": "*",
|
|
63
|
+
"@oclif/dev-cli": "^1.26.10",
|
|
64
|
+
"@types/diff": "^5.2.1",
|
|
65
|
+
"@types/jest": "^29",
|
|
66
|
+
"@types/node": "^20",
|
|
67
|
+
"jest": "^29",
|
|
68
|
+
"oclif": "^4.0.0",
|
|
69
|
+
"ts-jest": "^29",
|
|
70
|
+
"tsup": "^8.0.0",
|
|
71
|
+
"typescript": "^5.5.0"
|
|
72
|
+
},
|
|
73
|
+
"oclif": {
|
|
74
|
+
"bin": "iacmp",
|
|
75
|
+
"dirname": "iacmp",
|
|
76
|
+
"commands": "./dist/commands",
|
|
77
|
+
"plugins": []
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=20.0.0"
|
|
81
|
+
},
|
|
82
|
+
"jest": {
|
|
83
|
+
"preset": "ts-jest",
|
|
84
|
+
"testEnvironment": "node",
|
|
85
|
+
"testMatch": [
|
|
86
|
+
"**/test/**/*.test.ts"
|
|
87
|
+
],
|
|
88
|
+
"testTimeout": 30000,
|
|
89
|
+
"globals": {
|
|
90
|
+
"ts-jest": {
|
|
91
|
+
"tsconfig": "tsconfig.test.json"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|