-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "payhook-ng",
"version": "0.1.0",
"description": "TypeScript-first webhook verification building blocks for Paystack and Flutterwave.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./paystack": {
"types": "./dist/paystack/index.d.ts",
"default": "./dist/paystack/index.js"
},
"./flutterwave": {
"types": "./dist/flutterwave/index.d.ts",
"default": "./dist/flutterwave/index.js"
},
"./nextjs": {
"types": "./dist/integrations/nextjs.d.ts",
"default": "./dist/integrations/nextjs.js"
},
"./express": {
"types": "./dist/integrations/express.d.ts",
"default": "./dist/integrations/express.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"paystack",
"flutterwave",
"webhooks",
"webhook",
"signature",
"hmac",
"security",
"typescript",
"node",
"nextjs"
],
"author": "PayHook Contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/ciobiano/payhook-ng.git"
},
"bugs": {
"url": "https://github.com/ciobiano/payhook-ng/issues"
},
"homepage": "https://github.com/ciobiano/payhook-ng#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.0.10",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}