pentesting 0.20.0 → 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.
Files changed (2) hide show
  1. package/dist/main.js +1 -1
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -117,7 +117,7 @@ var INPUT_PROMPT_PATTERNS = [
117
117
  var ID_LENGTH = AGENT_LIMITS.ID_LENGTH;
118
118
  var ID_RADIX = AGENT_LIMITS.ID_RADIX;
119
119
  var APP_NAME = "Pentest AI";
120
- var APP_VERSION = "0.20.0";
120
+ var APP_VERSION = "0.21.0";
121
121
  var APP_DESCRIPTION = "Autonomous Penetration Testing AI Agent";
122
122
  var LLM_ROLES = {
123
123
  SYSTEM: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.20.0",
3
+ "version": "0.21.0",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -24,7 +24,7 @@
24
24
  "lint": "tsc --noEmit",
25
25
  "prepublishOnly": "npm run build",
26
26
  "release": "npm run release:patch",
27
- "publish:token": "npm config set //registry.npmjs.org/:_authToken=${NPM_TOKEN} && npm run build && npm publish",
27
+ "publish:token": "npm publish --access public --cache /tmp/npm-cache",
28
28
  "release:patch": "npm version patch && npm run build && npm run publish:token",
29
29
  "release:minor": "npm version minor && npm run build && npm run publish:token",
30
30
  "release:major": "npm version major && npm run build && npm run publish:token",
@@ -86,4 +86,4 @@
86
86
  "typescript": "^5.7.3",
87
87
  "vitest": "^4.0.18"
88
88
  }
89
- }
89
+ }