sdlc-orchestrator/package.json

28 lines
686 B
JSON

{
"name": "sdlc-orchestrator",
"version": "1.0.0",
"description": "Webhook-driven SDLC orchestrator for Gitea + Coder + Claude Code",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.7.6",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/node-cron": "^3.0.11",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"eslint": "^9.25.1",
"prettier": "^3.5.3"
}
}