-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.76 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.76 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "codegate-ai",
"version": "0.12.4",
"description": "Pre-flight security scanner for AI coding tool configurations.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jonathansantilli/codegate.git"
},
"homepage": "https://github.com/jonathansantilli/codegate#readme",
"bugs": {
"url": "https://github.com/jonathansantilli/codegate/issues"
},
"keywords": [
"ai-security",
"cli",
"code-scanning",
"codex",
"config-security",
"mcp",
"prompt-injection",
"security"
],
"bin": {
"codegate": "dist/cli.js",
"codegate-ai": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-assets.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:perf": "vitest run tests/perf/scan-performance.test.ts",
"test:reliability": "vitest run tests/reliability/signal-handling.test.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run --no-ci",
"prepare": "husky"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx}": [
"eslint --fix --max-warnings=0 --no-warn-ignored",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"ajv": "^8.18.0",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"ink": "^6.8.0",
"js-yaml": "^4.1.1",
"jsonc-parser": "^3.3.1",
"react": "^19.2.4",
"smol-toml": "^1.6.0",
"which": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^4.1.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}