propelix-cli 0.0.1-dev3 → 0.0.1-dev4

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/index.cjs +2 -2
  2. package/package.json +5 -3
package/dist/index.cjs CHANGED
@@ -17091,10 +17091,10 @@ var ME_QUERY = `
17091
17091
 
17092
17092
  // src/index.ts
17093
17093
  var program2 = new Command();
17094
- program2.name("propelix").description("Propelix CLI").version("0.0.1-dev3").option("--base-url <url>", "API base URL (default: https://app.promptitude.ai)").option("--token <token>", "Auth token (overrides stored config)").option("--json", "Output as JSON");
17094
+ program2.name("propelix").description("Propelix CLI").version("0.0.1-dev4").option("--base-url <url>", "API base URL (default: https://app.promptitude.ai)").option("--token <token>", "Auth token (overrides stored config)").option("--json", "Output as JSON");
17095
17095
  registerAuthCommand(program2);
17096
17096
  program2.command("version").description("Print version number").action(() => {
17097
- console.log("0.0.1-dev3");
17097
+ console.log("0.0.1-dev4");
17098
17098
  });
17099
17099
  program2.command("whoami").description("Show the currently authenticated user").action(async () => {
17100
17100
  try {
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "propelix-cli",
3
- "version": "0.0.1-dev3",
3
+ "version": "0.0.1-dev4",
4
4
  "description": "CLI for Propelix",
5
- "engines": { "node": ">=18" },
5
+ "engines": {
6
+ "node": ">=18"
7
+ },
6
8
  "license": "UNLICENSED",
7
9
  "bin": {
8
- "propelix": "./dist/index.cjs"
10
+ "propelix": "dist/index.cjs"
9
11
  },
10
12
  "files": [
11
13
  "dist"