-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.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
60
61
62
63
64
{
"name": "reviewgate",
"version": "0.1.0-alpha.15",
"description": "Independent code-review control loop for Claude Code and Codex — verifies diffs, requires explicit finding outcomes, and records honest defer/escalation states.",
"type": "module",
"packageManager": "bun@1.3.14",
"license": "MIT",
"author": "Markus Wiesecke (https://github.com/Codevena)",
"homepage": "https://reviewgate.codevena.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/Codevena/reviewgate.git"
},
"bugs": {
"url": "https://github.com/Codevena/reviewgate/issues"
},
"keywords": [
"claude-code",
"code-review",
"ai-agent",
"llm",
"codex",
"gemini",
"openrouter",
"code-quality",
"static-analysis",
"developer-tools",
"cli",
"bun"
],
"engines": {
"bun": ">=1.0.0",
"node": ">=20"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun build src/cli/index.ts --compile --outfile dist/reviewgate && mkdir -p dist/grammars dist/bin-templates && cp node_modules/web-tree-sitter/web-tree-sitter.wasm node_modules/tree-sitter-typescript/*.wasm node_modules/tree-sitter-python/*.wasm dist/grammars/ && { cp bin-templates/*.sh dist/bin-templates/ 2>/dev/null || true; } && { cp -r src/personas dist/personas 2>/dev/null || true; }",
"test": "bun test --timeout=15000 --no-orphans",
"test:unit": "bun test tests/unit --timeout=15000 --no-orphans",
"test:integration": "bun test tests/integration --timeout=15000 --no-orphans",
"typecheck": "tsc --noEmit",
"lint": "biome check src tests bin",
"format": "biome format --write src tests",
"verify:npm": "node --check bin/reviewgate.cjs && bun run scripts/verify-publish.ts",
"build:npm": "bun run scripts/build-npm-packages.ts",
"self-review": "bun run dev init && bun run dev gate --hook trigger </dev/null && bun run dev gate --hook stop </dev/null"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"citty": "^0.1.6",
"minimatch": "^10.2.5",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2",
"ulid": "^2.3.0",
"web-tree-sitter": "^0.26.9",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"fast-check": "^4.8.0",
"typescript": "^5.5.0"
}
}