-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "openreview",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Open-source agentic code review tool — AI-powered bug detection, sandboxed execution, codebase-aware chat, full GitHub sync",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "pnpm -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r typecheck",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@langchain/anthropic": "^0.3.34",
"@langchain/core": "^0.3.80",
"@langchain/google-genai": "^0.2.18",
"@langchain/langgraph": "^0.2.74",
"@langchain/openai": "^0.4.9",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"axios": "^1.13.6",
"eslint": "^10.0.3",
"eslint-plugin-import-x": "^4.16.2",
"prettier": "^3.8.1",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0",
"zod": "^4.3.6"
}
}