| 1234567891011121314151617181920 |
- {
- "name": "gogs-webhook-server",
- "version": "1.0.0",
- "description": "Modular Node.js server for handling Gogs webhooks",
- "main": "src/index.js",
- "type": "module",
- "scripts": {
- "start": "node src/index.js",
- "dev": "node --watch src/index.js",
- "install": "cd client && npm install",
- "build": "cd client && npm run build",
- "postinstall": "npm run build"
- },
- "keywords": ["gogs", "webhook", "git"],
- "author": "",
- "license": "ISC",
- "engines": {
- "node": ">=18.0.0"
- }
- }
|