-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.3 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
{
"name": "vibesafe",
"version": "1.4.0",
"description": "A CLI tool to scan your codebase for security vibes.",
"main": "dist/index.js",
"bin": {
"vibesafe": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slowcoder360/vibesafe.git"
},
"keywords": [
"security",
"scanner",
"cli",
"vulnerability",
"secrets",
"dependencies",
"cve"
],
"author": "slowcoder360",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/slowcoder360/vibesafe/issues"
},
"homepage": "https://github.com/slowcoder360/vibesafe#readme",
"devDependencies": {
"@types/node": "^22.14.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/parser": "^8.30.1",
"@typescript-eslint/types": "^8.30.1",
"axios": "^1.8.4",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"ignore": "^7.0.3",
"js-yaml": "^4.1.0",
"openai": "^4.95.0",
"ora": "^5.4.1"
}
}