create-mono-agent 0.20.14 → 0.21.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.
@@ -7,7 +7,7 @@
7
7
  * future change to agent-app's bin location. We resolve it through CJS
8
8
  * `require.resolve` of `@mono-agent/agent-app/package.json` (which agent-app
9
9
  * exports), so this works throughout the supported Node range without depending on
10
- * synchronous `import.meta.resolve` (available throughout the supported Node 22.19.0+ range).
10
+ * synchronous `import.meta.resolve` (available throughout the supported Node 24.15.0+ range).
11
11
  */
12
12
  export declare function resolveAgentAppCliEntry(from?: string | URL): string;
13
13
  //# sourceMappingURL=resolve-agent-app-cli.d.ts.map
@@ -9,7 +9,7 @@ import { dirname, resolve } from "node:path";
9
9
  * future change to agent-app's bin location. We resolve it through CJS
10
10
  * `require.resolve` of `@mono-agent/agent-app/package.json` (which agent-app
11
11
  * exports), so this works throughout the supported Node range without depending on
12
- * synchronous `import.meta.resolve` (available throughout the supported Node 22.19.0+ range).
12
+ * synchronous `import.meta.resolve` (available throughout the supported Node 24.15.0+ range).
13
13
  */
14
14
  export function resolveAgentAppCliEntry(from = import.meta.url) {
15
15
  const require = createRequire(from);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mono-agent",
3
- "version": "0.20.14",
3
+ "version": "0.21.0",
4
4
  "description": "npm-init style installer for the mono-agent CLI: `npm create mono-agent`. Ships both a `create-mono-agent` and a `mono-agent` bin, each delegating to the @mono-agent/agent-app CLI.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "private": false,
13
13
  "engines": {
14
- "node": ">=22.19.0"
14
+ "node": ">=24.15.0"
15
15
  },
16
16
  "bin": {
17
17
  "create-mono-agent": "./dist/bin/mono-agent.js",
@@ -22,7 +22,7 @@
22
22
  "README.md"
23
23
  ],
24
24
  "dependencies": {
25
- "@mono-agent/agent-app": "0.20.14"
25
+ "@mono-agent/agent-app": "0.21.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"