-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.32 KB
/
package.json
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
{
"name": "better",
"version": "0.1.0",
"main": "index.js",
"type": "module",
"scripts": {
"git:add:dist": "git add dist",
"build": "ncc build index.js --license licenses.txt",
"lint": "npx lint-staged",
"preCommit": "npm-run-all -s build git:add:dist lint",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "is-ci || husky",
"upkg": "npx npm-check-updates -i --format group"
},
"lint-staged": {
"!*.prettierignore": [
"prettier --write"
],
"*.js": "eslint --fix"
},
"keywords": [],
"author": "Murtuzaali Surti",
"license": "ISC",
"description": "A code reviewer bot.",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@anthropic-ai/sdk": "^0.30.1",
"is-ci": "^3.0.1",
"micromatch": "^4.0.8",
"openai": "^4.68.4",
"parse-diff": "^0.11.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.13.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-check-updates": "^17.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3"
}
}