-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "prr",
"version": "1.0.0",
"description": "CLI tool to automatically resolve PR review comments",
"type": "module",
"main": "dist/tools/prr/index.js",
"bin": {
"prr": "./dist/tools/prr/index.js",
"pill": "./dist/tools/pill/index.js",
"split-exec": "./dist/tools/split-exec/index.js",
"split-plan": "./dist/tools/split-plan/index.js",
"split-rewrite-plan": "./dist/tools/split-rewrite-plan/index.js",
"story": "./dist/tools/story/index.js",
"eval": "./dist/tools/eval/index.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc",
"typecheck:noemit": "tsc --noEmit",
"start": "node dist/tools/prr/index.js",
"start:bun": "bun dist/tools/prr/index.js",
"dev": "bun --watch tools/prr/index.ts",
"test": "vitest",
"test:elizacloud": "echo 'No test-elizacloud script; set ELIZACLOUD_API_KEY and run pill or prr'",
"eval": "node dist/tools/eval/index.js",
"lint:workflows": "actionlint .github/workflows/",
"update-model-catalog": "tsx tools/model-catalog/fetch-provider-catalog.ts"
},
"keywords": [
"github",
"pr",
"code-review",
"automation",
"copilot"
],
"author": "",
"license": "MIT",
"dependencies": {
"diff": "^5.2.0",
"@anthropic-ai/sdk": "^0.32.1",
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"openai": "^4.73.0",
"ora": "^8.1.0",
"simple-git": "^3.27.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"typescript": "^5.7.2",
"@types/diff": "^5.2.0",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}