package.json 510 B

1234567891011121314151617181920
  1. {
  2. "name": "gogs-webhook-server",
  3. "version": "1.0.0",
  4. "description": "Modular Node.js server for handling Gogs webhooks",
  5. "main": "src/index.js",
  6. "type": "module",
  7. "scripts": {
  8. "start": "node src/index.js",
  9. "dev": "node --watch src/index.js",
  10. "install": "cd client && npm install",
  11. "build": "cd client && npm run build",
  12. "postinstall": "npm run build"
  13. },
  14. "keywords": ["gogs", "webhook", "git"],
  15. "author": "",
  16. "license": "ISC",
  17. "engines": {
  18. "node": ">=18.0.0"
  19. }
  20. }