forked from villesau/ai-codereviewer
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "ai-code-reviewer",
"version": "2.0.0",
"description": "Advanced AI-powered code reviews with multiple model support",
"main": "lib/src/main.js",
"author": "Luís Severgnini",
"license": "MIT",
"scripts": {
"build": "tsc",
"package": "yarn build && ncc build lib/src/main.js --source-map --license licenses.txt",
"format": "prettier --write '**/*.{ts,json,md,yml}'",
"lint": "eslint . --ext .ts",
"test": "jest",
"prepare": "husky install",
"precommit": "yarn lint && yarn test",
"dev": "ts-node src/main.ts",
"generate-pr-payload": "ts-node scripts/generate-pr-payload.ts",
"test:e2e": "yarn build && ts-node scripts/test-e2e.ts"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@anthropic-ai/sdk": "^0.33.1",
"@google/generative-ai": "^0.21.0",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.4.7",
"minimatch": "^9.0.3",
"openai": "^4.28.0",
"parse-diff": "^0.11.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.11.0"
}
}