This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.57 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
{
"name": "@openloop/webhook-receiver",
"version": "0.1.0",
"description": "Verify OpenLoop webhook signatures (HMAC-SHA256, Stripe-style). Zero runtime dependencies.",
"keywords": [
"openloop",
"webhook",
"hmac",
"signature",
"verify",
"verification"
],
"homepage": "https://github.com/OpenLoopHealth/openloop-webhook-receiver#readme",
"bugs": {
"url": "https://github.com/OpenLoopHealth/openloop-webhook-receiver/issues"
},
"license": "MIT",
"author": "OpenLoop Health <engineering@openloophealth.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenLoopHealth/openloop-webhook-receiver.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@openloop/eslint-config": "^0.2.0",
"@types/node": "^22.0.0",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^2.1.9",
"zod": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}