-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "opencode-shannon-plugin",
"version": "0.4.0",
"description": "AI-powered autonomous penetration testing plugin for OpenCode - standalone version with enhanced RE tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run clean && bun run build"
},
"keywords": [
"opencode",
"plugin",
"shannon",
"pentesting",
"security",
"autonomous-agent"
],
"author": "BandiAkarsh",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/BandiAkarsh/opencode-shannon-plugin.git"
},
"bugs": {
"url": "https://github.com/BandiAkarsh/opencode-shannon-plugin/issues"
},
"homepage": "https://github.com/BandiAkarsh/opencode-shannon-plugin#readme",
"dependencies": {
"@opencode-ai/plugin": "^1.1.19",
"js-yaml": "^4.1.1",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"bun-types": "1.3.6",
"typescript": "^5.7.3"
}
}