forked from coderabbitai/ai-pr-reviewer
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.4 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
51
{
"name": "openai-pr-reviewer",
"version": "0.0.0",
"private": true,
"description": "OpenAI-based PR Reviewer and Summarizer.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --license licenses.txt",
"act": "npm run build && npm run package && ./bin/act pull_request_target --secret-file .secrets",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluxninja/openai-pr-reviewer.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@dqbd/tiktoken": "^1.0.2",
"@octokit/action": "^5.0.2",
"minimatch": "^7.4.2",
"node-fetch": "^3.3.1",
"p-limit": "^4.0.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node": "^18.15.10",
"@typescript-eslint/parser": "^5.57.0",
"@vercel/ncc": "^0.36.1",
"chatgpt": "^5.1.2",
"eslint": "^8.36.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.8.7",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}