-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.78 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.78 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
78
{
"name": "codedrift",
"version": "1.2.12",
"description": "Guardrails for AI-assisted development - Detects IDOR, missing input validation, hardcoded secrets, and other critical bugs in AI-generated code",
"type": "module",
"main": "dist/cli.js",
"bin": {
"codedrift": "./dist/bin.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "tsx --test tests/*.test.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamzzaaamalik/codedrift.git"
},
"bugs": {
"url": "https://github.com/hamzzaaamalik/codedrift/issues"
},
"homepage": "https://codedrift.dev",
"keywords": [
"ai-guardrails",
"github-copilot",
"chatgpt",
"cursor",
"ai-code-review",
"security-scanner",
"idor",
"sql-injection",
"xss",
"input-validation",
"vulnerability-detection",
"code-security",
"static-analysis",
"sast",
"security-audit",
"penetration-testing",
"owasp",
"secrets-scanner",
"api-security",
"typescript-security",
"javascript-security",
"devops-security",
"shift-left",
"devsecops",
"ci-cd-security"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"codedrift.config.example.json"
],
"author": "CodeDrift Contributors",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.2",
"tsx": "^4.21.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/typescript-estree": "^8.56.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"glob": "^13.0.6",
"ora": "^9.3.0",
"safe-regex2": "^5.0.0",
"simple-git": "^3.32.3",
"typescript": "^5.9.3"
}
}