nothumanallowed 13.5.46 → 13.5.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "13.5.46",
3
+ "version": "13.5.47",
4
4
  "description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4075,17 +4075,17 @@ module.exports = { pool, query, transaction };
4075
4075
  try { pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8')); } catch(_) {}
4076
4076
  if (!pkg.dependencies) pkg.dependencies = {};
4077
4077
  delete pkg.dependencies.pg;
4078
- // Ensure essentials
4079
- pkg.dependencies.express = pkg.dependencies.express || '^4.19.0';
4080
- pkg.dependencies.bcryptjs = pkg.dependencies.bcryptjs || '^2.4.3';
4081
- pkg.dependencies.jsonwebtoken = pkg.dependencies.jsonwebtoken || '^9.0.0';
4082
- pkg.dependencies.helmet = pkg.dependencies.helmet || '^7.0.0';
4083
- pkg.dependencies['express-rate-limit'] = pkg.dependencies['express-rate-limit'] || '^7.0.0';
4084
- pkg.dependencies.cors = pkg.dependencies.cors || '^2.8.5';
4085
- pkg.dependencies.dotenv = pkg.dependencies.dotenv || '^16.0.0';
4086
- pkg.dependencies.nodemailer = pkg.dependencies.nodemailer || '^6.9.0';
4087
- pkg.dependencies['express-validator'] = pkg.dependencies['express-validator'] || '^7.0.0';
4088
4078
  delete pkg.dependencies.ioredis;
4079
+ // Force known-good versions — LLM often generates non-existent patch versions
4080
+ pkg.dependencies.express = '^4.19.0';
4081
+ pkg.dependencies.bcryptjs = '^2.4.3';
4082
+ pkg.dependencies.jsonwebtoken = '^9.0.0';
4083
+ pkg.dependencies.helmet = '^7.1.0';
4084
+ pkg.dependencies['express-rate-limit'] = '^7.2.0';
4085
+ pkg.dependencies.cors = '^2.8.5';
4086
+ pkg.dependencies.dotenv = '^16.4.0';
4087
+ pkg.dependencies.nodemailer = '^6.9.0';
4088
+ pkg.dependencies['express-validator'] = '^7.0.1';
4089
4089
  pkg.scripts = pkg.scripts || {};
4090
4090
  pkg.scripts.start = 'node server/index.js';
4091
4091
  fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2), 'utf8');
package/src/constants.mjs CHANGED
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
5
5
  const __filename = fileURLToPath(import.meta.url);
6
6
  const __dirname = path.dirname(__filename);
7
7
 
8
- export const VERSION = '13.5.46';
8
+ export const VERSION = '13.5.47';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11