-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "open-coderabbit-server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/server.ts",
"test": "vitest",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ai-sdk/google": "^2.0.0-beta.18",
"@ai-sdk/openai": "^2.0.0-beta.15",
"@trpc/server": "^10.45.2",
"ai": "^5.0.0-beta.33",
"cors": "^2.8.5",
"diff": "^8.0.2",
"dotenv": "^17.2.1",
"ws": "^8.18.3",
"zod": "^4.0.14"
},
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/node": "^24.1.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}