troutbot/package.json
NotAShelf 773ea27295
chore: bump deps; add vitest
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ifb5028c94fa2bb46952c0dbd1706a4926a6a6964
2026-02-07 16:28:47 +03:00

38 lines
1 KiB
JSON

{
"name": "troutbot",
"version": "1.0.0",
"description": "GitHub webhook bot that analyzes issues and PRs for impact on trout population",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts --format cjs --dts --clean",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint .",
"fmt": "prettier --write .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"jiti": "^2.6.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}