-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "ai-code-reviewer",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "npx tsx watch src/server.ts",
"webhook": "source .env && npx smee -u $WEBHOOK_PROXY_URL -t http://localhost:3000/api/webhook",
"typeCheck": "tsc --pretty --noEmit",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeYourFuture/ai-code-reviewer.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/CodeYourFuture/ai-code-reviewer/issues"
},
"homepage": "https://github.com/CodeYourFuture/ai-code-reviewer#readme",
"dependencies": {
"@octokit/webhooks": "^14.2.0",
"@octokit/webhooks-types": "^7.6.1",
"@openrouter/sdk": "^0.5.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"octokit": "^5.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.10",
"smee-client": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}