-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "revu",
"version": "1.35.1",
"description": "Automated PR reviews using Claude Sonnet API",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"lint": "eslint --config eslint.config.mjs \"**/*.ts\" --fix && yarn typecheck",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"review-pr": "tsx src/cli/review-pr.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.63.0",
"@octokit/auth-app": "^8.0.0",
"@octokit/rest": "^22.0.0",
"@probot/get-private-key": "^2.1.1",
"axios": "^1.12.0",
"chalk": "^5.3.0",
"commander": "^14.0.0",
"dotenv": "^17.0.0",
"express": "^5.1.0",
"handlebars": "^4.7.8",
"ignore": "^7.0.5",
"js-yaml": "^4.1.0",
"openai": "^6.3.0",
"p-retry": "^7.0.0",
"picomatch": "^4.0.3",
"probot": "^14.0.0",
"ts-deepmerge": "^7.0.3",
"tsx": "^4.7.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@types/express": "^5.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.19.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"knip": "^5.61.2",
"lint-staged": "^16.1.6",
"prettier": "^3.5.1",
"typescript": "^5.9.2",
"vitest": "^3.2.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,yaml,yml,md}": [
"prettier --write"
]
},
"packageManager": "yarn@4.10.0"
}