Files
Daan Schouteden 3d0e28f427 Init
2026-06-02 11:39:41 +02:00

25 lines
591 B
JSON

{
"name": "gitea-pr-review-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Central webhook service for PR reviews using Cursor SDK and Gitea API.",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"dry-run": "tsx scripts/dry-run.ts",
"check": "tsc --noEmit"
},
"dependencies": {
"@cursor/sdk": "latest",
"yaml": "^2.8.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^24.3.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}