pentesting 0.52.1 → 0.52.2

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 (2) hide show
  1. package/dist/main.js +1 -1
  2. package/package.json +2 -2
package/dist/main.js CHANGED
@@ -349,7 +349,7 @@ var ORPHAN_PROCESS_NAMES = [
349
349
 
350
350
  // src/shared/constants/agent.ts
351
351
  var APP_NAME = "Pentest AI";
352
- var APP_VERSION = "0.52.1";
352
+ var APP_VERSION = "0.52.2";
353
353
  var APP_DESCRIPTION = "Autonomous Penetration Testing AI Agent";
354
354
  var LLM_ROLES = {
355
355
  SYSTEM: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.52.1",
3
+ "version": "0.52.2",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -19,7 +19,7 @@
19
19
  "dev:tsx": "tsx src/platform/tui/main.tsx",
20
20
  "build": "tsup",
21
21
  "start": "node dist/main.js",
22
- "test": "mkdir -p .pentesting && TMPDIR=.pentesting vitest run",
22
+ "test": "mkdir -p .vitest && TMPDIR=.vitest vitest run && rm -rf .vitest .pentesting",
23
23
  "test:watch": "vitest",
24
24
  "lint": "tsc --noEmit",
25
25
  "prepublishOnly": "npm run build",