@atomicsolutions/proton5-cli 5.0.1
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/README.md +590 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +5 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/config/add.d.ts +14 -0
- package/dist/commands/config/add.js +122 -0
- package/dist/commands/config/edit.d.ts +15 -0
- package/dist/commands/config/edit.js +63 -0
- package/dist/commands/config/list.d.ts +6 -0
- package/dist/commands/config/list.js +31 -0
- package/dist/commands/config/remove.d.ts +9 -0
- package/dist/commands/config/remove.js +35 -0
- package/dist/commands/connect.d.ts +9 -0
- package/dist/commands/connect.js +41 -0
- package/dist/commands/disconnect.d.ts +9 -0
- package/dist/commands/disconnect.js +30 -0
- package/dist/commands/runner/list-run.d.ts +6 -0
- package/dist/commands/runner/list-run.js +71 -0
- package/dist/commands/runner/status.d.ts +6 -0
- package/dist/commands/runner/status.js +24 -0
- package/dist/commands/runner/stop-run.d.ts +9 -0
- package/dist/commands/runner/stop-run.js +34 -0
- package/dist/commands/settings/index.d.ts +6 -0
- package/dist/commands/settings/index.js +25 -0
- package/dist/commands/settings/set.d.ts +10 -0
- package/dist/commands/settings/set.js +39 -0
- package/dist/commands/settings/unset.d.ts +10 -0
- package/dist/commands/settings/unset.js +35 -0
- package/dist/core/fileSystem/index.d.ts +10 -0
- package/dist/core/fileSystem/index.js +107 -0
- package/dist/core/manager/index.d.ts +31 -0
- package/dist/core/manager/index.js +287 -0
- package/dist/core/proton/api.d.ts +7 -0
- package/dist/core/proton/api.js +122 -0
- package/dist/core/proton/maven.d.ts +5 -0
- package/dist/core/proton/maven.js +74 -0
- package/dist/core/proton/npm.d.ts +1 -0
- package/dist/core/proton/npm.js +22 -0
- package/dist/core/proton/playwright.d.ts +5 -0
- package/dist/core/proton/playwright.js +47 -0
- package/dist/core/proton/pyTest.d.ts +5 -0
- package/dist/core/proton/pyTest.js +52 -0
- package/dist/core/proton/vbs.d.ts +5 -0
- package/dist/core/proton/vbs.js +46 -0
- package/dist/core/runner/index.d.ts +16 -0
- package/dist/core/runner/index.js +76 -0
- package/dist/core/services/api.d.ts +2 -0
- package/dist/core/services/api.js +20 -0
- package/dist/core/socket/index.d.ts +2 -0
- package/dist/core/socket/index.js +99 -0
- package/dist/core/store/index.d.ts +14 -0
- package/dist/core/store/index.js +212 -0
- package/dist/core/system/index.d.ts +12 -0
- package/dist/core/system/index.js +48 -0
- package/dist/daemon/index.d.ts +1 -0
- package/dist/daemon/index.js +5 -0
- package/dist/daemon/server.d.ts +1 -0
- package/dist/daemon/server.js +40 -0
- package/dist/daemon/state.d.ts +7 -0
- package/dist/daemon/state.js +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/ipc/client.d.ts +1 -0
- package/dist/ipc/client.js +16 -0
- package/dist/ipc/ensureDaemon.d.ts +1 -0
- package/dist/ipc/ensureDaemon.js +42 -0
- package/dist/ipc/protocol.d.ts +14 -0
- package/dist/ipc/protocol.js +1 -0
- package/dist/shared/constants.d.ts +4 -0
- package/dist/shared/constants.js +4 -0
- package/dist/shared/socketPath.d.ts +1 -0
- package/dist/shared/socketPath.js +5 -0
- package/dist/shared/types.d.ts +130 -0
- package/dist/shared/types.js +1 -0
- package/oclif.manifest.json +409 -0
- package/package.json +86 -0
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"connect": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {
|
|
6
|
+
"name": {
|
|
7
|
+
"name": "name"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"description": "Connect to a Proton server using a saved configuration",
|
|
11
|
+
"examples": [
|
|
12
|
+
"<%= config.bin %> <%= command.id %>"
|
|
13
|
+
],
|
|
14
|
+
"flags": {},
|
|
15
|
+
"hasDynamicHelp": false,
|
|
16
|
+
"hiddenAliases": [],
|
|
17
|
+
"id": "connect",
|
|
18
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
19
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
20
|
+
"pluginType": "core",
|
|
21
|
+
"strict": true,
|
|
22
|
+
"enableJsonFlag": false,
|
|
23
|
+
"isESM": true,
|
|
24
|
+
"relativePath": [
|
|
25
|
+
"dist",
|
|
26
|
+
"commands",
|
|
27
|
+
"connect.js"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"disconnect": {
|
|
31
|
+
"aliases": [],
|
|
32
|
+
"args": {
|
|
33
|
+
"name": {
|
|
34
|
+
"name": "name"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"description": "Disconnect from a Proton server",
|
|
38
|
+
"examples": [
|
|
39
|
+
"<%= config.bin %> <%= command.id %>"
|
|
40
|
+
],
|
|
41
|
+
"flags": {},
|
|
42
|
+
"hasDynamicHelp": false,
|
|
43
|
+
"hiddenAliases": [],
|
|
44
|
+
"id": "disconnect",
|
|
45
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
46
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
47
|
+
"pluginType": "core",
|
|
48
|
+
"strict": true,
|
|
49
|
+
"enableJsonFlag": false,
|
|
50
|
+
"isESM": true,
|
|
51
|
+
"relativePath": [
|
|
52
|
+
"dist",
|
|
53
|
+
"commands",
|
|
54
|
+
"disconnect.js"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"config:add": {
|
|
58
|
+
"aliases": [],
|
|
59
|
+
"args": {},
|
|
60
|
+
"description": "Add a new Proton server connection",
|
|
61
|
+
"examples": [
|
|
62
|
+
"<%= config.bin %> <%= command.id %>"
|
|
63
|
+
],
|
|
64
|
+
"flags": {
|
|
65
|
+
"name": {
|
|
66
|
+
"description": "Nome da configuração",
|
|
67
|
+
"name": "name",
|
|
68
|
+
"required": false,
|
|
69
|
+
"hasDynamicHelp": false,
|
|
70
|
+
"multiple": false,
|
|
71
|
+
"type": "option"
|
|
72
|
+
},
|
|
73
|
+
"server": {
|
|
74
|
+
"description": "Endereço do servidor",
|
|
75
|
+
"name": "server",
|
|
76
|
+
"required": false,
|
|
77
|
+
"hasDynamicHelp": false,
|
|
78
|
+
"multiple": false,
|
|
79
|
+
"type": "option"
|
|
80
|
+
},
|
|
81
|
+
"email": {
|
|
82
|
+
"description": "E-mail de acesso",
|
|
83
|
+
"name": "email",
|
|
84
|
+
"required": false,
|
|
85
|
+
"hasDynamicHelp": false,
|
|
86
|
+
"multiple": false,
|
|
87
|
+
"type": "option"
|
|
88
|
+
},
|
|
89
|
+
"password": {
|
|
90
|
+
"description": "Senha de acesso",
|
|
91
|
+
"name": "password",
|
|
92
|
+
"required": false,
|
|
93
|
+
"hasDynamicHelp": false,
|
|
94
|
+
"multiple": false,
|
|
95
|
+
"type": "option"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"hasDynamicHelp": false,
|
|
99
|
+
"hiddenAliases": [],
|
|
100
|
+
"id": "config:add",
|
|
101
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
102
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
103
|
+
"pluginType": "core",
|
|
104
|
+
"strict": true,
|
|
105
|
+
"enableJsonFlag": false,
|
|
106
|
+
"isESM": true,
|
|
107
|
+
"relativePath": [
|
|
108
|
+
"dist",
|
|
109
|
+
"commands",
|
|
110
|
+
"config",
|
|
111
|
+
"add.js"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
"config:edit": {
|
|
115
|
+
"aliases": [],
|
|
116
|
+
"args": {
|
|
117
|
+
"name": {
|
|
118
|
+
"name": "name"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"description": "Edit an existing Proton server connection",
|
|
122
|
+
"examples": [
|
|
123
|
+
"<%= config.bin %> <%= command.id %>"
|
|
124
|
+
],
|
|
125
|
+
"flags": {
|
|
126
|
+
"name": {
|
|
127
|
+
"description": "Nome da configuração",
|
|
128
|
+
"name": "name",
|
|
129
|
+
"required": false,
|
|
130
|
+
"hasDynamicHelp": false,
|
|
131
|
+
"multiple": false,
|
|
132
|
+
"type": "option"
|
|
133
|
+
},
|
|
134
|
+
"server": {
|
|
135
|
+
"description": "Endereço do servidor",
|
|
136
|
+
"name": "server",
|
|
137
|
+
"required": false,
|
|
138
|
+
"hasDynamicHelp": false,
|
|
139
|
+
"multiple": false,
|
|
140
|
+
"type": "option"
|
|
141
|
+
},
|
|
142
|
+
"email": {
|
|
143
|
+
"description": "E-mail de acesso",
|
|
144
|
+
"name": "email",
|
|
145
|
+
"required": false,
|
|
146
|
+
"hasDynamicHelp": false,
|
|
147
|
+
"multiple": false,
|
|
148
|
+
"type": "option"
|
|
149
|
+
},
|
|
150
|
+
"password": {
|
|
151
|
+
"description": "Senha de acesso",
|
|
152
|
+
"name": "password",
|
|
153
|
+
"required": false,
|
|
154
|
+
"hasDynamicHelp": false,
|
|
155
|
+
"multiple": false,
|
|
156
|
+
"type": "option"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"hasDynamicHelp": false,
|
|
160
|
+
"hiddenAliases": [],
|
|
161
|
+
"id": "config:edit",
|
|
162
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
163
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
164
|
+
"pluginType": "core",
|
|
165
|
+
"strict": true,
|
|
166
|
+
"enableJsonFlag": false,
|
|
167
|
+
"isESM": true,
|
|
168
|
+
"relativePath": [
|
|
169
|
+
"dist",
|
|
170
|
+
"commands",
|
|
171
|
+
"config",
|
|
172
|
+
"edit.js"
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
"config:list": {
|
|
176
|
+
"aliases": [],
|
|
177
|
+
"args": {},
|
|
178
|
+
"description": "Display a list of configured connections",
|
|
179
|
+
"examples": [
|
|
180
|
+
"<%= config.bin %> <%= command.id %>"
|
|
181
|
+
],
|
|
182
|
+
"flags": {},
|
|
183
|
+
"hasDynamicHelp": false,
|
|
184
|
+
"hiddenAliases": [],
|
|
185
|
+
"id": "config:list",
|
|
186
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
187
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
188
|
+
"pluginType": "core",
|
|
189
|
+
"strict": true,
|
|
190
|
+
"enableJsonFlag": false,
|
|
191
|
+
"isESM": true,
|
|
192
|
+
"relativePath": [
|
|
193
|
+
"dist",
|
|
194
|
+
"commands",
|
|
195
|
+
"config",
|
|
196
|
+
"list.js"
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
"config:remove": {
|
|
200
|
+
"aliases": [],
|
|
201
|
+
"args": {
|
|
202
|
+
"name": {
|
|
203
|
+
"name": "name"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"description": "Remove an existing Proton server connection",
|
|
207
|
+
"examples": [
|
|
208
|
+
"<%= config.bin %> <%= command.id %>"
|
|
209
|
+
],
|
|
210
|
+
"flags": {},
|
|
211
|
+
"hasDynamicHelp": false,
|
|
212
|
+
"hiddenAliases": [],
|
|
213
|
+
"id": "config:remove",
|
|
214
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
215
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
216
|
+
"pluginType": "core",
|
|
217
|
+
"strict": true,
|
|
218
|
+
"enableJsonFlag": false,
|
|
219
|
+
"isESM": true,
|
|
220
|
+
"relativePath": [
|
|
221
|
+
"dist",
|
|
222
|
+
"commands",
|
|
223
|
+
"config",
|
|
224
|
+
"remove.js"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
"runner:list-run": {
|
|
228
|
+
"aliases": [],
|
|
229
|
+
"args": {},
|
|
230
|
+
"description": "Retrieve the list of runs executed by the Proton runner",
|
|
231
|
+
"examples": [
|
|
232
|
+
"<%= config.bin %> <%= command.id %>"
|
|
233
|
+
],
|
|
234
|
+
"flags": {},
|
|
235
|
+
"hasDynamicHelp": false,
|
|
236
|
+
"hiddenAliases": [],
|
|
237
|
+
"id": "runner:list-run",
|
|
238
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
239
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
240
|
+
"pluginType": "core",
|
|
241
|
+
"strict": true,
|
|
242
|
+
"enableJsonFlag": false,
|
|
243
|
+
"isESM": true,
|
|
244
|
+
"relativePath": [
|
|
245
|
+
"dist",
|
|
246
|
+
"commands",
|
|
247
|
+
"runner",
|
|
248
|
+
"list-run.js"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
"runner:status": {
|
|
252
|
+
"aliases": [],
|
|
253
|
+
"args": {},
|
|
254
|
+
"description": "Retrieve the status of the Proton runner",
|
|
255
|
+
"examples": [
|
|
256
|
+
"<%= config.bin %> <%= command.id %>"
|
|
257
|
+
],
|
|
258
|
+
"flags": {},
|
|
259
|
+
"hasDynamicHelp": false,
|
|
260
|
+
"hiddenAliases": [],
|
|
261
|
+
"id": "runner:status",
|
|
262
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
263
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
264
|
+
"pluginType": "core",
|
|
265
|
+
"strict": true,
|
|
266
|
+
"enableJsonFlag": false,
|
|
267
|
+
"isESM": true,
|
|
268
|
+
"relativePath": [
|
|
269
|
+
"dist",
|
|
270
|
+
"commands",
|
|
271
|
+
"runner",
|
|
272
|
+
"status.js"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
"runner:stop-run": {
|
|
276
|
+
"aliases": [],
|
|
277
|
+
"args": {
|
|
278
|
+
"id": {
|
|
279
|
+
"name": "id"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"description": "Stop selected run",
|
|
283
|
+
"examples": [
|
|
284
|
+
"<%= config.bin %> <%= command.id %>"
|
|
285
|
+
],
|
|
286
|
+
"flags": {},
|
|
287
|
+
"hasDynamicHelp": false,
|
|
288
|
+
"hiddenAliases": [],
|
|
289
|
+
"id": "runner:stop-run",
|
|
290
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
291
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
292
|
+
"pluginType": "core",
|
|
293
|
+
"strict": true,
|
|
294
|
+
"enableJsonFlag": false,
|
|
295
|
+
"isESM": true,
|
|
296
|
+
"relativePath": [
|
|
297
|
+
"dist",
|
|
298
|
+
"commands",
|
|
299
|
+
"runner",
|
|
300
|
+
"stop-run.js"
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
"settings": {
|
|
304
|
+
"aliases": [],
|
|
305
|
+
"args": {},
|
|
306
|
+
"description": "Retrieve the settings of the Proton runner",
|
|
307
|
+
"examples": [
|
|
308
|
+
"<%= config.bin %> <%= command.id %>"
|
|
309
|
+
],
|
|
310
|
+
"flags": {},
|
|
311
|
+
"hasDynamicHelp": false,
|
|
312
|
+
"hiddenAliases": [],
|
|
313
|
+
"id": "settings",
|
|
314
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
315
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
316
|
+
"pluginType": "core",
|
|
317
|
+
"strict": true,
|
|
318
|
+
"enableJsonFlag": false,
|
|
319
|
+
"isESM": true,
|
|
320
|
+
"relativePath": [
|
|
321
|
+
"dist",
|
|
322
|
+
"commands",
|
|
323
|
+
"settings",
|
|
324
|
+
"index.js"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
327
|
+
"settings:set": {
|
|
328
|
+
"aliases": [],
|
|
329
|
+
"args": {},
|
|
330
|
+
"description": "Set Proton server settings",
|
|
331
|
+
"examples": [
|
|
332
|
+
"<%= config.bin %> <%= command.id %>"
|
|
333
|
+
],
|
|
334
|
+
"flags": {
|
|
335
|
+
"mavenPath": {
|
|
336
|
+
"description": "Caminho do Maven (ex: C:\\maven\\bin\\mvn.cmd)",
|
|
337
|
+
"name": "mavenPath",
|
|
338
|
+
"required": false,
|
|
339
|
+
"hasDynamicHelp": false,
|
|
340
|
+
"multiple": false,
|
|
341
|
+
"type": "option"
|
|
342
|
+
},
|
|
343
|
+
"parallelRuns": {
|
|
344
|
+
"description": "Número de execuções paralelas",
|
|
345
|
+
"name": "parallelRuns",
|
|
346
|
+
"required": false,
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"hasDynamicHelp": false,
|
|
353
|
+
"hiddenAliases": [],
|
|
354
|
+
"id": "settings:set",
|
|
355
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
356
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
357
|
+
"pluginType": "core",
|
|
358
|
+
"strict": true,
|
|
359
|
+
"enableJsonFlag": false,
|
|
360
|
+
"isESM": true,
|
|
361
|
+
"relativePath": [
|
|
362
|
+
"dist",
|
|
363
|
+
"commands",
|
|
364
|
+
"settings",
|
|
365
|
+
"set.js"
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
"settings:unset": {
|
|
369
|
+
"aliases": [],
|
|
370
|
+
"args": {},
|
|
371
|
+
"description": "Unset Proton server settings",
|
|
372
|
+
"examples": [
|
|
373
|
+
"<%= config.bin %> <%= command.id %>"
|
|
374
|
+
],
|
|
375
|
+
"flags": {
|
|
376
|
+
"mavenPath": {
|
|
377
|
+
"description": "Caminho do Maven (ex: C:\\maven\\bin\\mvn.cmd)",
|
|
378
|
+
"name": "mavenPath",
|
|
379
|
+
"required": false,
|
|
380
|
+
"allowNo": false,
|
|
381
|
+
"type": "boolean"
|
|
382
|
+
},
|
|
383
|
+
"parallelRuns": {
|
|
384
|
+
"description": "Número de execuções paralelas",
|
|
385
|
+
"name": "parallelRuns",
|
|
386
|
+
"required": false,
|
|
387
|
+
"allowNo": false,
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"hasDynamicHelp": false,
|
|
392
|
+
"hiddenAliases": [],
|
|
393
|
+
"id": "settings:unset",
|
|
394
|
+
"pluginAlias": "@atomicsolutions/proton5-cli",
|
|
395
|
+
"pluginName": "@atomicsolutions/proton5-cli",
|
|
396
|
+
"pluginType": "core",
|
|
397
|
+
"strict": true,
|
|
398
|
+
"enableJsonFlag": false,
|
|
399
|
+
"isESM": true,
|
|
400
|
+
"relativePath": [
|
|
401
|
+
"dist",
|
|
402
|
+
"commands",
|
|
403
|
+
"settings",
|
|
404
|
+
"unset.js"
|
|
405
|
+
]
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"version": "5.0.1"
|
|
409
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atomicsolutions/proton5-cli",
|
|
3
|
+
"description": "Proton Runner v5 CLI",
|
|
4
|
+
"version": "5.0.1",
|
|
5
|
+
"author": "luiscosilva",
|
|
6
|
+
"bin": {
|
|
7
|
+
"proton": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"bugs": "https://github.com/atomicsolutions/proton5-cli/issues",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@oclif/core": "^4",
|
|
12
|
+
"@oclif/plugin-help": "^6",
|
|
13
|
+
"@oclif/plugin-plugins": "^5",
|
|
14
|
+
"axios": "^1.13.5",
|
|
15
|
+
"cli-color": "^2.0.4",
|
|
16
|
+
"cli-table3": "^0.6.5",
|
|
17
|
+
"conf": "^15.1.0",
|
|
18
|
+
"i18next": "^25.8.11",
|
|
19
|
+
"inquirer": "^13.2.5",
|
|
20
|
+
"luxon": "^3.7.2",
|
|
21
|
+
"ora": "^9.3.0",
|
|
22
|
+
"simple-git": "^3.31.1",
|
|
23
|
+
"socket.io-client": "^4.8.3"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@eslint/compat": "^1",
|
|
27
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
28
|
+
"@oclif/test": "^4",
|
|
29
|
+
"@types/chai": "^4",
|
|
30
|
+
"@types/cli-color": "^2.0.6",
|
|
31
|
+
"@types/luxon": "^3.7.1",
|
|
32
|
+
"@types/mocha": "^10",
|
|
33
|
+
"@types/node": "^25.3.0",
|
|
34
|
+
"chai": "^4",
|
|
35
|
+
"eslint": "^9",
|
|
36
|
+
"eslint-config-oclif": "^6",
|
|
37
|
+
"eslint-config-prettier": "^10",
|
|
38
|
+
"mocha": "^10",
|
|
39
|
+
"oclif": "^4",
|
|
40
|
+
"shx": "^0.3.3",
|
|
41
|
+
"ts-node": "^10.9.2",
|
|
42
|
+
"tsx": "^4.21.0",
|
|
43
|
+
"typescript": "^5"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=22.0.0"
|
|
47
|
+
},
|
|
48
|
+
"files": [
|
|
49
|
+
"./bin",
|
|
50
|
+
"./dist",
|
|
51
|
+
"./oclif.manifest.json"
|
|
52
|
+
],
|
|
53
|
+
"homepage": "https://github.com/atomicsolutions/proton5-cli",
|
|
54
|
+
"keywords": [
|
|
55
|
+
"oclif"
|
|
56
|
+
],
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"main": "dist/index.js",
|
|
59
|
+
"type": "module",
|
|
60
|
+
"oclif": {
|
|
61
|
+
"bin": "proton",
|
|
62
|
+
"dirname": "proton",
|
|
63
|
+
"commands": "./dist/commands",
|
|
64
|
+
"plugins": [
|
|
65
|
+
"@oclif/plugin-help",
|
|
66
|
+
"@oclif/plugin-plugins"
|
|
67
|
+
],
|
|
68
|
+
"topicSeparator": " ",
|
|
69
|
+
"topics": {
|
|
70
|
+
"hello": {
|
|
71
|
+
"description": "Say hello to the world and others"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"repository": "atomicsolutions/proton5-cli",
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
78
|
+
"lint": "eslint",
|
|
79
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
80
|
+
"posttest": "npm run lint",
|
|
81
|
+
"prepack": "oclif manifest && oclif readme",
|
|
82
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
83
|
+
"version": "oclif readme && git add README.md"
|
|
84
|
+
},
|
|
85
|
+
"types": "dist/index.d.ts"
|
|
86
|
+
}
|