@bitsocial/bitsocial-cli 0.19.39 → 0.19.41

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.
@@ -0,0 +1,707 @@
1
+ {
2
+ "commands": {
3
+ "daemon": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Run a network-connected Bitsocial node. Once the daemon is running you can create and start your communities and receive publications from users. The daemon will also serve web ui on http that can be accessed through a browser on any machine. Within the web ui users are able to browse, create and manage their communities fully P2P.\n Options can be passed to the RPC's instance through flag --pkcOptions.optionName. For a list of pkc options (https://github.com/pkcprotocol/pkc-js?tab=readme-ov-file#pkcoptions)\n If you need to modify ipfs config, you should head to {bitsocial-data-path}/.ipfs-bitsocial-cli/config and modify the config file\n ",
7
+ "examples": [
8
+ "bitsocial daemon",
9
+ "bitsocial daemon --pkcRpcUrl ws://localhost:53812",
10
+ "bitsocial daemon --pkcOptions.dataPath /tmp/bitsocial-datapath/",
11
+ "bitsocial daemon --pkcOptions.kuboRpcClientsOptions[0] https://remoteipfsnode.com",
12
+ "bitsocial daemon --chainProviderUrls https://mainnet.infura.io/v3/YOUR_KEY",
13
+ "bitsocial daemon --chainProviderUrls viem --chainProviderUrls https://mainnet.infura.io/v3/YOUR_KEY"
14
+ ],
15
+ "flags": {
16
+ "pkcRpcUrl": {
17
+ "description": "Specify PKC RPC URL to listen on",
18
+ "name": "pkcRpcUrl",
19
+ "required": true,
20
+ "default": "ws://localhost:9138/",
21
+ "hasDynamicHelp": false,
22
+ "multiple": false,
23
+ "type": "option"
24
+ },
25
+ "logPath": {
26
+ "description": "Specify a directory which will be used to store logs",
27
+ "name": "logPath",
28
+ "required": true,
29
+ "default": "/home/runner/.local/state/bitsocial",
30
+ "hasDynamicHelp": false,
31
+ "multiple": false,
32
+ "type": "option"
33
+ },
34
+ "chainProviderUrls": {
35
+ "description": "Ethereum RPC URL(s) for .bso/.eth name resolution. Can be specified multiple times. Defaults to viem public transport and https://ethrpc.xyz",
36
+ "name": "chainProviderUrls",
37
+ "default": [
38
+ "viem",
39
+ "https://ethrpc.xyz"
40
+ ],
41
+ "hasDynamicHelp": false,
42
+ "multiple": true,
43
+ "type": "option"
44
+ }
45
+ },
46
+ "hasDynamicHelp": false,
47
+ "hiddenAliases": [],
48
+ "id": "daemon",
49
+ "pluginAlias": "@bitsocial/bitsocial-cli",
50
+ "pluginName": "@bitsocial/bitsocial-cli",
51
+ "pluginType": "core",
52
+ "strict": true,
53
+ "enableJsonFlag": false,
54
+ "isESM": true,
55
+ "relativePath": [
56
+ "dist",
57
+ "cli",
58
+ "commands",
59
+ "daemon.js"
60
+ ]
61
+ },
62
+ "logs": {
63
+ "aliases": [],
64
+ "args": {},
65
+ "description": "View the latest BitSocial daemon log file. By default dumps the full log and exits. Use --follow to stream new output in real-time (like tail -f).",
66
+ "examples": [
67
+ "bitsocial logs",
68
+ "bitsocial logs -f",
69
+ "bitsocial logs -n 50",
70
+ "bitsocial logs --since 5m",
71
+ "bitsocial logs --since 2026-01-02T13:23:37Z --until 2026-01-02T14:00:00Z",
72
+ "bitsocial logs --since 1h -f"
73
+ ],
74
+ "flags": {
75
+ "follow": {
76
+ "char": "f",
77
+ "description": "Follow log output in real-time (like tail -f)",
78
+ "name": "follow",
79
+ "allowNo": false,
80
+ "type": "boolean"
81
+ },
82
+ "tail": {
83
+ "char": "n",
84
+ "description": "Number of log entries to show from the end. Use \"all\" to show everything.",
85
+ "name": "tail",
86
+ "default": "all",
87
+ "hasDynamicHelp": false,
88
+ "multiple": false,
89
+ "type": "option"
90
+ },
91
+ "since": {
92
+ "description": "Show logs since timestamp (ISO 8601, e.g. 2026-01-02T13:23:37Z) or relative time (e.g. 30s, 42m, 2h, 1d)",
93
+ "name": "since",
94
+ "required": false,
95
+ "hasDynamicHelp": false,
96
+ "multiple": false,
97
+ "type": "option"
98
+ },
99
+ "until": {
100
+ "description": "Show logs before timestamp (ISO 8601, e.g. 2026-01-02T13:23:37Z) or relative time (e.g. 30s, 42m, 2h, 1d)",
101
+ "name": "until",
102
+ "required": false,
103
+ "hasDynamicHelp": false,
104
+ "multiple": false,
105
+ "type": "option"
106
+ },
107
+ "logPath": {
108
+ "description": "Specify the directory containing log files",
109
+ "name": "logPath",
110
+ "required": false,
111
+ "hasDynamicHelp": false,
112
+ "multiple": false,
113
+ "type": "option"
114
+ }
115
+ },
116
+ "hasDynamicHelp": false,
117
+ "hiddenAliases": [],
118
+ "id": "logs",
119
+ "pluginAlias": "@bitsocial/bitsocial-cli",
120
+ "pluginName": "@bitsocial/bitsocial-cli",
121
+ "pluginType": "core",
122
+ "strict": true,
123
+ "enableJsonFlag": false,
124
+ "isESM": true,
125
+ "relativePath": [
126
+ "dist",
127
+ "cli",
128
+ "commands",
129
+ "logs.js"
130
+ ]
131
+ },
132
+ "challenge:install": {
133
+ "aliases": [],
134
+ "args": {
135
+ "package": {
136
+ "description": "Package specifier — anything npm can install (name, name@version, git URL, tarball URL, local path)",
137
+ "name": "package",
138
+ "required": true
139
+ }
140
+ },
141
+ "description": "Install a challenge package (npm package name, git URL, tarball URL, or local path)",
142
+ "examples": [
143
+ "bitsocial challenge install @bitsocial/mintpass-challenge",
144
+ "bitsocial challenge install @bitsocial/mintpass-challenge@1.0.0",
145
+ "bitsocial challenge install github:user/repo",
146
+ "bitsocial challenge install https://example.com/my-challenge-1.0.0.tar.gz",
147
+ "bitsocial challenge install ./my-local-challenge"
148
+ ],
149
+ "flags": {
150
+ "pkcOptions.dataPath": {
151
+ "description": "Data path to install the challenge into",
152
+ "name": "pkcOptions.dataPath",
153
+ "required": false,
154
+ "hasDynamicHelp": false,
155
+ "multiple": false,
156
+ "type": "option"
157
+ }
158
+ },
159
+ "hasDynamicHelp": false,
160
+ "hiddenAliases": [],
161
+ "id": "challenge:install",
162
+ "pluginAlias": "@bitsocial/bitsocial-cli",
163
+ "pluginName": "@bitsocial/bitsocial-cli",
164
+ "pluginType": "core",
165
+ "strict": true,
166
+ "enableJsonFlag": false,
167
+ "isESM": true,
168
+ "relativePath": [
169
+ "dist",
170
+ "cli",
171
+ "commands",
172
+ "challenge",
173
+ "install.js"
174
+ ]
175
+ },
176
+ "challenge:list": {
177
+ "aliases": [],
178
+ "args": {},
179
+ "description": "List installed challenge packages",
180
+ "examples": [
181
+ "bitsocial challenge list",
182
+ "bitsocial challenge list -q"
183
+ ],
184
+ "flags": {
185
+ "quiet": {
186
+ "char": "q",
187
+ "name": "quiet",
188
+ "summary": "Only display challenge names",
189
+ "allowNo": false,
190
+ "type": "boolean"
191
+ },
192
+ "pkcOptions.dataPath": {
193
+ "description": "Data path where challenges are installed",
194
+ "name": "pkcOptions.dataPath",
195
+ "required": false,
196
+ "hasDynamicHelp": false,
197
+ "multiple": false,
198
+ "type": "option"
199
+ }
200
+ },
201
+ "hasDynamicHelp": false,
202
+ "hiddenAliases": [],
203
+ "id": "challenge:list",
204
+ "pluginAlias": "@bitsocial/bitsocial-cli",
205
+ "pluginName": "@bitsocial/bitsocial-cli",
206
+ "pluginType": "core",
207
+ "strict": true,
208
+ "enableJsonFlag": false,
209
+ "isESM": true,
210
+ "relativePath": [
211
+ "dist",
212
+ "cli",
213
+ "commands",
214
+ "challenge",
215
+ "list.js"
216
+ ]
217
+ },
218
+ "challenge:remove": {
219
+ "aliases": [],
220
+ "args": {
221
+ "name": {
222
+ "description": "The challenge package name (e.g., my-challenge or @scope/my-challenge)",
223
+ "name": "name",
224
+ "required": true
225
+ }
226
+ },
227
+ "description": "Remove an installed challenge package",
228
+ "examples": [
229
+ "bitsocial challenge remove my-challenge",
230
+ "bitsocial challenge remove @scope/my-challenge"
231
+ ],
232
+ "flags": {
233
+ "pkcOptions.dataPath": {
234
+ "description": "Data path where challenges are installed",
235
+ "name": "pkcOptions.dataPath",
236
+ "required": false,
237
+ "hasDynamicHelp": false,
238
+ "multiple": false,
239
+ "type": "option"
240
+ }
241
+ },
242
+ "hasDynamicHelp": false,
243
+ "hiddenAliases": [],
244
+ "id": "challenge:remove",
245
+ "pluginAlias": "@bitsocial/bitsocial-cli",
246
+ "pluginName": "@bitsocial/bitsocial-cli",
247
+ "pluginType": "core",
248
+ "strict": true,
249
+ "enableJsonFlag": false,
250
+ "isESM": true,
251
+ "relativePath": [
252
+ "dist",
253
+ "cli",
254
+ "commands",
255
+ "challenge",
256
+ "remove.js"
257
+ ]
258
+ },
259
+ "community:create": {
260
+ "aliases": [],
261
+ "args": {},
262
+ "description": "Create a community with specific properties. A newly created community will be started after creation and be able to receive publications. For a list of properties, visit https://github.com/pkcprotocol/pkc-js",
263
+ "examples": [
264
+ {
265
+ "description": "Create a community with title 'Hello Plebs' and description 'Welcome'",
266
+ "command": "<%= config.bin %> <%= command.id %> --title 'Hello Plebs' --description 'Welcome'"
267
+ }
268
+ ],
269
+ "flags": {
270
+ "pkcRpcUrl": {
271
+ "name": "pkcRpcUrl",
272
+ "required": true,
273
+ "summary": "URL to PKC RPC",
274
+ "default": "ws://localhost:9138/",
275
+ "hasDynamicHelp": false,
276
+ "multiple": false,
277
+ "type": "option"
278
+ },
279
+ "privateKeyPath": {
280
+ "description": "Private key (PEM) of the community signer that will be used to determine address (if address is not a domain). If it's not provided then PKC will generate a private key",
281
+ "name": "privateKeyPath",
282
+ "hasDynamicHelp": false,
283
+ "multiple": false,
284
+ "type": "option"
285
+ }
286
+ },
287
+ "hasDynamicHelp": false,
288
+ "hiddenAliases": [],
289
+ "id": "community:create",
290
+ "pluginAlias": "@bitsocial/bitsocial-cli",
291
+ "pluginName": "@bitsocial/bitsocial-cli",
292
+ "pluginType": "core",
293
+ "strict": true,
294
+ "enableJsonFlag": false,
295
+ "isESM": true,
296
+ "relativePath": [
297
+ "dist",
298
+ "cli",
299
+ "commands",
300
+ "community",
301
+ "create.js"
302
+ ]
303
+ },
304
+ "community:delete": {
305
+ "aliases": [],
306
+ "args": {
307
+ "addresses": {
308
+ "description": "Addresses of communities to delete. Separated by space",
309
+ "name": "addresses",
310
+ "required": true
311
+ }
312
+ },
313
+ "description": "Delete a community permanently.",
314
+ "examples": [
315
+ "bitsocial community delete plebbit.bso",
316
+ "bitsocial community delete 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu"
317
+ ],
318
+ "flags": {
319
+ "pkcRpcUrl": {
320
+ "name": "pkcRpcUrl",
321
+ "required": true,
322
+ "summary": "URL to PKC RPC",
323
+ "default": "ws://localhost:9138/",
324
+ "hasDynamicHelp": false,
325
+ "multiple": false,
326
+ "type": "option"
327
+ }
328
+ },
329
+ "hasDynamicHelp": false,
330
+ "hiddenAliases": [],
331
+ "id": "community:delete",
332
+ "pluginAlias": "@bitsocial/bitsocial-cli",
333
+ "pluginName": "@bitsocial/bitsocial-cli",
334
+ "pluginType": "core",
335
+ "strict": false,
336
+ "enableJsonFlag": false,
337
+ "isESM": true,
338
+ "relativePath": [
339
+ "dist",
340
+ "cli",
341
+ "commands",
342
+ "community",
343
+ "delete.js"
344
+ ]
345
+ },
346
+ "community:edit": {
347
+ "aliases": [],
348
+ "args": {
349
+ "address": {
350
+ "description": "Address of the community to edit",
351
+ "name": "address",
352
+ "required": true
353
+ }
354
+ },
355
+ "description": "Edit a community's properties. For a list of properties, visit https://github.com/pkcprotocol/pkc-js",
356
+ "examples": [
357
+ {
358
+ "description": "Change the address of the community to a new domain address",
359
+ "command": "bitsocial community edit 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu --address newAddress.bso"
360
+ },
361
+ {
362
+ "description": "Add the author address 'esteban.bso' as an admin on the community",
363
+ "command": "bitsocial community edit mysub.bso '--roles[\"esteban.bso\"].role' admin"
364
+ },
365
+ {
366
+ "description": "Add two challenges to the community. The first challenge will be a question and answer, and the second will be an image captcha",
367
+ "command": "bitsocial community edit mysub.bso --settings.challenges[0].name question --settings.challenges[0].options.question \"what is the password?\" --settings.challenges[0].options.answer thepassword --settings.challenges[1].name captcha-canvas-v3"
368
+ },
369
+ {
370
+ "description": "Change the title and description",
371
+ "command": "bitsocial community edit mysub.bso --title \"This is the new title\" --description \"This is the new description\" "
372
+ },
373
+ {
374
+ "description": "Remove a role from a moderator/admin/owner",
375
+ "command": "bitsocial community edit plebbit.bso --roles['rinse12.bso'] null"
376
+ },
377
+ {
378
+ "description": "Enable settings.fetchThumbnailUrls to fetch the thumbnail of url submitted by authors",
379
+ "command": "bitsocial community edit plebbit.bso --settings.fetchThumbnailUrls"
380
+ },
381
+ {
382
+ "description": "disable settings.fetchThumbnailUrls",
383
+ "command": "bitsocial community edit plebbit.bso --settings.fetchThumbnailUrls=false"
384
+ }
385
+ ],
386
+ "flags": {
387
+ "pkcRpcUrl": {
388
+ "name": "pkcRpcUrl",
389
+ "required": true,
390
+ "summary": "URL to PKC RPC",
391
+ "default": "ws://localhost:9138/",
392
+ "hasDynamicHelp": false,
393
+ "multiple": false,
394
+ "type": "option"
395
+ }
396
+ },
397
+ "hasDynamicHelp": false,
398
+ "hiddenAliases": [],
399
+ "id": "community:edit",
400
+ "pluginAlias": "@bitsocial/bitsocial-cli",
401
+ "pluginName": "@bitsocial/bitsocial-cli",
402
+ "pluginType": "core",
403
+ "strict": true,
404
+ "enableJsonFlag": false,
405
+ "isESM": true,
406
+ "relativePath": [
407
+ "dist",
408
+ "cli",
409
+ "commands",
410
+ "community",
411
+ "edit.js"
412
+ ]
413
+ },
414
+ "community:get": {
415
+ "aliases": [],
416
+ "args": {
417
+ "address": {
418
+ "description": "Address of the community to fetch",
419
+ "name": "address",
420
+ "required": false
421
+ }
422
+ },
423
+ "description": "Fetch a local or remote community, and print its json in the terminal",
424
+ "examples": [
425
+ "bitsocial community get plebmusic.bso",
426
+ "bitsocial community get 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu",
427
+ "bitsocial community get --name my-community",
428
+ "bitsocial community get --publicKey 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu"
429
+ ],
430
+ "flags": {
431
+ "pkcRpcUrl": {
432
+ "name": "pkcRpcUrl",
433
+ "required": true,
434
+ "summary": "URL to PKC RPC",
435
+ "default": "ws://localhost:9138/",
436
+ "hasDynamicHelp": false,
437
+ "multiple": false,
438
+ "type": "option"
439
+ },
440
+ "name": {
441
+ "description": "Name of the community to fetch",
442
+ "name": "name",
443
+ "hasDynamicHelp": false,
444
+ "multiple": false,
445
+ "type": "option"
446
+ },
447
+ "publicKey": {
448
+ "description": "Public key of the community to fetch",
449
+ "name": "publicKey",
450
+ "hasDynamicHelp": false,
451
+ "multiple": false,
452
+ "type": "option"
453
+ }
454
+ },
455
+ "hasDynamicHelp": false,
456
+ "hiddenAliases": [],
457
+ "id": "community:get",
458
+ "pluginAlias": "@bitsocial/bitsocial-cli",
459
+ "pluginName": "@bitsocial/bitsocial-cli",
460
+ "pluginType": "core",
461
+ "strict": true,
462
+ "enableJsonFlag": false,
463
+ "isESM": true,
464
+ "relativePath": [
465
+ "dist",
466
+ "cli",
467
+ "commands",
468
+ "community",
469
+ "get.js"
470
+ ]
471
+ },
472
+ "community:list": {
473
+ "aliases": [],
474
+ "args": {},
475
+ "description": "List your communities",
476
+ "examples": [
477
+ "bitsocial community list -q",
478
+ "bitsocial community list"
479
+ ],
480
+ "flags": {
481
+ "pkcRpcUrl": {
482
+ "name": "pkcRpcUrl",
483
+ "required": true,
484
+ "summary": "URL to PKC RPC",
485
+ "default": "ws://localhost:9138/",
486
+ "hasDynamicHelp": false,
487
+ "multiple": false,
488
+ "type": "option"
489
+ },
490
+ "quiet": {
491
+ "char": "q",
492
+ "name": "quiet",
493
+ "summary": "Only display community addresses",
494
+ "allowNo": false,
495
+ "type": "boolean"
496
+ }
497
+ },
498
+ "hasDynamicHelp": false,
499
+ "hiddenAliases": [],
500
+ "id": "community:list",
501
+ "pluginAlias": "@bitsocial/bitsocial-cli",
502
+ "pluginName": "@bitsocial/bitsocial-cli",
503
+ "pluginType": "core",
504
+ "strict": true,
505
+ "enableJsonFlag": false,
506
+ "isESM": true,
507
+ "relativePath": [
508
+ "dist",
509
+ "cli",
510
+ "commands",
511
+ "community",
512
+ "list.js"
513
+ ]
514
+ },
515
+ "community:start": {
516
+ "aliases": [],
517
+ "args": {
518
+ "addresses": {
519
+ "description": "Addresses of communities to start. Separated by space",
520
+ "name": "addresses",
521
+ "required": true
522
+ }
523
+ },
524
+ "description": "Start a community",
525
+ "examples": [
526
+ "bitsocial community start plebbit.bso",
527
+ "bitsocial community start 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu",
528
+ {
529
+ "description": "Start all communities in your data path",
530
+ "command": "bitsocial community start $(bitsocial community list -q)"
531
+ }
532
+ ],
533
+ "flags": {
534
+ "pkcRpcUrl": {
535
+ "name": "pkcRpcUrl",
536
+ "required": true,
537
+ "summary": "URL to PKC RPC",
538
+ "default": "ws://localhost:9138/",
539
+ "hasDynamicHelp": false,
540
+ "multiple": false,
541
+ "type": "option"
542
+ }
543
+ },
544
+ "hasDynamicHelp": false,
545
+ "hiddenAliases": [],
546
+ "id": "community:start",
547
+ "pluginAlias": "@bitsocial/bitsocial-cli",
548
+ "pluginName": "@bitsocial/bitsocial-cli",
549
+ "pluginType": "core",
550
+ "strict": false,
551
+ "enableJsonFlag": false,
552
+ "isESM": true,
553
+ "relativePath": [
554
+ "dist",
555
+ "cli",
556
+ "commands",
557
+ "community",
558
+ "start.js"
559
+ ]
560
+ },
561
+ "community:stop": {
562
+ "aliases": [],
563
+ "args": {
564
+ "addresses": {
565
+ "description": "Addresses of communities to stop. Separated by space",
566
+ "name": "addresses",
567
+ "required": true
568
+ }
569
+ },
570
+ "description": "Stop a community. The community will not publish or receive any publications until it is started again.",
571
+ "examples": [
572
+ "bitsocial community stop plebbit.bso",
573
+ "bitsocial community stop Qmb99crTbSUfKXamXwZBe829Vf6w5w5TktPkb6WstC9RFW"
574
+ ],
575
+ "flags": {
576
+ "pkcRpcUrl": {
577
+ "name": "pkcRpcUrl",
578
+ "required": true,
579
+ "summary": "URL to PKC RPC",
580
+ "default": "ws://localhost:9138/",
581
+ "hasDynamicHelp": false,
582
+ "multiple": false,
583
+ "type": "option"
584
+ }
585
+ },
586
+ "hasDynamicHelp": false,
587
+ "hiddenAliases": [],
588
+ "id": "community:stop",
589
+ "pluginAlias": "@bitsocial/bitsocial-cli",
590
+ "pluginName": "@bitsocial/bitsocial-cli",
591
+ "pluginType": "core",
592
+ "strict": false,
593
+ "enableJsonFlag": false,
594
+ "isESM": true,
595
+ "relativePath": [
596
+ "dist",
597
+ "cli",
598
+ "commands",
599
+ "community",
600
+ "stop.js"
601
+ ]
602
+ },
603
+ "update:check": {
604
+ "aliases": [],
605
+ "args": {},
606
+ "description": "Check if a newer version of bitsocial is available on npm",
607
+ "examples": [
608
+ "bitsocial update check"
609
+ ],
610
+ "flags": {},
611
+ "hasDynamicHelp": false,
612
+ "hiddenAliases": [],
613
+ "id": "update:check",
614
+ "pluginAlias": "@bitsocial/bitsocial-cli",
615
+ "pluginName": "@bitsocial/bitsocial-cli",
616
+ "pluginType": "core",
617
+ "strict": true,
618
+ "enableJsonFlag": false,
619
+ "isESM": true,
620
+ "relativePath": [
621
+ "dist",
622
+ "cli",
623
+ "commands",
624
+ "update",
625
+ "check.js"
626
+ ]
627
+ },
628
+ "update:install": {
629
+ "aliases": [],
630
+ "args": {
631
+ "version": {
632
+ "default": "latest",
633
+ "description": "Version to install (e.g. \"0.19.40\" or \"latest\")",
634
+ "name": "version",
635
+ "required": false
636
+ }
637
+ },
638
+ "description": "Install a specific version of bitsocial from npm",
639
+ "examples": [
640
+ "bitsocial update install",
641
+ "bitsocial update install latest",
642
+ "bitsocial update install 0.19.40",
643
+ "bitsocial update install --force"
644
+ ],
645
+ "flags": {
646
+ "force": {
647
+ "description": "Reinstall even if already on the requested version",
648
+ "name": "force",
649
+ "allowNo": false,
650
+ "type": "boolean"
651
+ }
652
+ },
653
+ "hasDynamicHelp": false,
654
+ "hiddenAliases": [],
655
+ "id": "update:install",
656
+ "pluginAlias": "@bitsocial/bitsocial-cli",
657
+ "pluginName": "@bitsocial/bitsocial-cli",
658
+ "pluginType": "core",
659
+ "strict": true,
660
+ "enableJsonFlag": false,
661
+ "isESM": true,
662
+ "relativePath": [
663
+ "dist",
664
+ "cli",
665
+ "commands",
666
+ "update",
667
+ "install.js"
668
+ ]
669
+ },
670
+ "update:versions": {
671
+ "aliases": [],
672
+ "args": {},
673
+ "description": "List available bitsocial versions on npm",
674
+ "examples": [
675
+ "bitsocial update versions",
676
+ "bitsocial update versions --limit 5"
677
+ ],
678
+ "flags": {
679
+ "limit": {
680
+ "description": "Maximum number of versions to display",
681
+ "name": "limit",
682
+ "default": 20,
683
+ "hasDynamicHelp": false,
684
+ "multiple": false,
685
+ "type": "option"
686
+ }
687
+ },
688
+ "hasDynamicHelp": false,
689
+ "hiddenAliases": [],
690
+ "id": "update:versions",
691
+ "pluginAlias": "@bitsocial/bitsocial-cli",
692
+ "pluginName": "@bitsocial/bitsocial-cli",
693
+ "pluginType": "core",
694
+ "strict": true,
695
+ "enableJsonFlag": false,
696
+ "isESM": true,
697
+ "relativePath": [
698
+ "dist",
699
+ "cli",
700
+ "commands",
701
+ "update",
702
+ "versions.js"
703
+ ]
704
+ }
705
+ },
706
+ "version": "0.19.41"
707
+ }