Initial git webhooks service
All checks were successful
check / check (push) Successful in 14s

This commit is contained in:
matamune 2026-05-12 21:06:22 +00:00
commit 0ba9b9f95c
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324
17 changed files with 705 additions and 0 deletions

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "@peezy.tech/git-webhooks",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun src/server.ts",
"test": "bun test",
"check:types": "tsc --noEmit",
"check": "bun run check:types && bun test"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}