-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "bangd",
"version": "0.0.1",
"description": "AI PR review assistant specialized for the BanDB database-engine vertical",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:action": "ncc build src/shell/action.ts -o dist --source-map --transpile-only",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "npm run build && node build/smoke.js",
"eval:corpus": "node eval/build-corpus.mjs",
"eval": "npm run build && node build/eval/run.js"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@anthropic-ai/sdk": "^0.40.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.8"
}
}