-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 KB
/
package.json
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": "ai-reviewer",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "DEBUG=true npx tsx -r dotenv/config src/main.ts",
"build": "npx esbuild src/main.ts --bundle --platform=node --outfile=dist/index.js --minify",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@ai-sdk/anthropic": "^0.0.56",
"@ai-sdk/google": "^0.0.55",
"@ai-sdk/openai": "^0.0.72",
"@octokit/action": "^7.0.0",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"@octokit/types": "^13.6.1",
"ai": "^3.4.33",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"zod": "^3.23.8"
}
}