-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.61 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.61 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
63
64
65
66
67
68
69
70
{
"name": "github-agent",
"version": "0.1.0",
"description": "Autonomous GitHub engineering pipeline: takes an issue, ships a PR, and reviews its own diff before opening it.",
"main": "src/pipeline.js",
"bin": {
"github-agent": "src/pipeline.js"
},
"scripts": {
"test": "jest",
"issue": "node src/pipeline.js issue",
"review": "node src/pipeline.js review",
"triage": "node src/pipeline.js triage",
"verify": "node scripts/verify.js",
"smoke": "node -e \"const p = require('./src/pipeline.js'); if (typeof p.buildAuditTrail !== 'function') process.exit(1); console.log('ok');\""
},
"keywords": [
"ai",
"agent",
"claude",
"anthropic",
"github",
"automation",
"code-review",
"pull-request",
"engineering-agent",
"autonomous"
],
"author": "Hadar01",
"license": "MIT",
"homepage": "https://github.com/Hadar01/github-agents#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Hadar01/github-agents.git"
},
"bugs": {
"url": "https://github.com/Hadar01/github-agents/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"src/",
"scripts/",
"examples/",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"TESTING.md"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@octokit/rest": "^22.0.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"simple-git": "^3.36.0"
},
"devDependencies": {
"jest": "^30.3.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/repos/"
],
"modulePathIgnorePatterns": [
"/repos/"
]
}
}