25 lines
638 B
JSON
25 lines
638 B
JSON
{
|
|
"name": "bside-webhook-proxy",
|
|
"version": "1.0.0",
|
|
"description": "Multi-project webhook proxy for incoming webhooks (Square, Stripe, GitHub, etc.) that forwards to Appwrite functions with proper auth headers.",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node server.js",
|
|
"dev": "tsx watch src/server.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.19.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.12.7",
|
|
"tsx": "^4.7.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"license": "MIT"
|
|
} |