@powerlines/plugin-babel 0.12.239 → 0.12.240
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 +48 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-babel",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.240",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"./package.json": "./package.json"
|
|
78
78
|
},
|
|
79
|
+
"types": "./dist/index.d.cts",
|
|
79
80
|
"typings": "dist/index.d.mts",
|
|
80
81
|
"files": ["dist/**/*"],
|
|
81
82
|
"keywords": ["babel", "powerlines", "storm-software", "powerlines-plugin"],
|
|
@@ -91,20 +92,57 @@
|
|
|
91
92
|
"@babel/plugin-syntax-typescript": "^7.28.6",
|
|
92
93
|
"@babel/types": "^7.28.6",
|
|
93
94
|
"@storm-software/config-tools": "^1.189.0",
|
|
94
|
-
"@stryke/fs": "^0.33.
|
|
95
|
-
"@stryke/path": "^0.26.
|
|
96
|
-
"@stryke/type-checks": "^0.5.
|
|
97
|
-
"@stryke/types": "^0.10.
|
|
95
|
+
"@stryke/fs": "^0.33.38",
|
|
96
|
+
"@stryke/path": "^0.26.2",
|
|
97
|
+
"@stryke/type-checks": "^0.5.22",
|
|
98
|
+
"@stryke/types": "^0.10.36",
|
|
98
99
|
"chalk": "5.6.2",
|
|
99
100
|
"defu": "^6.1.4",
|
|
100
101
|
"jiti": "^2.6.1",
|
|
101
|
-
"powerlines": "^0.37.
|
|
102
|
+
"powerlines": "^0.37.102"
|
|
102
103
|
},
|
|
103
104
|
"devDependencies": {
|
|
104
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
105
|
+
"@powerlines/plugin-plugin": "^0.12.182",
|
|
105
106
|
"@types/node": "^24.10.9"
|
|
106
107
|
},
|
|
107
|
-
"publishConfig": {
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
"publishConfig": {
|
|
109
|
+
"access": "public",
|
|
110
|
+
"exports": {
|
|
111
|
+
".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
|
|
112
|
+
"./helpers": {
|
|
113
|
+
"require": "./dist/helpers/index.cjs",
|
|
114
|
+
"import": "./dist/helpers/index.mjs"
|
|
115
|
+
},
|
|
116
|
+
"./helpers/ast-utils": {
|
|
117
|
+
"require": "./dist/helpers/ast-utils.cjs",
|
|
118
|
+
"import": "./dist/helpers/ast-utils.mjs"
|
|
119
|
+
},
|
|
120
|
+
"./helpers/create-plugin": {
|
|
121
|
+
"require": "./dist/helpers/create-plugin.cjs",
|
|
122
|
+
"import": "./dist/helpers/create-plugin.mjs"
|
|
123
|
+
},
|
|
124
|
+
"./helpers/filters": {
|
|
125
|
+
"require": "./dist/helpers/filters.cjs",
|
|
126
|
+
"import": "./dist/helpers/filters.mjs"
|
|
127
|
+
},
|
|
128
|
+
"./helpers/module-helpers": {
|
|
129
|
+
"require": "./dist/helpers/module-helpers.cjs",
|
|
130
|
+
"import": "./dist/helpers/module-helpers.mjs"
|
|
131
|
+
},
|
|
132
|
+
"./helpers/options": {
|
|
133
|
+
"require": "./dist/helpers/options.cjs",
|
|
134
|
+
"import": "./dist/helpers/options.mjs"
|
|
135
|
+
},
|
|
136
|
+
"./types": {
|
|
137
|
+
"require": "./dist/types/index.cjs",
|
|
138
|
+
"import": "./dist/types/index.mjs"
|
|
139
|
+
},
|
|
140
|
+
"./types/plugin": {
|
|
141
|
+
"require": "./dist/types/plugin.cjs",
|
|
142
|
+
"import": "./dist/types/plugin.mjs"
|
|
143
|
+
},
|
|
144
|
+
"./package.json": "./package.json"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"gitHead": "796dc594db03737a22f52bb6892cb1feea9509a6"
|
|
110
148
|
}
|