forked from coderabbitai/ai-pr-reviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
52
53
54
55
56
57
58
59
{
"name": "openai-pr-reviewer",
"version": "0.0.0",
"private": true,
"description": "OpenAI-based PR Reviewer and Summarizer.",
"main": "lib/main.js",
"scripts": {
"build": "cp node_modules/@dqbd/tiktoken/tiktoken_bg.wasm dist/tiktoken_bg.wasm && 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.7",
"@octokit/action": "^6.0.4",
"@octokit/plugin-retry": "^4.1.3",
"@octokit/plugin-throttling": "^6.1.0",
"minimatch": "^9.0.1",
"node-fetch": "^3.3.1",
"p-limit": "^4.0.0",
"p-retry": "^5.1.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vercel/ncc": "^0.36.1",
"chatgpt": "^5.2.5",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.8.8",
"ts-jest": "^27.1.2",
"typescript": "^4.9.5"
}
}