pentesting 0.8.44 → 0.12.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.
@@ -0,0 +1,2 @@
1
+
2
+ export { }
File without changes
@@ -8,8 +8,8 @@ import {
8
8
  readVersionCache,
9
9
  semverTuple,
10
10
  writeVersionCache
11
- } from "./chunk-TTQCHK5V.js";
12
- import "./chunk-UCB4BWTB.js";
11
+ } from "./chunk-M5JWJSPW.js";
12
+ import "./chunk-JXR7HH4V.js";
13
13
  import "./chunk-3RG5ZIWI.js";
14
14
  export {
15
15
  checkForUpdate,
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.8.44",
3
+ "version": "0.12.2",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "bin": {
9
- "pentesting": "dist/index.js"
9
+ "pentesting": "dist/index.js",
10
+ "pentesting-mcp": "dist/mcp/mcp-server.js"
10
11
  },
11
12
  "files": [
12
13
  "dist",
@@ -16,7 +17,7 @@
16
17
  ],
17
18
  "scripts": {
18
19
  "dev": "tsx src/index.tsx",
19
- "build": "tsup src/index.tsx --format esm --dts --clean",
20
+ "build": "tsup src/index.tsx src/mcp/mcp-server.ts --format esm --dts --clean",
20
21
  "start": "node dist/index.js",
21
22
  "test": "vitest run",
22
23
  "test:watch": "vitest",
@@ -26,9 +27,9 @@
26
27
  "release:minor": "npm version minor && npm run build && npm publish",
27
28
  "release:major": "npm version major && npm run build && npm publish",
28
29
  "release": "npm run release:patch",
29
- "docker:build": "cd docker && docker-compose build",
30
- "docker:up": "cd docker && docker-compose up -d",
31
- "docker:down": "cd docker && docker-compose down"
30
+ "docker:build": "docker build -t agnusdei1207/pentesting:latest .",
31
+ "docker:push": "docker push agnusdei1207/pentesting:latest",
32
+ "docker:buildx": "docker buildx build --platform linux/amd64,linux/arm64 -t agnusdei1207/pentesting:latest --push ."
32
33
  },
33
34
  "repository": {
34
35
  "type": "git",
@@ -73,14 +74,16 @@
73
74
  "nanospinner": "^1.2.2",
74
75
  "ora": "^8.1.1",
75
76
  "react": "^18.3.1",
77
+ "uuid": "^13.0.0",
76
78
  "yaml": "^2.8.2"
77
79
  },
78
80
  "devDependencies": {
79
81
  "@types/node": "^22.13.1",
80
82
  "@types/react": "^18.3.18",
83
+ "@types/uuid": "^10.0.0",
81
84
  "tsup": "^8.3.6",
82
85
  "tsx": "^4.19.2",
83
86
  "typescript": "^5.7.3",
84
87
  "vitest": "^4.0.18"
85
88
  }
86
- }
89
+ }