-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "pwnkit-cli",
"type": "module",
"version": "0.7.10",
"description": "The leading open-source agentic AI pentest framework. Autonomously discover, exploit, and verify vulnerabilities in web apps, AI/LLM apps, npm packages, and source code.",
"bin": {
"pwnkit-cli": "dist/pwnkit.js"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"dist"
],
"scripts": {
"build": "pnpm -r exec rm -f tsconfig.tsbuildinfo && pnpm --filter @pwnkit/shared build && pnpm --filter @pwnkit/db --filter @pwnkit/templates build && pnpm -r build && pnpm run build:bundle",
"build:bundle": "node ./scripts/bundle-cli.mjs",
"dev": "pnpm -r --parallel dev",
"lint": "pnpm -r exec tsc --noEmit",
"test": "pnpm --filter @pwnkit/core test && pnpm --filter @pwnkit/test-targets test",
"bench": "pnpm --filter @pwnkit/benchmark bench",
"bench:quick": "pnpm --filter @pwnkit/benchmark bench:quick",
"consolidate-xbow": "pnpm --filter @pwnkit/benchmark consolidate-xbow",
"clean": "pnpm -r clean",
"vulnerable": "PORT=43100 pnpm --filter @pwnkit/test-targets vulnerable",
"safe": "PORT=43101 pnpm --filter @pwnkit/test-targets safe"
},
"keywords": [
"ai",
"application-security",
"mcp",
"owasp",
"security",
"red-team",
"llm",
"prompt-injection"
],
"author": "PwnKit Labs",
"homepage": "https://pwnkit.com",
"bugs": {
"url": "https://github.com/PwnKit-Labs/pwnkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PwnKit-Labs/pwnkit.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {
"@types/pdfkit": "^0.13.9",
"drizzle-orm": "^0.44.0",
"node-sqlite3-wasm": "^0.8.55",
"pdfkit": "^0.15.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"esbuild": "^0.27.4"
},
"pnpm": {
"overrides": {
"esbuild": "^0.27.4"
}
}
}