-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "ghostpatch",
"version": "1.0.1",
"description": "AI-powered security vulnerability scanner that runs locally via npm with zero infrastructure. Uses free HuggingFace models by default.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ghostpatch": "dist/cli/index.js",
"gp": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli/index.js",
"scan": "node dist/cli/index.js scan",
"serve": "node dist/cli/index.js serve",
"prepublishOnly": "npm run build"
},
"keywords": [
"security",
"scanner",
"vulnerability",
"sast",
"ai",
"sonarqube",
"owasp",
"mcp",
"static-analysis"
],
"author": "NeuralRays <neuralsoft@injectedsecurity.pro>",
"repository": {
"type": "git",
"url": "https://github.com/NeuralRays/ghostpatch.git"
},
"homepage": "https://github.com/NeuralRays/ghostpatch",
"bugs": {
"url": "https://github.com/NeuralRays/ghostpatch/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^14.0.3",
"glob": "^13.0.1",
"micromatch": "^4.0.8",
"chokidar": "^4.0.3"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"openai": "^6.18.0"
},
"devDependencies": {
"@types/micromatch": "^4.0.9",
"@types/node": "^22.12.0",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
}
}