-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 844 Bytes
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
{
"name": "verix",
"version": "1.0.0",
"description": "Open source AI code review bot with dependency graph awareness",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"code-review",
"ai",
"github-app",
"dependency-graph"
],
"author": "Surith",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.24.0",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@octokit/app": "^16.1.2",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"dotenv": "^17.3.1",
"smee-client": "^5.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}