-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 848 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 848 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
{
"name": "github-reviewer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx dist/index.js",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --outDir dist",
"lint": "eslint \"src/**/*.ts*\"",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.15",
"@hono/node-server": "^1.13.8",
"@octokit/rest": "^21.1.1",
"ai": "^4.1.58",
"axios": "^1.8.3",
"dotenv": "^16.4.7",
"hono": "^4.7.4",
"jsonwebtoken": "^9.0.2",
"spinai": "^2.0.12",
"tsx": "^4.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"typescript": "5.5.4"
}
}