-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@hookdeck/vercel",
"version": "0.3.1",
"description": "The Hookdeck Vercel Middleware adds the ability to authenticate, delay, filter, queue, throttle, and retry asynchronous HTTP requests (e.g., webhooks) made to a Vercel application. The use cases for this include managing webhooks from API providers such as Stripe, Shopify, and Twilio, or when building asynchronous APIs.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write '*.{json,js}' 'scripts/**/*.{js,ts}' './**/*.{js,ts}'",
"lint": "eslint --ext .ts,.tsx -c .eslintrc . && prettier --check '*.{json,js}' 'scripts/**/*.{js,ts}' './**/*.{js,ts}'",
"prepack": "npm run build",
"build": "tsup && cp -r scripts dist",
"postinstall": "node ./dist/scripts/addPrebuildScript.js --loglevel=verbose",
"posti": "node ./dist/scripts/addPrebuildScript.js --loglevel=verbose",
"prerelease": "npm run build",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hookdeck/hookdeck-vercel.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hookdeck/hookdeck-vercel/issues"
},
"homepage": "https://github.com/hookdeck/hookdeck-vercel#readme",
"dependencies": {
"@hookdeck/sdk": "^0.4.0",
"@vercel/edge": "^1.1.1",
"app-root-path": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"bin": {
"hookdeck-vercel": "./dist/scripts/prebuild.js"
}
}