@powerlines/plugin-terraform 0.1.65 → 0.1.68
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 +23 -76
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-terraform",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.68",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Powerlines plugin to deploy infrastructure using Terraform.",
|
|
6
6
|
"keywords": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "github",
|
|
19
19
|
"url": "https://github.com/storm-software/powerlines.git",
|
|
20
|
-
"directory": "packages/plugin-terraform"
|
|
20
|
+
"directory": "packages/plugins/plugin-terraform"
|
|
21
21
|
},
|
|
22
22
|
"funding": {
|
|
23
23
|
"type": "github",
|
|
@@ -45,77 +45,24 @@
|
|
|
45
45
|
],
|
|
46
46
|
"type": "module",
|
|
47
47
|
"exports": {
|
|
48
|
-
".": {
|
|
49
|
-
"require": {
|
|
50
|
-
"types": "./dist/index.d.cts",
|
|
51
|
-
"default": "./dist/index.cjs"
|
|
52
|
-
},
|
|
53
|
-
"import": {
|
|
54
|
-
"types": "./dist/index.d.mts",
|
|
55
|
-
"default": "./dist/index.mjs"
|
|
56
|
-
},
|
|
57
|
-
"default": {
|
|
58
|
-
"types": "./dist/index.d.mts",
|
|
59
|
-
"default": "./dist/index.mjs"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
"./package.json": "./package.json",
|
|
48
|
+
".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" },
|
|
63
49
|
"./types": {
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
"default": "./dist/types/index.cjs"
|
|
67
|
-
},
|
|
68
|
-
"import": {
|
|
69
|
-
"types": "./dist/types/index.d.mts",
|
|
70
|
-
"default": "./dist/types/index.mjs"
|
|
71
|
-
},
|
|
72
|
-
"default": {
|
|
73
|
-
"types": "./dist/types/index.d.mts",
|
|
74
|
-
"default": "./dist/types/index.mjs"
|
|
75
|
-
}
|
|
50
|
+
"import": "./dist/types/index.mjs",
|
|
51
|
+
"require": "./dist/types/index.cjs"
|
|
76
52
|
},
|
|
77
53
|
"./types/_internal": {
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
"default": "./dist/types/_internal.cjs"
|
|
81
|
-
},
|
|
82
|
-
"import": {
|
|
83
|
-
"types": "./dist/types/_internal.d.mts",
|
|
84
|
-
"default": "./dist/types/_internal.mjs"
|
|
85
|
-
},
|
|
86
|
-
"default": {
|
|
87
|
-
"types": "./dist/types/_internal.d.mts",
|
|
88
|
-
"default": "./dist/types/_internal.mjs"
|
|
89
|
-
}
|
|
54
|
+
"import": "./dist/types/_internal.mjs",
|
|
55
|
+
"require": "./dist/types/_internal.cjs"
|
|
90
56
|
},
|
|
91
57
|
"./types/plugin": {
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
"default": "./dist/types/plugin.cjs"
|
|
95
|
-
},
|
|
96
|
-
"import": {
|
|
97
|
-
"types": "./dist/types/plugin.d.mts",
|
|
98
|
-
"default": "./dist/types/plugin.mjs"
|
|
99
|
-
},
|
|
100
|
-
"default": {
|
|
101
|
-
"types": "./dist/types/plugin.d.mts",
|
|
102
|
-
"default": "./dist/types/plugin.mjs"
|
|
103
|
-
}
|
|
58
|
+
"import": "./dist/types/plugin.mjs",
|
|
59
|
+
"require": "./dist/types/plugin.cjs"
|
|
104
60
|
},
|
|
105
61
|
"./types/terraform": {
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"import": {
|
|
111
|
-
"types": "./dist/types/terraform.d.mts",
|
|
112
|
-
"default": "./dist/types/terraform.mjs"
|
|
113
|
-
},
|
|
114
|
-
"default": {
|
|
115
|
-
"types": "./dist/types/terraform.d.mts",
|
|
116
|
-
"default": "./dist/types/terraform.mjs"
|
|
117
|
-
}
|
|
118
|
-
}
|
|
62
|
+
"import": "./dist/types/terraform.mjs",
|
|
63
|
+
"require": "./dist/types/terraform.cjs"
|
|
64
|
+
},
|
|
65
|
+
"./package.json": "./package.json"
|
|
119
66
|
},
|
|
120
67
|
"main": "./dist/index.cjs",
|
|
121
68
|
"module": "./dist/index.mjs",
|
|
@@ -123,22 +70,22 @@
|
|
|
123
70
|
"typings": "dist/index.d.mts",
|
|
124
71
|
"files": ["dist/**/*"],
|
|
125
72
|
"dependencies": {
|
|
126
|
-
"@stryke/fs": "^0.33.
|
|
127
|
-
"@stryke/helpers": "^0.10.
|
|
128
|
-
"@stryke/path": "^0.
|
|
129
|
-
"@stryke/string-format": "^0.17.
|
|
130
|
-
"@stryke/type-checks": "^0.6.
|
|
131
|
-
"@stryke/types": "^0.12.
|
|
73
|
+
"@stryke/fs": "^0.33.75",
|
|
74
|
+
"@stryke/helpers": "^0.10.15",
|
|
75
|
+
"@stryke/path": "^0.29.2",
|
|
76
|
+
"@stryke/string-format": "^0.17.17",
|
|
77
|
+
"@stryke/type-checks": "^0.6.8",
|
|
78
|
+
"@stryke/types": "^0.12.3",
|
|
132
79
|
"defu": "^6.1.7",
|
|
133
80
|
"execa": "^9.6.1",
|
|
134
|
-
"powerlines": "^0.47.
|
|
81
|
+
"powerlines": "^0.47.7",
|
|
135
82
|
"shelljs": "^0.10.0",
|
|
136
83
|
"typescript": "^6.0.3"
|
|
137
84
|
},
|
|
138
85
|
"devDependencies": {
|
|
139
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
140
|
-
"@types/node": "^25.
|
|
86
|
+
"@powerlines/plugin-plugin": "^0.12.419",
|
|
87
|
+
"@types/node": "^25.7.0"
|
|
141
88
|
},
|
|
142
89
|
"publishConfig": { "access": "public" },
|
|
143
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "3c5c701e16af74006dd70b965009d41eb22ace2a"
|
|
144
91
|
}
|