-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "@expo/code-review-cli",
"version": "0.0.0-dev",
"description": "Generic, config-driven AI code reviewer engine. Repos supply their agents via .expo-code-review/.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/expo/code-review-cli.git"
},
"type": "module",
"bin": {
"ecr": "build/cli.js",
"expo-code-review": "build/cli.js",
"code-review-cli": "build/cli.js",
"review-research-mcp": "build/research-mcp/cli.js"
},
"files": [
"build",
"templates"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"@hono/node-server": "2.0.10"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf build",
"typecheck": "tsc --noEmit",
"lint": "oxlint src",
"fmt": "oxfmt --threads=1 src",
"fmt:check": "oxfmt --threads=1 --check src",
"llp:check": "./ref-check",
"dev": "bun run src/cli.ts",
"test:unit": "bun test",
"research:evaluate:corpora": "bun run build && node scripts/research/evaluate-corpora.mjs",
"research:evaluate:expo": "bun run build && node scripts/research/evaluate-expo-prs.mjs",
"release": "bash scripts/release.sh",
"prepublishOnly": "rimraf build && tsc -p tsconfig.build.json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"@opencode-ai/sdk": "1.18.4",
"cheerio": "1.1.2",
"minisearch": "7.2.0",
"opencode-ai": "1.18.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "20.14.8",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"rimraf": "3.0.2",
"typescript": "5.5.4"
}
}