-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.47 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
{
"name": "nullsec-guard",
"version": "0.2.1",
"description": "Security scanner for AI-generated code. Finds vulnerabilities, gives risk scores, and generates fix prompts for Cursor, Claude, and Codex.",
"bin": {
"nullsec-guard": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "tsc"
},
"keywords": [
"security",
"ai-code",
"vibe-coding",
"static-analysis",
"sast",
"cli",
"cursor",
"claude",
"codex",
"npm-security",
"dependency-scanner",
"sarif",
"secrets",
"vulnerability",
"github-actions"
],
"license": "MIT",
"author": "trynullsec",
"repository": {
"type": "git",
"url": "https://github.com/trynullsec/nullsec-guard"
},
"bugs": {
"url": "https://github.com/trynullsec/nullsec-guard/issues"
},
"homepage": "https://github.com/trynullsec/nullsec-guard#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"glob": "^11.0.0",
"ora": "^8.2.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}