-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1009 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1009 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@eulogik/autopr",
"version": "1.0.1",
"description": "CLI tool and GitHub Action that auto-generates PR descriptions and reviews code using small LLMs via OpenRouter",
"type": "module",
"bin": {
"autopr": "./dist/cli.js"
},
"scripts": {
"build": "tsc && cp -r src/prompts dist/prompts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"prepare": "npm run build",
"dev": "tsc --watch"
},
"keywords": [
"git",
"pr",
"github",
"llm",
"openrouter",
"code-review"
],
"author": "AutoPR",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^21.0.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"src/prompts"
]
}