-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 865 Bytes
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
{
"name": "commitreview",
"version": "2.0.0",
"description": "Bring-your-own-key AI code review as a GitHub Action. Works with any OpenAI-compatible endpoint.",
"type": "module",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test test/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -p tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check-all": "npm run format:check && npm run lint && npm run typecheck && npm test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.20.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.2.0",
"globals": "^17.7.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}