generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"name": "pr-review",
"description": "GitHub Actions that creates an AI-powered code review for pull requests",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"prestart": "npm install --frozen-lockfile",
"start": "npx tsx --env-file=.env.development src/index.ts",
"lint": "eslint . --report-unused-disable-directives",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.1",
"@octokit/action": "7.0.2",
"@octokit/plugin-retry": "6.1.0",
"@octokit/plugin-throttling": "8.2.0",
"@octokit/webhooks": "13.9.1",
"@sap-ai-sdk/ai-api": "1.17.0",
"@sap-ai-sdk/orchestration": "1.17.0",
"axios": "1.11.0",
"minimatch": "10.0.3",
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.0.17"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@types/node": "22.17.2",
"@vercel/ncc": "0.38.3",
"eslint": "9.33.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-sonarjs": "3.0.4",
"eslint-plugin-unicorn": "60.0.0",
"prettier": "3.6.2",
"tsx": "4.20.4",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"yaml": "2.8.1"
}
}