vendoai 0.56.0 → 0.60.0

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 CHANGED
@@ -9,8 +9,8 @@ npx vendo init
9
9
  ```
10
10
 
11
11
  `vendoai` is the unscoped compatibility alias for `@vendoai/vendo`. It exports
12
- the same default composition and installs the same `vendo` CLI; new projects can
13
- use either package name.
12
+ the same default composition and depends on `@vendoai/vendo`, so it also brings
13
+ the `vendo` command; new projects can use either package name.
14
14
 
15
15
  Read the [quickstart](https://docs.vendo.run/quickstart) and
16
16
  [CLI reference](https://docs.vendo.run/reference/cli).
package/bin/vendo.mjs CHANGED
@@ -3,6 +3,8 @@ import { createRequire } from "node:module";
3
3
  import { pathToFileURL } from "node:url";
4
4
 
5
5
  const require = createRequire(import.meta.url);
6
+ // The alias keeps the `vendo` bin so `npx vendoai@latest …` still works and
7
+ // hops to the canonical one, which carries the CLI again.
6
8
  const rootEntry = require.resolve("@vendoai/vendo");
7
9
  const canonicalBin = new URL("../bin/vendo.mjs", pathToFileURL(rootEntry));
8
10
  await import(canonicalBin.href);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vendoai",
3
- "version": "0.56.0",
3
+ "version": "0.60.0",
4
4
  "description": "Thin compatibility alias for @vendoai/vendo.",
5
5
  "keywords": [
6
6
  "ai",
@@ -70,7 +70,7 @@
70
70
  "README.md"
71
71
  ],
72
72
  "dependencies": {
73
- "@vendoai/vendo": "0.56.0"
73
+ "@vendoai/vendo": "0.60.0"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/node": "^22.0.0",