poe-code 3.0.96 → 3.0.97

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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ var _major = parseInt(process.versions.node.split(".")[0], 10);
3
+ if (_major < 18) {
4
+ console.error(
5
+ "poe-agent requires Node.js 18 or later. Current: " + process.version
6
+ );
7
+ process.exit(1);
8
+ }
9
+ import("../index.js").then(function (m) { m.poeAgentMain(); }).catch(function (err) { console.error(err); process.exit(1); })
package/dist/index.js CHANGED
@@ -38582,7 +38582,7 @@ var init_package = __esm({
38582
38582
  "package.json"() {
38583
38583
  package_default = {
38584
38584
  name: "poe-code",
38585
- version: "3.0.96",
38585
+ version: "3.0.97",
38586
38586
  description: "CLI tool to configure Poe API for developer workflows.",
38587
38587
  type: "module",
38588
38588
  main: "./dist/index.js",