-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "@hookdeck/openclaw",
"version": "0.1.0",
"description": "Reliable webhooks for OpenClaw. Verified, deduplicated, durably queued and retryable event delivery via the Hookdeck Event Gateway.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hookdeck/hookdeck-openclaw.git"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"hookdeck",
"webhooks",
"event-gateway"
],
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.6.34"
},
"build": {
"openclawVersion": "2026.6.34",
"bundledDist": false
}
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"typebox": "^1.1.39",
"zod": "^4.4.3"
},
"peerDependencies": {
"openclaw": "*"
},
"devDependencies": {
"@types/node": "^22.15.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"scripts": {
"test": "vitest run --exclude \"test/live/**\"",
"test:watch": "vitest --exclude \"test/live/**\"",
"typecheck": "tsc --noEmit",
"test:live": "vitest run test/live",
"test:agent": "bash scripts/agent-smoke.sh",
"test:package": "bash scripts/test-package.sh",
"test:e2e": "node scripts/e2e-live.mjs . $(date +%s | tail -c 6)",
"test:e2e:dispatch": "node scripts/e2e-live-dispatch.mjs . $(date +%s | tail -c 6)",
"test:e2e:verification": "node scripts/e2e-live-verification.mjs . $(date +%s | tail -c 6)",
"test:e2e:all": "npm run test:e2e && npm run test:e2e:dispatch && npm run test:e2e:verification"
},
"homepage": "https://github.com/hookdeck/hookdeck-openclaw#readme",
"bugs": {
"url": "https://github.com/hookdeck/hookdeck-openclaw/issues"
},
"files": [
"index.ts",
"src",
"openclaw.plugin.json",
"README.md",
"LICENSE"
]
}