-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "codesentri",
"version": "0.1.0",
"description": "AI-powered code review bot for GitHub",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"db:migrate": "tsx src/db/migrate.ts",
"tunnel": "smee -u $SMEE_URL -t http://localhost:3001/api/webhook"
},
"keywords": [
"github",
"code-review",
"ai",
"claude"
],
"author": "CrashBytes",
"type": "module",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/webhooks": "^13.4.2",
"@octokit/webhooks-types": "^7.6.1",
"dotenv": "^16.4.7",
"express": "^4.21.0",
"octokit": "^4.1.0",
"pg": "^8.13.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"stripe": "^17.5.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"@types/pg": "^8.11.0",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^2.1.9",
"smee-client": "^2.0.4",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}