Files
shannon/apps/cli/package.json
T
ezl-keygraph dc2a4fe4e8 feat: brand the npm page, CLI output, and reports (#432)
* docs: rebuild the npm package README on the main README's identity

* docs: point the README banner fallback at an asset that exists

* docs: declare the npm package author, homepage, and issue tracker

* docs(cli): retire "Framework" and settle on the canonical product line

* docs: describe the banner image in alt text instead of repeating the lockup

* feat(cli): print a plain-text banner when stdout is not a terminal

* feat(report): attribute the markdown report from a shared brand constant

* feat(cli): frame the plain-text banner with rules and split the version line

* docs: drop the URL from the npm author field
2026-08-27 18:53:56 +05:30

56 lines
1.2 KiB
JSON

{
"name": "@keygraph/shannon",
"version": "0.0.0",
"description": "Shannon is an autonomous white-box AI pentester for web applications and APIs, by Keygraph.",
"type": "module",
"main": "dist/index.mjs",
"bin": {
"shannon": "dist/index.mjs"
},
"files": [
"dist",
"infra"
],
"scripts": {
"build": "tsdown",
"check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@temporalio/client": "^1.11.0",
"chokidar": "^5.0.0",
"dotenv": "^17.3.1",
"smol-toml": "^1.6.1"
},
"keywords": [
"security",
"pentest",
"penetration-testing",
"vulnerability-assessment",
"ai",
"white-box",
"owasp",
"exploitation",
"appsec",
"keygraph"
],
"author": "Keygraph, Inc.",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/KeygraphHQ/shannon/issues"
},
"homepage": "https://github.com/KeygraphHQ/shannon#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KeygraphHQ/shannon.git",
"directory": "apps/cli"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"tsdown": "^0.21.5"
}
}