-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "vibesafe",
"version": "1.3.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": "echo \"Error: no test specified\" && exit 1"
},
"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",
"@typescript-eslint/typescript-estree": "^8.30.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"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"
}
}