-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "repokeeper",
"version": "0.1.0",
"description": "AI-powered GitHub repository maintenance agent",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'"
},
"keywords": [
"github",
"ai",
"maintainer",
"webhook",
"triage",
"pull-request"
],
"author": "GodsBoy <dhuysamen@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/rest": "^21.1.0",
"express": "^5.0.1",
"express-rate-limit": "^8.3.0",
"js-yaml": "^4.1.1",
"openai": "^4.80.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/supertest": "^7.2.0",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}