-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "tf-module-generator",
"version": "1.0.1",
"description": "OpenClaw skill that automatically generates Terraform modules from existing cloud infrastructure resources with intelligent resource detection and best-practice code formatting.",
"main": "scripts/main.js",
"bin": {
"tf-module-generator": "./scripts/main.js"
},
"scripts": {
"test": "node scripts/validator.js --test",
"lint": "eslint scripts/"
},
"keywords": [
"openclaw",
"terraform",
"cloud",
"aws",
"azure",
"gcp",
"infrastructure",
"iac"
],
"author": "OpenClaw Community",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1505.0",
"@azure/arm-resources": "^4.0.0",
"@azure/identity": "^3.0.0",
"googleapis": "^116.0.0",
"commander": "^11.0.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.5",
"fs-extra": "^11.0.0",
"ejs": "^3.1.9"
},
"devDependencies": {
"eslint": "^8.45.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openclaw/skill-tf-module-generator"
}
}