-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.1 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
{
"name": "diffgate-review",
"version": "0.7.7",
"mcpName": "io.github.srbsa/diffgate",
"description": "Triage for AI-generated code review — grades each changed line green/yellow/orange by impact so your attention lands where it matters. High-signal, low-noise (0 false blocks), deterministic, and fast. In your coding agent (MCP), editor, and CLI.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/srbsa/diffgate.git"
},
"bugs": {
"url": "https://github.com/srbsa/diffgate/issues"
},
"homepage": "https://github.com/srbsa/diffgate#readme",
"bin": {
"diffgate": "dist/cli.js"
},
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
}
},
"files": [
"dist",
"src",
"mock_project",
".github/workflows/diffgate.yml"
],
"scripts": {
"build": "node esbuild.config.js && tsc -p tsconfig.types.json",
"build:ext": "npm run build --prefix extension",
"package:ext": "npm run package --prefix extension",
"typecheck": "tsc --noEmit && tsc --noEmit -p extension/tsconfig.json",
"test": "npm run build && npm run build:ext && node --test test/core.test.js test/agent.test.js test/mcp.test.js test/llm.test.js test/guidelines.test.js test/learnings.test.js test/benchmark.test.js test/graph.test.js test/impact.test.js test/signal.test.js test/security.test.js test/graph_cli.test.js test/taint.test.js test/state.test.js test/session.test.js test/github.test.js test/bench.test.js test/compliance.test.js test/metrics.test.js test/policy.test.js test/scaffold.test.js test/adoption.test.js test/marginal.test.js test/scenarios.test.js test/reachability.test.js test/graph-shapes.test.js test/python-rules.test.js test/php-rules.test.js test/go-rules.test.js test/ruby-rules.test.js test/java-rules.test.js test/csharp-rules.test.js test/kotlin-rules.test.js test/tsast-core.test.js test/recall.test.js test/history.test.js test/cli-flags.test.js test/hygiene.test.js && node extension/test/smoke.cjs",
"test:e2e": "npm run build && node --test test/codegraph-e2e.test.js",
"prepublishOnly": "npm run typecheck && npm test"
},
"dependencies": {
"@babel/parser": "^7.25.0",
"@tree-sitter-grammars/tree-sitter-kotlin": "1.1.0",
"chokidar": "^3.6.0",
"tree-sitter-c-sharp": "0.23.5",
"tree-sitter-go": "0.25.0",
"tree-sitter-java": "0.23.5",
"tree-sitter-php": "0.24.2",
"tree-sitter-python": "0.25.0",
"tree-sitter-ruby": "0.23.1",
"web-tree-sitter": "0.26.9"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.84.0",
"esbuild": "^0.28.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"code-review",
"code-review-triage",
"ai-code-review",
"code-review-tool",
"coding-agent",
"mcp",
"claude-code",
"cursor",
"pre-commit-hook",
"security-gate",
"diff-analysis",
"static-analysis",
"secrets-detection",
"sql-injection",
"vscode"
],
"license": "Apache-2.0"
}