clx-cli 0.1.0 → 0.1.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 (3) hide show
  1. package/dist/clx +0 -0
  2. package/package.json +5 -2
  3. package/dist/index.js +0 -9500
package/dist/clx CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clx-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "CLI API client generator from OpenAPI specs",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",
@@ -28,7 +28,9 @@
28
28
  "compile": "bun build src/index.ts --compile --outfile dist/clx",
29
29
  "typecheck": "tsc --noEmit",
30
30
  "test": "bun test",
31
- "prepublishOnly": "bun run compile"
31
+ "prepublishOnly": "bun run compile",
32
+ "update-spec": "bun scripts/update-spec.ts",
33
+ "update-specs": "bun scripts/update-spec.ts --all"
32
34
  },
33
35
  "keywords": [
34
36
  "cli",
@@ -45,6 +47,7 @@
45
47
  "node": ">=18"
46
48
  },
47
49
  "dependencies": {
50
+ "commander": "^14.0.2",
48
51
  "yaml": "^2.8.2"
49
52
  },
50
53
  "devDependencies": {