troutbot/package.json
NotAShelf d95fa2c8e5
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ic08e7c4b5b4f4072de9e2f9a701e977b6a6a6964
2026-01-30 23:59:02 +03:00

32 lines
875 B
JSON

{
"name": "troutbot",
"version": "1.0.0",
"description": "GitHub webhook bot that analyzes issues and PRs for impact on the trout population",
"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 ."
},
"dependencies": {
"@octokit/rest": "^21.0.0",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"express-rate-limit": "^8.2.1",
"jiti": "^2.4.0",
"winston": "^3.14.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}