@warpgogol/forge 2.14.0 → 2.16.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/package.json +136 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warpgogol/forge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -148,6 +148,7 @@
|
|
|
148
148
|
},
|
|
149
149
|
"files": [
|
|
150
150
|
"bin/",
|
|
151
|
+
"dist/",
|
|
151
152
|
"skills/",
|
|
152
153
|
"profiles/",
|
|
153
154
|
"src/",
|
|
@@ -167,26 +168,153 @@
|
|
|
167
168
|
"test:tarball:node24": "node test-fixtures/node24-consumer/smoke.mjs"
|
|
168
169
|
},
|
|
169
170
|
"dependencies": {
|
|
170
|
-
"@aws-sdk/client-s3": "^3.
|
|
171
|
+
"@aws-sdk/client-s3": "^3.1116.0",
|
|
171
172
|
"picomatch": "^4.0.5",
|
|
172
173
|
"trash": "^10.1.1",
|
|
173
174
|
"yaml": "^2.9.0",
|
|
174
175
|
"zod": "^4.4.3"
|
|
175
176
|
},
|
|
176
177
|
"devDependencies": {
|
|
177
|
-
"@types/node": "^
|
|
178
|
-
"@types/picomatch": "^4.0.
|
|
179
|
-
"eslint": "^10.
|
|
178
|
+
"@types/node": "^26.2.0",
|
|
179
|
+
"@types/picomatch": "^4.0.3",
|
|
180
|
+
"eslint": "^10.9.0",
|
|
180
181
|
"fast-check": "^4.9.0",
|
|
181
182
|
"typescript": "^6.0.3",
|
|
182
|
-
"typescript-eslint": "8.
|
|
183
|
-
"vitest": "^4.1.
|
|
183
|
+
"typescript-eslint": "8.68.0",
|
|
184
|
+
"vitest": "^4.1.11"
|
|
184
185
|
},
|
|
185
186
|
"engines": {
|
|
186
187
|
"node": ">=24 <25"
|
|
187
188
|
},
|
|
188
189
|
"publishConfig": {
|
|
189
|
-
"access": "public"
|
|
190
|
+
"access": "public",
|
|
191
|
+
"main": "./dist/src/index.js",
|
|
192
|
+
"types": "./dist/src/index.d.ts",
|
|
193
|
+
"bin": {
|
|
194
|
+
"forge": "./dist/bin/cli.js"
|
|
195
|
+
},
|
|
196
|
+
"exports": {
|
|
197
|
+
".": {
|
|
198
|
+
"types": "./dist/src/index.d.ts",
|
|
199
|
+
"default": "./dist/src/index.js"
|
|
200
|
+
},
|
|
201
|
+
"./types": {
|
|
202
|
+
"types": "./dist/src/types.d.ts",
|
|
203
|
+
"default": "./dist/src/types.js"
|
|
204
|
+
},
|
|
205
|
+
"./utils": {
|
|
206
|
+
"types": "./dist/src/utils/index.d.ts",
|
|
207
|
+
"default": "./dist/src/utils/index.js"
|
|
208
|
+
},
|
|
209
|
+
"./config": {
|
|
210
|
+
"types": "./dist/src/config/forge-config.d.ts",
|
|
211
|
+
"default": "./dist/src/config/forge-config.js"
|
|
212
|
+
},
|
|
213
|
+
"./os/core": {
|
|
214
|
+
"types": "./dist/os/core/core.module.d.ts",
|
|
215
|
+
"default": "./dist/os/core/core.module.js"
|
|
216
|
+
},
|
|
217
|
+
"./os/compass": {
|
|
218
|
+
"types": "./dist/os/compass/index.d.ts",
|
|
219
|
+
"default": "./dist/os/compass/index.js"
|
|
220
|
+
},
|
|
221
|
+
"./os/naming": {
|
|
222
|
+
"types": "./dist/os/naming/index.d.ts",
|
|
223
|
+
"default": "./dist/os/naming/index.js"
|
|
224
|
+
},
|
|
225
|
+
"./os/naming-module": {
|
|
226
|
+
"types": "./dist/os/naming/naming.module.d.ts",
|
|
227
|
+
"default": "./dist/os/naming/naming.module.js"
|
|
228
|
+
},
|
|
229
|
+
"./os/rfc": {
|
|
230
|
+
"types": "./dist/os/rfc/index.d.ts",
|
|
231
|
+
"default": "./dist/os/rfc/index.js"
|
|
232
|
+
},
|
|
233
|
+
"./os/rfc-module": {
|
|
234
|
+
"types": "./dist/os/rfc/rfc.module.d.ts",
|
|
235
|
+
"default": "./dist/os/rfc/rfc.module.js"
|
|
236
|
+
},
|
|
237
|
+
"./os/werkstatt": {
|
|
238
|
+
"types": "./dist/os/werkstatt/index.d.ts",
|
|
239
|
+
"default": "./dist/os/werkstatt/index.js"
|
|
240
|
+
},
|
|
241
|
+
"./os/workflow": {
|
|
242
|
+
"types": "./dist/os/workflow/index.d.ts",
|
|
243
|
+
"default": "./dist/os/workflow/index.js"
|
|
244
|
+
},
|
|
245
|
+
"./os/workflow-module": {
|
|
246
|
+
"types": "./dist/os/workflow/workflow.module.d.ts",
|
|
247
|
+
"default": "./dist/os/workflow/workflow.module.js"
|
|
248
|
+
},
|
|
249
|
+
"./os/spec-module": {
|
|
250
|
+
"types": "./dist/os/spec/spec.module.d.ts",
|
|
251
|
+
"default": "./dist/os/spec/spec.module.js"
|
|
252
|
+
},
|
|
253
|
+
"./os/adr": {
|
|
254
|
+
"types": "./dist/os/adr/index.d.ts",
|
|
255
|
+
"default": "./dist/os/adr/index.js"
|
|
256
|
+
},
|
|
257
|
+
"./os/adr-module": {
|
|
258
|
+
"types": "./dist/os/adr/adr.module.d.ts",
|
|
259
|
+
"default": "./dist/os/adr/adr.module.js"
|
|
260
|
+
},
|
|
261
|
+
"./os/plan": {
|
|
262
|
+
"types": "./dist/os/plan/index.d.ts",
|
|
263
|
+
"default": "./dist/os/plan/index.js"
|
|
264
|
+
},
|
|
265
|
+
"./os/plan-module": {
|
|
266
|
+
"types": "./dist/os/plan/plan.module.d.ts",
|
|
267
|
+
"default": "./dist/os/plan/plan.module.js"
|
|
268
|
+
},
|
|
269
|
+
"./os/audit": {
|
|
270
|
+
"types": "./dist/os/audit/index.d.ts",
|
|
271
|
+
"default": "./dist/os/audit/index.js"
|
|
272
|
+
},
|
|
273
|
+
"./os/audit-module": {
|
|
274
|
+
"types": "./dist/os/audit/audit.module.d.ts",
|
|
275
|
+
"default": "./dist/os/audit/audit.module.js"
|
|
276
|
+
},
|
|
277
|
+
"./os/session": {
|
|
278
|
+
"types": "./dist/os/session/index.d.ts",
|
|
279
|
+
"default": "./dist/os/session/index.js"
|
|
280
|
+
},
|
|
281
|
+
"./os/session-module": {
|
|
282
|
+
"types": "./dist/os/session/session.module.d.ts",
|
|
283
|
+
"default": "./dist/os/session/session.module.js"
|
|
284
|
+
},
|
|
285
|
+
"./os/mission": {
|
|
286
|
+
"types": "./dist/os/mission/index.d.ts",
|
|
287
|
+
"default": "./dist/os/mission/index.js"
|
|
288
|
+
},
|
|
289
|
+
"./os/mission-module": {
|
|
290
|
+
"types": "./dist/os/mission/mission.module.d.ts",
|
|
291
|
+
"default": "./dist/os/mission/mission.module.js"
|
|
292
|
+
},
|
|
293
|
+
"./os/exploration": {
|
|
294
|
+
"types": "./dist/os/exploration/index.d.ts",
|
|
295
|
+
"default": "./dist/os/exploration/index.js"
|
|
296
|
+
},
|
|
297
|
+
"./os/exploration-module": {
|
|
298
|
+
"types": "./dist/os/exploration/exploration.module.d.ts",
|
|
299
|
+
"default": "./dist/os/exploration/exploration.module.js"
|
|
300
|
+
},
|
|
301
|
+
"./os/notes": {
|
|
302
|
+
"types": "./dist/os/notes/index.d.ts",
|
|
303
|
+
"default": "./dist/os/notes/index.js"
|
|
304
|
+
},
|
|
305
|
+
"./os/notes-module": {
|
|
306
|
+
"types": "./dist/os/notes/notes.module.d.ts",
|
|
307
|
+
"default": "./dist/os/notes/notes.module.js"
|
|
308
|
+
},
|
|
309
|
+
"./os/program": {
|
|
310
|
+
"types": "./dist/os/program/program.module.d.ts",
|
|
311
|
+
"default": "./dist/os/program/program.module.js"
|
|
312
|
+
},
|
|
313
|
+
"./os/plugin": {
|
|
314
|
+
"types": "./dist/os/plugin/plugin.module.d.ts",
|
|
315
|
+
"default": "./dist/os/plugin/plugin.module.js"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
190
318
|
},
|
|
191
319
|
"packageManager": "pnpm@11.10.0"
|
|
192
320
|
}
|