-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "oh-my-vul",
"version": "0.9.0",
"description": "LLM-friendly vulnerability research skills for Claude Code",
"type": "module",
"main": "dist/index.js",
"bin": {
"omv": "dist/cli/omv.js",
"omv-mcp": "dist/cli/omv-mcp.js"
},
"scripts": {
"build": "tsc && node -e \"import('fs').then(fs => { fs.chmodSync('dist/cli/omv.js', 0o755); fs.chmodSync('dist/cli/omv-mcp.js', 0o755); })\"",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "node --test dist/**/__tests__/*.test.js",
"sync-assets": "python3 scripts/sync_skill_assets.py",
"sync-metadata": "python3 scripts/sync_metadata.py",
"validate": "npm run build && npm test && python3 scripts/release_check.py",
"pack:check": "python3 scripts/check_npm_pack.py",
"release:check": "npm run validate && npm run pack:check",
"prepublishOnly": "npm run validate && npm run pack:check",
"setup": "node dist/cli/omv.js setup",
"doctor": "node dist/cli/omv.js doctor"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/cli/*.d.ts",
"dist/cli/*.d.ts.map",
"dist/cli/*.js",
"dist/cli/*.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map",
"README.zh-CN.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"RELEASE.md",
"docs/",
"skills/",
"shared/",
"contracts/",
"agents/",
"registry.yaml"
],
"keywords": [
"claude-code",
"security",
"vulnerability",
"cve",
"vuldb",
"skills"
],
"author": "bx33661",
"repository": {
"type": "git",
"url": "git+https://github.com/bx33661/oh-my-vul.git",
"homepage": "https://github.com/bx33661/oh-my-vul#readme",
"bugs": "https://github.com/bx33661/oh-my-vul/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^26.0.0",
"typescript": "^6.0.3"
},
"dependencies": {
"boxen": "^8.0.1",
"cli-table3": "^0.6.5",
"picocolors": "^1.1.1",
"string-width": "^8.2.1",
"wrap-ansi": "^10.0.0",
"yaml": "^2.8.3"
}
}