-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vigilo",
"version": "1.0.3",
"description": "Vigilo - Web3 Smart Contract Security Auditing Orchestrator for OpenCode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"vigilo": "./bin/vigilo.js"
},
"files": [
"dist",
"bin",
"skills",
"postinstall.mjs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun run build.mjs",
"build:all": "bun run build && bun run build:binaries",
"build:binaries": "bun run script/build-binaries.ts",
"dev": "bun run build --watch",
"clean": "rimraf dist",
"prepublishOnly": "bun run clean && bun run build",
"postinstall": "node postinstall.mjs",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"keywords": [
"opencode",
"plugin",
"web3",
"smart-contract",
"security",
"audit",
"solidity",
"vyper",
"cairo",
"foundry",
"hardhat"
],
"author": "catower",
"license": "MIT",
"dependencies": {
"@ast-grep/cli": "^0.40.0",
"@ast-grep/napi": "^0.40.0",
"@clack/prompts": "^0.11.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"adm-zip": "^0.5.16",
"commander": "^14.0.2",
"detect-libc": "^2.0.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"picomatch": "^4.0.2",
"zod": "^3.24.4"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.19",
"@opencode-ai/sdk": "^1.1.19"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.19",
"@opencode-ai/sdk": "^1.1.19",
"@types/adm-zip": "^0.5.7",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10",
"@types/picomatch": "^3.0.2",
"esbuild": "^0.24.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"vigilo-darwin-arm64": "1.0.3",
"vigilo-darwin-x64": "1.0.3",
"vigilo-linux-arm64": "1.0.3",
"vigilo-linux-arm64-musl": "1.0.3",
"vigilo-linux-x64": "1.0.3",
"vigilo-linux-x64-musl": "1.0.3",
"vigilo-windows-x64": "1.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/PurpleAILAB/Vigilo"
},
"bugs": {
"url": "https://github.com/PurpleAILAB/Vigilo/issues"
},
"homepage": "https://github.com/PurpleAILAB/Vigilo#readme"
}