-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 916 Bytes
/
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
{
"name": "pr-summarizer",
"version": "1.0.0",
"description": "GitHub Action to generate PR descriptions using AI",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js -o dist",
"test": "jest",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"github",
"action",
"pr",
"description",
"ai"
],
"author": "Your Organization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"openai": "^4.0.0",
"@anthropic-ai/sdk": "^0.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}