@afroze9/terrastudio-cli 0.41.0 → 0.41.7
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/package.json +61 -57
package/package.json
CHANGED
|
@@ -1,57 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@afroze9/terrastudio-cli",
|
|
3
|
-
"version": "0.41.
|
|
4
|
-
"description": "CLI for TerraStudio — headless project manipulation and HCL generation",
|
|
5
|
-
"author": "afroze9
|
|
6
|
-
"license": "AGPL-3.0-only",
|
|
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
|
-
"@terrastudio/
|
|
42
|
-
"@terrastudio/
|
|
43
|
-
"@terrastudio/plugin-
|
|
44
|
-
"@terrastudio/plugin-
|
|
45
|
-
"@terrastudio/plugin-azure-
|
|
46
|
-
"@terrastudio/plugin-azure-
|
|
47
|
-
"@terrastudio/
|
|
48
|
-
"@terrastudio/
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"@types
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@afroze9/terrastudio-cli",
|
|
3
|
+
"version": "0.41.7",
|
|
4
|
+
"description": "CLI for TerraStudio — headless project manipulation and HCL generation",
|
|
5
|
+
"author": "afroze9",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/afroze9/terrastudio"
|
|
10
|
+
},
|
|
11
|
+
"private": false,
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"type": "module",
|
|
16
|
+
"bin": {
|
|
17
|
+
"tstudio": "./dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc -p tsconfig.json",
|
|
30
|
+
"bundle": "esbuild dist/cli.js --bundle --platform=node --target=node22 --outfile=bundle/cli.cjs --format=cjs --external:fsevents",
|
|
31
|
+
"package": "pnpm build && pnpm bundle && node_modules/.bin/pkg bundle/cli.cjs --targets node22-win-x64,node22-linux-x64,node22-macos-arm64,node22-macos-x64 --output bin/tstudio",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"dev": "node --loader ts-node/esm src/cli.ts"
|
|
34
|
+
},
|
|
35
|
+
"pkg": {
|
|
36
|
+
"scripts": "bundle/cli.cjs",
|
|
37
|
+
"assets": [],
|
|
38
|
+
"outputPath": "bin"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@terrastudio/core": "workspace:*",
|
|
42
|
+
"@terrastudio/platform-node": "workspace:*",
|
|
43
|
+
"@terrastudio/plugin-aws-compute": "workspace:*",
|
|
44
|
+
"@terrastudio/plugin-aws-networking": "workspace:*",
|
|
45
|
+
"@terrastudio/plugin-azure-compute": "workspace:*",
|
|
46
|
+
"@terrastudio/plugin-azure-database": "workspace:*",
|
|
47
|
+
"@terrastudio/plugin-azure-monitoring": "workspace:*",
|
|
48
|
+
"@terrastudio/plugin-azure-networking": "workspace:*",
|
|
49
|
+
"@terrastudio/plugin-azure-security": "workspace:*",
|
|
50
|
+
"@terrastudio/plugin-azure-storage": "workspace:*",
|
|
51
|
+
"@terrastudio/project": "workspace:*",
|
|
52
|
+
"@terrastudio/types": "workspace:*",
|
|
53
|
+
"commander": "^12.1.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/node": "^25.5.0",
|
|
57
|
+
"@yao-pkg/pkg": "^6.14.1",
|
|
58
|
+
"esbuild": "^0.27.4",
|
|
59
|
+
"typescript": "^5.7.0"
|
|
60
|
+
}
|
|
61
|
+
}
|