-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 957 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 957 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
{
"name": "bounty-bot",
"version": "1.0.0",
"description": "GitHub bounty validation bot - controlled by Atlas via API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint src/",
"backfill": "tsx scripts/backfill-issues.ts"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"express": "^4.21.0",
"ioredis": "^5.10.1",
"openai": "^6.33.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^4.17.21",
"@types/node": "^22.10.0",
"eslint": "^10.2.0",
"eslint-plugin-no-catch-all": "^1.1.0",
"globals": "^17.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}