@warpgogol/forge 2.9.5 → 2.9.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/dist/bin/cli.js +0 -0
- package/package.json +194 -73
package/dist/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warpgogol/forge",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,127 +19,127 @@
|
|
|
19
19
|
"type": "git",
|
|
20
20
|
"url": "git+https://github.com/syrokomskyi/forge.git"
|
|
21
21
|
},
|
|
22
|
-
"main": "./
|
|
23
|
-
"types": "./
|
|
22
|
+
"main": "./src/index.ts",
|
|
23
|
+
"types": "./src/index.ts",
|
|
24
24
|
"bin": {
|
|
25
|
-
"forge": "
|
|
25
|
+
"forge": "bin/cli.js"
|
|
26
26
|
},
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
|
-
"types": "./
|
|
30
|
-
"default": "./
|
|
29
|
+
"types": "./src/index.ts",
|
|
30
|
+
"default": "./src/index.ts"
|
|
31
31
|
},
|
|
32
32
|
"./types": {
|
|
33
|
-
"types": "./
|
|
34
|
-
"default": "./
|
|
33
|
+
"types": "./src/types.ts",
|
|
34
|
+
"default": "./src/types.ts"
|
|
35
35
|
},
|
|
36
36
|
"./utils": {
|
|
37
|
-
"types": "./
|
|
38
|
-
"default": "./
|
|
37
|
+
"types": "./src/utils/index.ts",
|
|
38
|
+
"default": "./src/utils/index.ts"
|
|
39
39
|
},
|
|
40
40
|
"./config": {
|
|
41
|
-
"types": "./
|
|
42
|
-
"default": "./
|
|
41
|
+
"types": "./src/config/forge-config.ts",
|
|
42
|
+
"default": "./src/config/forge-config.ts"
|
|
43
43
|
},
|
|
44
44
|
"./os/core": {
|
|
45
|
-
"types": "./
|
|
46
|
-
"default": "./
|
|
45
|
+
"types": "./os/core/core.module.ts",
|
|
46
|
+
"default": "./os/core/core.module.ts"
|
|
47
47
|
},
|
|
48
48
|
"./os/compass": {
|
|
49
|
-
"types": "./
|
|
50
|
-
"default": "./
|
|
49
|
+
"types": "./os/compass/index.ts",
|
|
50
|
+
"default": "./os/compass/index.ts"
|
|
51
51
|
},
|
|
52
52
|
"./os/naming": {
|
|
53
|
-
"types": "./
|
|
54
|
-
"default": "./
|
|
53
|
+
"types": "./os/naming/index.ts",
|
|
54
|
+
"default": "./os/naming/index.ts"
|
|
55
55
|
},
|
|
56
56
|
"./os/naming-module": {
|
|
57
|
-
"types": "./
|
|
58
|
-
"default": "./
|
|
57
|
+
"types": "./os/naming/naming.module.ts",
|
|
58
|
+
"default": "./os/naming/naming.module.ts"
|
|
59
59
|
},
|
|
60
60
|
"./os/rfc": {
|
|
61
|
-
"types": "./
|
|
62
|
-
"default": "./
|
|
61
|
+
"types": "./os/rfc/index.ts",
|
|
62
|
+
"default": "./os/rfc/index.ts"
|
|
63
63
|
},
|
|
64
64
|
"./os/rfc-module": {
|
|
65
|
-
"types": "./
|
|
66
|
-
"default": "./
|
|
65
|
+
"types": "./os/rfc/rfc.module.ts",
|
|
66
|
+
"default": "./os/rfc/rfc.module.ts"
|
|
67
67
|
},
|
|
68
68
|
"./os/werkstatt": {
|
|
69
|
-
"types": "./
|
|
70
|
-
"default": "./
|
|
69
|
+
"types": "./os/werkstatt/index.ts",
|
|
70
|
+
"default": "./os/werkstatt/index.ts"
|
|
71
71
|
},
|
|
72
72
|
"./os/workflow": {
|
|
73
|
-
"types": "./
|
|
74
|
-
"default": "./
|
|
73
|
+
"types": "./os/workflow/index.ts",
|
|
74
|
+
"default": "./os/workflow/index.ts"
|
|
75
75
|
},
|
|
76
76
|
"./os/workflow-module": {
|
|
77
|
-
"types": "./
|
|
78
|
-
"default": "./
|
|
77
|
+
"types": "./os/workflow/workflow.module.ts",
|
|
78
|
+
"default": "./os/workflow/workflow.module.ts"
|
|
79
79
|
},
|
|
80
80
|
"./os/spec-module": {
|
|
81
|
-
"types": "./
|
|
82
|
-
"default": "./
|
|
81
|
+
"types": "./os/spec/spec.module.ts",
|
|
82
|
+
"default": "./os/spec/spec.module.ts"
|
|
83
83
|
},
|
|
84
84
|
"./os/adr": {
|
|
85
|
-
"types": "./
|
|
86
|
-
"default": "./
|
|
85
|
+
"types": "./os/adr/index.ts",
|
|
86
|
+
"default": "./os/adr/index.ts"
|
|
87
87
|
},
|
|
88
88
|
"./os/adr-module": {
|
|
89
|
-
"types": "./
|
|
90
|
-
"default": "./
|
|
89
|
+
"types": "./os/adr/adr.module.ts",
|
|
90
|
+
"default": "./os/adr/adr.module.ts"
|
|
91
91
|
},
|
|
92
92
|
"./os/plan": {
|
|
93
|
-
"types": "./
|
|
94
|
-
"default": "./
|
|
93
|
+
"types": "./os/plan/index.ts",
|
|
94
|
+
"default": "./os/plan/index.ts"
|
|
95
95
|
},
|
|
96
96
|
"./os/plan-module": {
|
|
97
|
-
"types": "./
|
|
98
|
-
"default": "./
|
|
97
|
+
"types": "./os/plan/plan.module.ts",
|
|
98
|
+
"default": "./os/plan/plan.module.ts"
|
|
99
99
|
},
|
|
100
100
|
"./os/audit": {
|
|
101
|
-
"types": "./
|
|
102
|
-
"default": "./
|
|
101
|
+
"types": "./os/audit/index.ts",
|
|
102
|
+
"default": "./os/audit/index.ts"
|
|
103
103
|
},
|
|
104
104
|
"./os/audit-module": {
|
|
105
|
-
"types": "./
|
|
106
|
-
"default": "./
|
|
105
|
+
"types": "./os/audit/audit.module.ts",
|
|
106
|
+
"default": "./os/audit/audit.module.ts"
|
|
107
107
|
},
|
|
108
108
|
"./os/session": {
|
|
109
|
-
"types": "./
|
|
110
|
-
"default": "./
|
|
109
|
+
"types": "./os/session/index.ts",
|
|
110
|
+
"default": "./os/session/index.ts"
|
|
111
111
|
},
|
|
112
112
|
"./os/session-module": {
|
|
113
|
-
"types": "./
|
|
114
|
-
"default": "./
|
|
113
|
+
"types": "./os/session/session.module.ts",
|
|
114
|
+
"default": "./os/session/session.module.ts"
|
|
115
115
|
},
|
|
116
116
|
"./os/mission": {
|
|
117
|
-
"types": "./
|
|
118
|
-
"default": "./
|
|
117
|
+
"types": "./os/mission/index.ts",
|
|
118
|
+
"default": "./os/mission/index.ts"
|
|
119
119
|
},
|
|
120
120
|
"./os/mission-module": {
|
|
121
|
-
"types": "./
|
|
122
|
-
"default": "./
|
|
121
|
+
"types": "./os/mission/mission.module.ts",
|
|
122
|
+
"default": "./os/mission/mission.module.ts"
|
|
123
123
|
},
|
|
124
124
|
"./os/exploration": {
|
|
125
|
-
"types": "./
|
|
126
|
-
"default": "./
|
|
125
|
+
"types": "./os/exploration/index.ts",
|
|
126
|
+
"default": "./os/exploration/index.ts"
|
|
127
127
|
},
|
|
128
128
|
"./os/exploration-module": {
|
|
129
|
-
"types": "./
|
|
130
|
-
"default": "./
|
|
129
|
+
"types": "./os/exploration/exploration.module.ts",
|
|
130
|
+
"default": "./os/exploration/exploration.module.ts"
|
|
131
131
|
},
|
|
132
132
|
"./os/notes": {
|
|
133
|
-
"types": "./
|
|
134
|
-
"default": "./
|
|
133
|
+
"types": "./os/notes/index.ts",
|
|
134
|
+
"default": "./os/notes/index.ts"
|
|
135
135
|
},
|
|
136
136
|
"./os/notes-module": {
|
|
137
|
-
"types": "./
|
|
138
|
-
"default": "./
|
|
137
|
+
"types": "./os/notes/notes.module.ts",
|
|
138
|
+
"default": "./os/notes/notes.module.ts"
|
|
139
139
|
},
|
|
140
140
|
"./os/program": {
|
|
141
|
-
"types": "./
|
|
142
|
-
"default": "./
|
|
141
|
+
"types": "./os/program/program.module.ts",
|
|
142
|
+
"default": "./os/program/program.module.ts"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
145
|
"files": [
|
|
@@ -154,6 +154,16 @@
|
|
|
154
154
|
"README.md",
|
|
155
155
|
"LICENSE"
|
|
156
156
|
],
|
|
157
|
+
"scripts": {
|
|
158
|
+
"build": "pnpm exec tsc -p tsconfig.json",
|
|
159
|
+
"build:check": "pnpm exec tsc -p tsconfig.json --noEmit",
|
|
160
|
+
"lint": "pnpm exec eslint \"src/**/*.ts\" \"os/**/*.ts\"",
|
|
161
|
+
"typecheck": "pnpm exec tsc -p tsconfig.json --noEmit",
|
|
162
|
+
"test": "vitest run --passWithNoTests",
|
|
163
|
+
"test:watch": "vitest",
|
|
164
|
+
"test:tarball:node24": "node test-fixtures/node24-consumer/smoke.mjs",
|
|
165
|
+
"prepublishOnly": "pnpm exec tsc -p tsconfig.json"
|
|
166
|
+
},
|
|
157
167
|
"dependencies": {
|
|
158
168
|
"@aws-sdk/client-s3": "^3.700.0",
|
|
159
169
|
"trash": "^10.1.1",
|
|
@@ -174,15 +184,126 @@
|
|
|
174
184
|
"node": ">=24 <25"
|
|
175
185
|
},
|
|
176
186
|
"publishConfig": {
|
|
177
|
-
"access": "public"
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
"
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
+
"access": "public",
|
|
188
|
+
"main": "./dist/src/index.js",
|
|
189
|
+
"types": "./dist/src/index.d.ts",
|
|
190
|
+
"exports": {
|
|
191
|
+
".": {
|
|
192
|
+
"types": "./dist/src/index.d.ts",
|
|
193
|
+
"default": "./dist/src/index.js"
|
|
194
|
+
},
|
|
195
|
+
"./types": {
|
|
196
|
+
"types": "./dist/src/types.d.ts",
|
|
197
|
+
"default": "./dist/src/types.js"
|
|
198
|
+
},
|
|
199
|
+
"./utils": {
|
|
200
|
+
"types": "./dist/src/utils/index.d.ts",
|
|
201
|
+
"default": "./dist/src/utils/index.js"
|
|
202
|
+
},
|
|
203
|
+
"./config": {
|
|
204
|
+
"types": "./dist/src/config/forge-config.d.ts",
|
|
205
|
+
"default": "./dist/src/config/forge-config.js"
|
|
206
|
+
},
|
|
207
|
+
"./os/core": {
|
|
208
|
+
"types": "./dist/os/core/core.module.d.ts",
|
|
209
|
+
"default": "./dist/os/core/core.module.js"
|
|
210
|
+
},
|
|
211
|
+
"./os/compass": {
|
|
212
|
+
"types": "./dist/os/compass/index.d.ts",
|
|
213
|
+
"default": "./dist/os/compass/index.js"
|
|
214
|
+
},
|
|
215
|
+
"./os/naming": {
|
|
216
|
+
"types": "./dist/os/naming/index.d.ts",
|
|
217
|
+
"default": "./dist/os/naming/index.js"
|
|
218
|
+
},
|
|
219
|
+
"./os/naming-module": {
|
|
220
|
+
"types": "./dist/os/naming/naming.module.d.ts",
|
|
221
|
+
"default": "./dist/os/naming/naming.module.js"
|
|
222
|
+
},
|
|
223
|
+
"./os/rfc": {
|
|
224
|
+
"types": "./dist/os/rfc/index.d.ts",
|
|
225
|
+
"default": "./dist/os/rfc/index.js"
|
|
226
|
+
},
|
|
227
|
+
"./os/rfc-module": {
|
|
228
|
+
"types": "./dist/os/rfc/rfc.module.d.ts",
|
|
229
|
+
"default": "./dist/os/rfc/rfc.module.js"
|
|
230
|
+
},
|
|
231
|
+
"./os/werkstatt": {
|
|
232
|
+
"types": "./dist/os/werkstatt/index.d.ts",
|
|
233
|
+
"default": "./dist/os/werkstatt/index.js"
|
|
234
|
+
},
|
|
235
|
+
"./os/workflow": {
|
|
236
|
+
"types": "./dist/os/workflow/index.d.ts",
|
|
237
|
+
"default": "./dist/os/workflow/index.js"
|
|
238
|
+
},
|
|
239
|
+
"./os/workflow-module": {
|
|
240
|
+
"types": "./dist/os/workflow/workflow.module.d.ts",
|
|
241
|
+
"default": "./dist/os/workflow/workflow.module.js"
|
|
242
|
+
},
|
|
243
|
+
"./os/spec-module": {
|
|
244
|
+
"types": "./dist/os/spec/spec.module.d.ts",
|
|
245
|
+
"default": "./dist/os/spec/spec.module.js"
|
|
246
|
+
},
|
|
247
|
+
"./os/adr": {
|
|
248
|
+
"types": "./dist/os/adr/index.d.ts",
|
|
249
|
+
"default": "./dist/os/adr/index.js"
|
|
250
|
+
},
|
|
251
|
+
"./os/adr-module": {
|
|
252
|
+
"types": "./dist/os/adr/adr.module.d.ts",
|
|
253
|
+
"default": "./dist/os/adr/adr.module.js"
|
|
254
|
+
},
|
|
255
|
+
"./os/plan": {
|
|
256
|
+
"types": "./dist/os/plan/index.d.ts",
|
|
257
|
+
"default": "./dist/os/plan/index.js"
|
|
258
|
+
},
|
|
259
|
+
"./os/plan-module": {
|
|
260
|
+
"types": "./dist/os/plan/plan.module.d.ts",
|
|
261
|
+
"default": "./dist/os/plan/plan.module.js"
|
|
262
|
+
},
|
|
263
|
+
"./os/audit": {
|
|
264
|
+
"types": "./dist/os/audit/index.d.ts",
|
|
265
|
+
"default": "./dist/os/audit/index.js"
|
|
266
|
+
},
|
|
267
|
+
"./os/audit-module": {
|
|
268
|
+
"types": "./dist/os/audit/audit.module.d.ts",
|
|
269
|
+
"default": "./dist/os/audit/audit.module.js"
|
|
270
|
+
},
|
|
271
|
+
"./os/session": {
|
|
272
|
+
"types": "./dist/os/session/index.d.ts",
|
|
273
|
+
"default": "./dist/os/session/index.js"
|
|
274
|
+
},
|
|
275
|
+
"./os/session-module": {
|
|
276
|
+
"types": "./dist/os/session/session.module.d.ts",
|
|
277
|
+
"default": "./dist/os/session/session.module.js"
|
|
278
|
+
},
|
|
279
|
+
"./os/mission": {
|
|
280
|
+
"types": "./dist/os/mission/index.d.ts",
|
|
281
|
+
"default": "./dist/os/mission/index.js"
|
|
282
|
+
},
|
|
283
|
+
"./os/mission-module": {
|
|
284
|
+
"types": "./dist/os/mission/mission.module.d.ts",
|
|
285
|
+
"default": "./dist/os/mission/mission.module.js"
|
|
286
|
+
},
|
|
287
|
+
"./os/exploration": {
|
|
288
|
+
"types": "./dist/os/exploration/index.d.ts",
|
|
289
|
+
"default": "./dist/os/exploration/index.js"
|
|
290
|
+
},
|
|
291
|
+
"./os/exploration-module": {
|
|
292
|
+
"types": "./dist/os/exploration/exploration.module.d.ts",
|
|
293
|
+
"default": "./dist/os/exploration/exploration.module.js"
|
|
294
|
+
},
|
|
295
|
+
"./os/notes": {
|
|
296
|
+
"types": "./dist/os/notes/index.d.ts",
|
|
297
|
+
"default": "./dist/os/notes/index.js"
|
|
298
|
+
},
|
|
299
|
+
"./os/notes-module": {
|
|
300
|
+
"types": "./dist/os/notes/notes.module.d.ts",
|
|
301
|
+
"default": "./dist/os/notes/notes.module.js"
|
|
302
|
+
},
|
|
303
|
+
"./os/program": {
|
|
304
|
+
"types": "./dist/os/program/program.module.d.ts",
|
|
305
|
+
"default": "./dist/os/program/program.module.js"
|
|
306
|
+
}
|
|
307
|
+
}
|
|
187
308
|
}
|
|
188
|
-
}
|
|
309
|
+
}
|