-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"name": "web-code-reviewer",
"version": "1.14.53",
"description": "Automated code review using LLM (Claude/OpenAI) for GitHub PRs",
"main": "dist/index.js",
"scripts": {
"build": "node scripts/update-version.js && ncc build src/index.js -o dist",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:local": "node scripts/test-local.js",
"lint": "eslint src/**/*.js test/**/*.js",
"lint:fix": "eslint src/**/*.js test/**/*.js --fix",
"format": "prettier --write src/**/*.js test/**/*.js",
"format:check": "prettier --check src/**/*.js test/**/*.js",
"lint:format": "npm run lint:fix && npm run format",
"check": "npm run lint && npm run format:check",
"lint-staged": "lint-staged"
},
"keywords": [
"github-action",
"code-review",
"llm",
"claude",
"openai",
"automation"
],
"author": "Tajawal",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"java-ast": "^0.4.1",
"node-fetch": "^3.3.2",
"php-parser": "^3.2.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vercel/ncc": "^0.38.0",
"dotenv": "^17.2.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.1.3",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
}
}