-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.31 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.31 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "webhook-hmac-kit",
"version": "1.0.0",
"description": "Lightweight, production-ready toolkit for signing and verifying webhook requests using HMAC-SHA256",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./express": {
"import": {
"types": "./dist/adapters/express.d.ts",
"default": "./dist/adapters/express.js"
},
"require": {
"types": "./dist/adapters/express.d.cts",
"default": "./dist/adapters/express.cjs"
}
},
"./fastify": {
"import": {
"types": "./dist/adapters/fastify.d.ts",
"default": "./dist/adapters/fastify.js"
},
"require": {
"types": "./dist/adapters/fastify.d.cts",
"default": "./dist/adapters/fastify.cjs"
}
},
"./nest": {
"import": {
"types": "./dist/adapters/nest.d.ts",
"default": "./dist/adapters/nest.js"
},
"require": {
"types": "./dist/adapters/nest.d.cts",
"default": "./dist/adapters/nest.cjs"
}
}
},
"sideEffects": false,
"files": ["dist"],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "npm run build"
},
"keywords": [
"webhook",
"hmac",
"sha256",
"signature",
"verify",
"sign",
"security",
"replay-protection"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JosephDoUrden/webhook-hmac-kit.git"
},
"homepage": "https://github.com/JosephDoUrden/webhook-hmac-kit#readme",
"bugs": {
"url": "https://github.com/JosephDoUrden/webhook-hmac-kit/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^25.2.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}