@vorlek/cli 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +3 -2
package/dist/cli.js CHANGED
@@ -23,7 +23,7 @@ import { defaultDeps } from './deps.js';
23
23
  */
24
24
  const cli = cac('vorlek');
25
25
  cli.help();
26
- cli.version('0.2.2');
26
+ cli.version('0.2.3');
27
27
  cli.option('--api-base <url>', 'Override API base URL (default: from config or https://api.vorlek.com)');
28
28
  cli.option('--json', 'Output raw JSON (machine-readable)');
29
29
  cli.option('-v, --verbose', 'Verbose logging (includes stack traces on errors)');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vorlek/cli",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Vorlek CLI — thin REST API wrapper for the Vorlek aggregator",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://vorlek.dev/docs/",
@@ -18,7 +18,8 @@
18
18
  },
19
19
  "files": ["dist/**/*.js"],
20
20
  "publishConfig": {
21
- "access": "public"
21
+ "access": "public",
22
+ "provenance": false
22
23
  },
23
24
  "scripts": {
24
25
  "dev": "tsx src/cli.ts",